/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Poppins", sans-serif;
    color: #302f61;
    background: #f1efe4;
    line-height: 1.6;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .sec-title{
    font-family: "Nunito", sans-serif;
    font-size: 2rem;
  }
  .sec-subtitle{
    width: 70%;
    margin: auto;
  }
  
  /* --- HEADER --- */
  .header-content {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo > img {
    width: 200px;
  }
 
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  .nav-menu > a > li {
    padding: 0.5em;
    border-bottom: #f1efe4 0.2em solid;
  }
  .nav-menu > a > li:hover{
    border-bottom: #3cd6be 0.2em solid;
    transition: all 0.1s;
  }
  .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  /* --- BTNS --- */
  .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-right: 1em;
  }
  .btn-primary {
    background: #840cf1;
    border: #840cf1 2px solid;
    color: #f1efe4;
  }
  .btn-primary:hover { 
    border: #302f61 2px solid;
    background: #302f61; 
  }
  .btn-secondary {
    border: 2px solid #840cf1;
    color: #840cf1;
  }
  .btn-secondary:hover { 
    background: #302f61; 
    border: #302f61 2px solid;
    color: #f1efe4;
  }
  
  .btn-contato-header{
    width: 15%;
    text-align: center;
  }

  /* --- HERO --- */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
    gap: 2rem;
  }
  .hero-text h1 {
    font-size: 3rem;
    line-height: 60px;
  }
  .hero-text span { 
    color: #840cf1; 
}
  .hero-text > p {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
  
  /* --- BENEFÍCIOS --- */
  .benefits { text-align: center; padding: 4rem 0; }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
  .benefit-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #f1efe4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .benefit-card:hover { transform: translateY(-5px); }

  .benefit-card > h3 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .benefit-card > p{
    text-align: start;
    font-size: 0.9rem;
  }

  .card1{
    background-color: #bc9aff83;
  }
  .card2{
    background-color: #3cd6bf81;
  }
  .card3{
    background-color: #dbc62481;
  }
  
  /* --- SOBRE --- */
  .about {
    background: #302f61;
    color: #f1efe4;
    padding: 4rem 0;
  }
  .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .about-text span { 
    color: #3cd6be; 
  }
  .t-qs{
    font-size: 2.5rem;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .about-image > img{
    width: 450px;
   }


  /* --- COMO FUNCIONA --- */
  .how { text-align: center; padding: 4rem 0; }
  .steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 5rem;
  }
  .step {
    background: #f1efe4;
    padding: 0.5rem;
    border-radius: 8px;
    width: 25%;
  }
  .step > img {
    height: 125px;
    margin-bottom: 20px;
  }
  .step > h3 {
    font-size: 1.2rem;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .step > p {
    font-size: 0.8rem;
  }
  
  /* --- FAQ --- */
.faq {
  padding: 4rem 0;
}
.faq h2 {
  margin-bottom: 2rem;
}
.faq-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

/* Coluna Esquerda */
.faq-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 40%;
}
.faq-image {
  width: 100%;
  height: 100px;
  background: #f1efe4;
  border-radius: 8px;
}
.faq-box {
  background: #302f61;
  color: #f1efe4;
  padding: 2rem;
  border-radius: 12px;
}
.faq-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.faq-box p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.faq-box .btn-primary {
  background: #bb9aff;
  border: #bb9aff 2px solid;
  color: #302f61;
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.faq-box .btn-primary:hover {
  background: #f1efe4;
  border: #f1efe4 2px solid;
}

/* Coluna Direita */
.faq-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: #bc9aff83;
  border-radius: 0.5em;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 1.5rem;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  color: #302f61;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-icon {
  background-color: #f1efe4;
  border-radius: 0.5em;
  padding: 0.5em;
  width: 50px;
  transition: transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 25px;
}
.faq-icon > img {
  width: 70%;
}

.faq-answer {
  display: none;
  padding: 0rem 1.5rem 1.5rem 1.5rem;
  font-size: 0.8rem;
  color: #302f61;
}

/* Mostrar resposta */
.faq-item.active .faq-answer {
  display: block;
  transition: all 0.2s;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-mobile{
  display: none;
}

  /* --- CTA --- */
  .cta {
    text-align: center;
    background: #840cf1;
    color: #f1efe4;
    padding: 5rem 0;
  }
  .cta > h2 {
    font-family: "Nunito", sans-serif;
    font-size: 2.2rem;
    width: 60%;
    margin: auto;
  }
  .cta > img {
    margin: 2em;
  }
  .cta .btn-primary { 
    background: #f1efe4; 
    border: #f1efe4 2px solid ;
    color: #840cf1; 
  }
  .cta .btn-primary:hover{
    background-color: #3cd6be;
    border: #3cd6be 2px solid;
    color: #302f61;
  }
  .cta .btn-secondary { 
    border-color: #f1efe4; 
    color: #f1efe4; 
  }
  .cta .btn-secondary:hover{
    background-color: #f1efe4;
    color: #302f61;
  }
  
  /* --- FOOTER --- */
  .footer {
    background: #302f61;
    color: #f1efe4;
    padding: 2rem 0;
  }
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .footer-cols { 
    display: flex; 
    margin-top: 10px;
    gap: 2rem; 
  }
  .col > p {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .col {
    font-size: 0.9em;
    width: fit-content;
  }
  .col-contato{
    margin-left: 25px;
  }
  .footer-cols ul { 
    list-style: none; 
  }
  .footer-cols ul li {
    margin-bottom: 10px ;
  }
  .footer-cols a { 
    color: #f1efe4; 
    text-decoration: none; 
  }
  .footer-cols a:hover{
    color: #3cd6be;
  }

  .footer-span > a{
    display: flex;
    align-items: center;
    font-size: 1rem;
  }
  .footer-span > a > img {
    width: 75px;
  }
  .mobile-only{
    display: none;
  }

  @media (max-width: 768px) {
    img { 
      width: 50%;
    }
    
    /* HEADER */
    .mobile-only{
      display: flex;
    }
    .desktop-only{
      display: none;
    }
    .nav-menu { 
      display: none; 
      flex-direction: column;
      background: #302f61;
      color: #f1efe4;
      width: 100vw;
      padding: 1rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .nav-menu.active { 
      display: flex; 
    }
    .menu-toggle {
      display: block;
      cursor: pointer;
      font-size: 1.8rem;
    }
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: #1e1b4b;
      display: flex;
      flex-direction: column;
      padding: 2rem;
      transition: right 0.3s ease-in-out;
      z-index: 100;
    }
    
    .mobile-menu.active {
      right: 0;
    }
    
    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .logo-mobile {
      width: 200px;
    }
    
    .close-btn {
      font-size: 3rem;
      cursor: pointer;
      color: #fff;
    }
    
    /* LISTA DO MENU */
    .lista-menu {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .item-lista-menu {
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      padding-top: 1rem;
    }
    
    .item-lista-menu a {
      text-decoration: none;
      font-size: 1.2rem;
      color: #fff;
      font-weight: 600;
      display: block;
      text-align: center;
    }
    
    /* Botão de contato */
    .btn-contato-mobile {
      display: block;
      text-align: center;
      background: #2dd4bf;
      color: #0f172a !important;
      padding: 0.8rem;
      border-radius: 8px;
      margin-top: 1.5rem;
    }
  
    /* HERO */
    .hero {
      flex-direction: column;
      text-align: center;
      padding: 2rem 0;
    }
    .hero-text h1 { 
      font-size: 2rem; 
      line-height: 50px;
    }
    .hero-buttons { 
      display: flex; 
      flex-direction: column; 
      gap: 1rem; 
    }
    .btn-primary, .btn-secondary{
      margin-right: 0em;
    }
  
    /* BENEFÍCIOS */
    .sec-title{
      font-size: 2rem;
      line-height: 50px;
      margin-bottom: 20px;
    }
    .sec-subtitle{
      width: 90%;
    }
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    .benefit-card { 
      text-align: left; 
    }
    .benefit-card > img{
      width: 20%;
    }
  
    /* SOBRE */
    .about-content {
      flex-direction: column;
      text-align: start;
      gap: 0rem;
    }
    .about-image > img {
      width: 100%;
    }
    .about-content > span {
      color: #3cd6be; 
    }
  
    /* COMO FUNCIONA */
    .steps {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    .step{
      width: 90%;
    }
  
    /* FAQ */
    .faq-content {
      flex-direction: column;
    }
    .faq h2 {
      margin-bottom: 2rem;
      font-size: 2rem;
      text-align: center;
    }
    .faq-left{
      width: 100%;
      align-items: center;
    }
    .faq-left > img {
      width: 80%;
    }
    .faq-mobile{
      display: block;
    }

    /* CTA */
    .cta > h2{
      width: 90%;
      font-size: 1.8rem;
    }
    .cta > img{
      width: 80%;
    }
    .cta-buttons{
      gap: 2rem;
    }
    .btn-cta {
      width: 80vw;
      margin: 0.5rem 0rem;
    }


    /* FOOTER */
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
    .footer-cols {
      flex-direction: column;
      gap: 1.5rem;
    }
    .col{
      display: flex;
      flex-direction: column;
      align-items: start;
      text-align: left;
    }
    .col-contato{
      margin: 0px;
    }
  }
  