 :root {
      --cor-primaria: #266873;
      --cor-secundaria: #ffd33d;
      --cor-fundo: #fef9e4;
      --cor-texto: #0f2032;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--cor-fundo);
      color: var(--cor-texto);
      line-height: 1.6;
    }

    /* Header */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background: var(--cor-primaria);
      color: white;
      position: sticky;
      top: 0;
      z-index: 999;
    }
    header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
    }
    header nav a {
      margin-left: 25px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }
    header nav a:hover {
      color: var(--cor-secundaria);
    }

    /* Hero */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 60px;
      background: linear-gradient(to right, var(--cor-fundo), #ffffff);
      flex-wrap: wrap;
    }
    .hero-text {
      flex: 1;
      min-width: 280px;
      max-width: 600px;
    }
    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 56px;
      color: var(--cor-texto);
      animation: fadeDown 1s ease-in-out;
    }
    .hero-text p {
      margin: 20px 0;
      font-size: 20px;
      opacity: 0.9;
    }
    .cta-btn {
      background: var(--cor-secundaria);
      color: var(--cor-texto);
      padding: 15px 25px;

      border: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 18px;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .cta-btn:hover {
      background: var(--cor-primaria);
      color: #fff;
      transform: scale(1.05);
    }
    .hero img {
      max-width: 400px;
      border-radius: 50%;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      animation: fadeUp 1.2s ease-in-out;
    }

    /* Seções padrão */
    section {
      padding: 80px 60px;
      text-align: center;
    }
    section h2 {
      font-size: 40px;
      margin-bottom: 30px;
      color: var(--cor-texto);
      font-family: 'Playfair Display', serif;
      position: relative;
      display: inline-block;
    }
    section h2::after {
      content: '';
      width: 60px;
      height: 4px;
      background: var(--cor-secundaria);
      display: block;
      margin: 10px auto 0 auto;
      border-radius: 2px;
    }

    /* Dor */
    .dor{
      background: #f9f9f9;
    }
    .dor p {
      font-size: 20px;
      max-width: 800px;
      margin: auto;
      margin-bottom: 20px;
      opacity: 0.85;
    }
    .cta-btnS {
      background: var(--cor-primaria);
      color: var(--cor-fundo);
      padding: 15px 25px;
      border: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 18px;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .cta-btnS:hover {
      background: var(--cor-secundaria);
      
      color: #fff;
      transform: scale(1.05);
    }

/*comundade*/

.comunidade{
  background: #f9f9f9;
}
    
    .comunidade p{
      max-width: 700px;
      margin: auto;
      font-size: 18px;
    }

    /* Sobre */
    
    #sobre1{
      background: #f9f9f9;
    }
    .sobre p {
      max-width: 700px;
      margin: auto;
      font-size: 20px;
    }
    .sobre h2{
      font-size: 30px;
    }

    /*mentoria*/
    .mentoria-intro {
  background: #f9f9f9;
  padding: 10px 20px;
  text-align: center;
}

.mentoria-intro h2 {
  color: var(--cor-texto);
  margin-bottom: 20px;
}

.mentoria-intro p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #333;
}

.mentoria-resumo {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  font-size: 17px;
}

.mentoria-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.18);
  padding: 15px;
  width: 300px;
  text-align: center;
  transition: 0.3s;
}

.mentoria-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 24px rgba(0,0,0,0.3);
}

.mentoria-card h3 {
  color: var(--cor-primaria);
  margin-bottom: 15px;
}

.mentoria-card p {
  color: #444;
  line-height: 1.5;
  margin: 0px;
}

.quem-sou-eu-mini {
  margin-top: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quem-sou-eu-mini h3 {
  color: var(--cor-texto);
  margin-bottom: 15px;
}
.mentoria-card {
  cursor: pointer;
}

/* Estilo base dos popups (igual aos já usados no site) */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-conteudo {
  background: #fff;
  border-radius: 20px;
  max-width: 600px;
  padding: 40px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  animation: aparecer 0.3s ease;
}

.popup-conteudo h2 {
  color: var(--cor-primaria);
  margin-bottom: 15px;
}

.popup-conteudo p {
  line-height: 1.6;
  font-size: 20px;
}

.fechar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 35px;
  cursor: pointer;
  color: #333;
}

@keyframes aparecer {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsivo */
@media (max-width: 768px) {
  .mentoria-resumo {
    flex-direction: column;
    align-items: center;
  }

  .divisor-vertical {
    width: 80%;
    height: 2px;
    margin: 20px 0;
  }
}
    

    /* Serviços */
  #servicos{
    background: null;
  }
    .servicos {
      display: flex;
      padding: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .card {
      display: block;
      border-radius: 15px;
      box-shadow: 0px 6px 18px rgba(0,0,0,0.20);
      padding: 30px;
      margin: 15px;
      width: 300px;
      text-align: left;
      transition: 0.3s;
      text-decoration: none;
      color: inherit;
      
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0px 10px 24px rgba(0,0,0,0.2);
    }
    .card h3 {
      margin-top: 0;
      color: var(--cor-primaria);
    }

    /* Benefícios */
    .beneficios{
      background: #f9f9f9;
    }
    .beneficios ul {
      list-style: none;
      padding: 0;
      max-width: 600px;
      margin: auto;
      text-align: left;
    }
    .beneficios li {
      margin: 12px 0;
      font-size: 20px;
      position: relative;
      padding-left: 30px;
    }
    .beneficios li::before {
      content: "✔";
      color: var(--cor-secundaria);
      font-weight: bold;
      position: absolute;
      left: 0;
    }

    /* CTA final */
    .cta-final {
      background: linear-gradient(to right, var(--cor-secundaria), #ffe788);
      padding: 80px 20px;
      text-align: center;
    }
    .cta-final h2 {
      color: var(--cor-texto);
      margin-bottom: 10px;
      margin-right: 10px;
    }

    /* Footer */
    footer {
      background: var(--cor-texto);
      color: #fff;
      padding: 20px;
      text-align: center;
    }
    footer a {
      color: var(--cor-secundaria);
      margin: 0 10px;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }

    /* Responsividade geral */
    @media (max-width: 900px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
      .hero-text {
        max-width: 100%;
      }
      .hero img {
        margin-top: 30px;
      }
      .servicos {
        flex-direction: column;
        align-items: center;
      }
    }

    /* Animações */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }