@font-face {
    font-family: 'Nexa';
    src: url('./fonts/Nexa-Bold.woff2') format('truetype');
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Nexa';
    src: url('./fonts/Nexa-Light.woff2') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  
  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Definindo a font-size base */
  html {
    font-size: 16px; /* 1rem = 16px */
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #333;
  }
  
  /* Navbar Fixa */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 71, 161, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 1000;
  }
  
  .logo {
    font-family: 'Nexa';
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
  }
  
  .logo span {
    font-family: 'Nexa';
    font-weight: 300;
    color: #F57C00;
  }
  
  /* Menu de navegação - para telas grandes */
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 1.25rem;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #F57C00;
  }
  
  /* Ícone de abrir o menu (hambúrguer) */
  .menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
  }
  
  .close-menu {
    display: none;
  }
  
  /* Botão de login */
  .btn.login {
    background-color: #F57C00;
    padding: 0.3125rem 1.5625rem;
    border-radius: 0.3125rem;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1rem;
  }
  
  .btn.login:hover {
    background-color: #D84315;
    transform: scale(1.05);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .how-it-works-steps {
      flex-direction: column;
      align-items: center;
    }
  
    .step {
      width: 100%;
      max-width: 20rem;
    }
    .btn.login {
      padding: 0.875rem 1.875rem;
      font-size: 1.125rem;
      width: 80%;
      text-align: center;
    }
  
    .menu-icon {
      display: block;
    }
  
    .nav-links {
      position: fixed;
      left: -100%;
      top: 0;
      height: 100vh;
      width: 100%;
      background: rgba(13, 71, 161, 0.95);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 999;
      transition: left 0.3s ease-in-out;
    }
  
    .nav-links.active {
      left: 0;
    }
  
    .nav-links li {
      margin: 2.5rem 0;
    }
  
    .close-menu {
      display: block;
      position: absolute;
      top: -1.875rem;
      right: 1.875rem;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
    }

    #mate h2 {
      margin-top: 3rem; /* Adiciona um espaço acima do título Mate */
    }
   
  }
  
  /* Cabeçalho */
  header {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    width: 100%;
  }
  
  .parallax-header {
    background-image: url('./images/beach.webp');
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .parallax-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
  }
  
  .hero-section {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 1.25rem;
  }
  
  .hero-section h1 {
    font-size: 3.75rem;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .hero-section .btn.cta {
    background-color: #F57C00;
    padding: 0.9375rem 1.875rem;
    border-radius: 0.3125rem;
    color: #fff;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .hero-section .btn.cta:hover {
    background-color: #D84315;
  }

  /* Seção How It Works */
  #how-it-works {
    padding: 5rem 1.25rem;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  #how-it-works h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  #how-it-works p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .how-it-works-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .step {
    background-color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 0.625rem;
    width: 20rem;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
  }
  
  .step-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F57C00;
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .step h3 {
    font-size: 1.5rem;
    color: #0D47A1;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }
  
  .step:hover {
    transform: translateY(-0.5rem);
    transition: transform 0.3s ease;
  }
  
  /* Seção de Recursos */
  #features {
    padding: 5rem 1.25rem;
    text-align: center;
  }
  
  #features h2 {
    font-size: 2.25rem;
    margin-bottom: 3.75rem;
  }
  
  .feature-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: #fff;
    padding: 2.5rem 1.25rem;
    border-radius: 0.625rem;
    width: 18.75rem;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
  }
  
  .card i {
    font-size: 3.125rem;
    color: #F57C00;
    margin-bottom: 1.25rem;
  }
  
  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9375rem;
  }
  
  .card p {
    font-size: 1rem;
    color: #666;
  }
  
  /* Seção de Depoimentos */
  #testimonials {
    position: relative;
    overflow: hidden;
  }
  
  .parallax-testimonials {
    background-image: url('./images/outdoors.webp');
    background-size: cover;
    background-position: center;
    padding: 5rem 1.25rem;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .parallax-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  
  #testimonials h2 {
    position: relative;
    font-size: 2.25rem;
    margin-bottom: 3.75rem;
    color: #fff;
    padding-top: 2.5rem;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .testimonials-container {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-bottom: 2.5rem;
    z-index: 1;
  }
  
  .testimonial {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.875rem 1.25rem;
    border-radius: 0.625rem;
    width: 18.75rem;
    position: relative;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
  }
  
  .testimonial p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.25rem;
  }
  
  .testimonial h4 {
    font-size: 1.125rem;
    color: #F57C00;
  }
  
  /* Seção Mate */
  #mate {
    padding: 3rem 3.25rem;
    background-color: #fff;
  }
  
  #mate h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3.75rem;
  }
  
  .mate-content {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-bottom: 2.5rem;
    z-index: 1;
  }
  
  .mate-text {
    flex: 1;
    min-width: 17.5rem;
  }
  
  .mate-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #0D47A1;
  }
  
  .mate-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: #555;
  }
  
  .mate-text ul {
    list-style: none;
    margin-bottom: 1.25rem;
  }
  
  .mate-text ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.625rem;
  }
  
  .mate-text ul li i {
    color: #F57C00;
    margin-right: 0.625rem;
  }
  
  .mate-text .btn {
    background-color: #0D47A1;
    padding: 0.75rem 1.5rem;
    border-radius: 0.3125rem;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .mate-text .btn:hover {
    background-color: #063970;
  }
  
  .mate-image {
    flex: 1;
    min-width: 17.5rem;
  }
  
  .mate-image img {
    width: 100%;
    border-radius: 0.625rem;
  }
  
  /* Seção CTA */
  .cta-section {
    position: relative;
    overflow: hidden;
  }
  
  .parallax-cta {
    background-image: url('./images/city.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 6.25rem 1.25rem;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .parallax-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  
  .cta-section h2 {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .cta-section .btn.cta {
    position: relative;
    z-index: 1;
    background-color: #1565C0;
    padding: 0.9375rem 1.875rem;
    border-radius: 0.3125rem;
    color: #fff;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .cta-section .btn.cta:hover {
    background-color: #0D47A1;
  }
  
  /* Rodapé */
  footer {
    background-color: #0D47A1;
    color: #fff;
    padding: 2.5rem 1.25rem;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-media a {
    color: #fff;
    margin: 0 0.625rem;
    font-size: 1.5rem;
  }
  
  .social-media {
    margin-bottom: 1.25rem;
  }
  
  footer p {
    font-size: 0.875rem;
  }
  
  .nav-links,
  .menu-icon,
  .close-menu,
  .nav-links a {
    transition: all 0.3s ease-in-out;
  }
  