/* Reset e Base */
:root {
    --primary: #1E40AF;
    --primary-dark: #1E3A8A;
    --primary-light: #3B82F6;
    --secondary: #10B981;
    --dark: #1F2937;
    --dark-light: #374151;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --danger: #EF4444;
    --warning: #F59E0B;
    --success: #10B981;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 62.5%;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  h1 { font-size: 4.8rem; }
  h2 { font-size: 3.6rem; }
  h3 { font-size: 2.8rem; }
  h4 { font-size: 2.4rem; }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  ul, ol {
    list-style: none;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
  }
  
  .btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .btn-lg {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
  }
  
  .btn-block {
    width: 100%;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 5rem;
  }
  
  .section-label {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
  }
  
  .header.scrolled {
    padding: 1rem 0;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    height: 4rem;
  }
  
  .nav ul {
    display: flex;
    gap: 3rem;
  }
  
  .nav a {
    font-weight: 600;
    font-size: 1.6rem;
    transition: color 0.3s ease;
  }
  
  .nav a:hover {
    color: var(--primary);
  }
  
  .menu-mobile {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
  }
  
  .menu-mobile span {
    display: block;
    width: 2.5rem;
    height: 0.3rem;
    background-color: var(--dark);
    margin: 0.5rem 0;
    transition: all 0.3s ease;
  }
  
  /* Hero Section */
  .hero {
    padding: 15rem 0 8rem;
    background: linear-gradient(135deg, #F0F7FF 0%, #E1EFFE 100%);
    position: relative;
    overflow: hidden;
  }
  
  .hero .container {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .hero-content {
    flex: 1;
    max-width: 60rem;
  }
  
  .hero h1 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
  }
  
  .hero h1 span {
    color: var(--primary);
  }
  
  .hero .subtitle {
    font-size: 2rem;
    color: var(--dark-light);
    margin-bottom: 3rem;
  }
  
  .hero-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .trust-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .badge {
    background-color: var(--white);
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .badge img {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
  }
  
  .hero-image {
    flex: 1;
    position: relative;
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-1.5rem); }
    100% { transform: translateY(0); }
  }
  
  /* Video Section */
  .video-section {
    padding: 8rem 0;
  }
  
  .video-wrapper {
    margin-top: 5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Problems Section */
  .problems-section {
    padding: 8rem 0;
    background-color: var(--light);
  }
  
  .problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 5rem;
  }
  
  .problem-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .problem-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .problem-icon {
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .problem-icon svg {
    width: 3rem;
    height: 3rem;
    color: var(--white);
  }
  
  .problem-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  /* Results Section */
  .results-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
  }
  
  .results-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 3rem;
    margin: 5rem 0;
  }
  
  .result-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .result-value {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
  }
  
  .result-label {
    font-size: 1.6rem;
    opacity: 0.8;
  }
  
  .results-graph {
    margin-top: 5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Methodology Section */
  .methodology-section {
    padding: 8rem 0;
  }
  
  .timeline {
    position: relative;
    max-width: 80rem;
    margin: 5rem auto 0;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    width: 0.6rem;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -0.3rem;
    border-radius: 1rem;
  }
  
  .timeline-item {
    padding: 1rem 4rem;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 3rem;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 50%;
  }
  
  .timeline-number {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    top: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-number {
    right: -2.5rem;
  }
  
  .timeline-item:nth-child(even) .timeline-number {
    left: -2.5rem;
  }
  
  .timeline-content {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 0.8rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  .timeline-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
  }
  
  /* Calculator Section */
  .calculator-section {
    padding: 8rem 0;
    background-color: var(--light);
  }
  
  .calculator-wrapper {
    display: flex;
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .calculator-content {
    flex: 1;
    padding: 5rem;
  }
  
  .calculator-form {
    margin-top: 3rem;
  }
  
  .form-group {
    margin-bottom: 2rem;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-light);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--gray-light);
    border-radius: 0.5rem;
    font-size: 1.6rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  .calculator-result {
    flex: 1;
    background-color: var(--primary);
    color: var(--white);
    padding: 5rem;
    display: flex;
    align-items: center;
  }
  
  .result-box {
    width: 100%;
  }
  
  .result-box h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  
  .result-value {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .result-label {
    font-size: 1.6rem;
    opacity: 0.8;
    margin-bottom: 3rem;
  }
  
  .result-graph {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    height: 15rem;
    margin: 3rem 0;
  }
  
  .graph-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .graph-label {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  
  .graph-fill {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem 0.5rem 0 0;
    transition: height 1s ease;
  }
  
  .current .graph-fill {
    background-color: var(--white);
  }
  
  .projection .graph-fill {
    background-color: var(--secondary);
  }
  
  .result-note {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-top: 2rem;
  }
  
  /* Cases Section */
  .cases-section {
    padding: 8rem 0;
  }
  
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 5rem;
  }
  
  .case-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .case-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .case-image {
    height: 25rem;
    overflow: hidden;
  }
  
  .case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .case-card:hover .case-image img {
    transform: scale(1.05);
  }
  
  .case-content {
    padding: 3rem;
  }
  
  .case-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  .stat-label {
    font-size: 1.4rem;
    color: var(--gray);
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 8rem 0;
    background-color: var(--light);
  }
  
  .testimonials-slider {
    margin-top: 5rem;
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
  }
  
  .testimonial-card {
    min-width: 50rem;
    background-color: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    scroll-snap-align: start;
  }
  
  .testimonial-content {
    position: relative;
    margin-bottom: 3rem;
  }
  
  .quote-icon {
    position: absolute;
    font-size: 8rem;
    line-height: 1;
    color: var(--primary-light);
    opacity: 0.2;
    top: -2rem;
    left: -1rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .testimonial-author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .author-info p {
    font-size: 1.4rem;
    color: var(--gray);
  }
  
  /* Booking Section */
  .booking-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
  }
  
  .booking-wrapper {
    display: flex;
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .booking-content {
    flex: 1;
    padding: 5rem;
    background-color: var(--primary);
    color: var(--white);
  }
  
  .booking-content h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  
  .booking-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
  }
  
  .benefits-list {
    margin: 3rem 0;
  }
  
  .benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
  
  .benefits-list svg {
    width: 2rem;
    height: 2rem;
    color: var(--secondary);
  }
  
  .booking-form {
    flex: 1;
    padding: 5rem;
  }
  
  .contact-form .form-group {
    margin-bottom: 2rem;
  }
  
  .contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-light);
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--gray-light);
    border-radius: 0.5rem;
    font-size: 1.6rem;
    transition: border-color 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  .form-footer {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: var(--gray);
    text-align: center;
  }
  
  /* Platforms Section */
  .platforms-section {
    padding: 6rem 0;
  }
  
  .platforms-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 5rem;
  }
  
  .platform-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }
  
  .platform-card:hover {
    transform: translateY(-0.5rem);
  }
  
  .platform-card img {
    height: 3rem;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .platform-card:hover img {
    filter: grayscale(0);
    opacity: 1;
  }
  
  /* Footer */
  .footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 8rem 0 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 5rem;
    margin-bottom: 5rem;
  }
  
  .footer-col {
    margin-bottom: 3rem;
  }
  
  .footer-logo {
    margin-bottom: 2rem;
  }
  
  .footer p {
    opacity: 0.8;
    margin-bottom: 2rem;
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .social-links a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: var(--primary);
  }
  
  .social-links svg {
    width: 2rem;
    height: 2rem;
    color: var(--white);
  }
  
  .footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 5rem;
    height: 0.2rem;
    background-color: var(--primary);
  }
  
  .footer-col ul li {
    margin-bottom: 1.5rem;
  }
  
  .footer-col ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
  }
  
  .contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
  }
  
  .contact-info svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-light);
  }
  
  .business-hours li {
    margin-bottom: 1rem;
    opacity: 0.8;
  }
  
  .footer-cta {
    margin-top: 3rem;
  }
  
  .btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
  }
  
  .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-bottom p {
    margin-bottom: 0;
    font-size: 1.4rem;
    opacity: 0.6;
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
  }
  
  .footer-links a {
    font-size: 1.4rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
  
  .footer-links a:hover {
    opacity: 1;
  }
  
  /* Responsivo */
  @media (max-width: 992px) {
    html {
      font-size: 58%;
    }
    
    .hero .container {
      flex-direction: column;
      text-align: center;
    }
    
    .hero-content {
      max-width: 100%;
      margin-bottom: 5rem;
    }
    
    .hero-buttons {
      justify-content: center;
    }
    
    .trust-badges {
      justify-content: center;
    }
    
    .timeline::before {
      left: 3rem;
    }
    
    .timeline-item {
      width: 100%;
      padding-left: 7rem;
      padding-right: 2rem;
    }
    
    .timeline-item:nth-child(even) {
      left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-number,
    .timeline-item:nth-child(even) .timeline-number {
      left: -2.5rem;
    }
    
    .calculator-wrapper,
    .booking-wrapper {
      flex-direction: column;
    }
  }
  
  @media (max-width: 768px) {
    .nav {
      position: fixed;
      top: 8rem;
      left: 0;
      width: 100%;
      background-color: var(--white);
      padding: 2rem;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      transform: translateY(-150%);
      opacity: 0;
      transition: all 0.3s ease;
    }
    
    .nav.active {
      transform: translateY(0);
      opacity: 1;
    }
    
    .nav ul {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .menu-mobile {
      display: block;
    }
    
    .menu-mobile.active span:nth-child(1) {
      transform: rotate(45deg) translate(0.5rem, 0.5rem);
    }
    
    .menu-mobile.active span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-mobile.active span:nth-child(3) {
      transform: rotate(-45deg) translate(0.5rem, -0.5rem);
    }
    
    h1 {
      font-size: 3.6rem;
    }
    
    h2 {
      font-size: 3rem;
    }
    
    .hero {
      padding: 12rem 0 5rem;
    }
    
    .section-header {
      margin-bottom: 3rem;
    }
    
    .results-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
      min-width: 30rem;
    }
  }
  
  @media (max-width: 576px) {
    .container {
      padding: 0 1.5rem;
    }
    
    .hero h1 {
      font-size: 3rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .trust-badges {
      flex-wrap: wrap;
    }
    
    .results-grid {
      grid-template-columns: 1fr;
    }
    
    .calculator-content,
    .booking-content,
    .booking-form {
      padding: 3rem;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }
    
    .footer-links {
      justify-content: center;
    }
    }
  
  .cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    border-radius: 10px;
    z-index: 9999;
    max-width: 600px;
    margin: auto;
    display: none;
    }
    
    .cookie-consent.visible {
        display: block;
    }
    
    .cookie-settings {
        margin-top: 10px;
    }
    
    .hidden {
        display: none !important;
    }

