/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #F5F6F8;
  color: #1F2A37;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 42, 55, 0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1F2A37;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  color: #344150;
  font-size: 0.96rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.menu a:hover {
  color: #C2A46D;
}

.btn-menu {
  background: #1F2A37;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #1F2A37;
  display: block;
  border-radius: 2px;
}

/* HERO */
.hero {
  position: relative;
  padding: 118px 0 68px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(31, 42, 55, 0.10) 0%, rgba(245, 246, 248, 0) 70%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-texto {
  width: 100%;
}

.mini-tag {
  display: inline-block;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(194, 164, 109, 0.12);
  color: #C2A46D;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 22px;
}

.hero-texto h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #1F2A37;
  max-width: 680px;
  margin-bottom: 24px;
}

.hero-descricao {
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #5B6574;
  margin-bottom: 30px;
}

.hero-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-frase {
  position: relative;
  max-width: 460px;
  padding-left: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #253140;
}

.hero-frase::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #C2A46D 0%, #E5D2AB 100%);
}

.hero-imagem {
  width: 100%;
}

.imagem-wrapper {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(31, 42, 55, 0.14);
}

.imagem-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 42, 55, 0.06), transparent);
  z-index: 1;
}

.hero-imagem img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #1F2A37;
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 42, 55, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31, 42, 55, 0.22);
}

.btn-outline {
  background: transparent;
  color: #C2A46D;
  border: 1px solid rgba(194, 164, 109, 0.65);
}

.btn-outline:hover {
  background: #C2A46D;
  color: #fff;
}

.btn-light {
  background: #FFFFFF;
  color: #1F2A37;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
}

.btn-light:hover {
  transform: translateY(-3px);
  background: #F5F6F8;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.24);
}
/* SEÇÕES */
section {
  padding: 60px 0;
}

.section-topo {
  margin-bottom: 60px;
}

.centralizado {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-topo h2,
.sobre-texto h2,
.cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1.05;
  color: #1F2A37;
  margin-bottom: 18px;
}
.section-topo h2 {
  font-size: 3.2rem;
  max-width: 820px;
  margin: 0 auto 18px;
}
.section-topo p,
.sobre-texto p,
.cta-box p {
  color: #5B6574;
  font-size: 1rem;
}

/* SOBRE PREMIUM */
.sobre {
  padding: 60px 0;
  background: #FFFFFF;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.sobre-imagem-box {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(31, 42, 55, 0.12);
}

.sobre-imagem-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 42, 55, 0.08), transparent 45%);
  z-index: 1;
}

.sobre-imagem img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.sobre-texto {
  max-width: 620px;
}

.sobre-texto .section-tag {
  margin-bottom: 18px;
}

.sobre-texto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: -0.4px;
  color: #1F2A37;
  margin-bottom: 22px;
}

.sobre-texto p {
  font-size: 1rem;
  line-height: 1.85;
  color: #5B6574;
  margin-bottom: 16px;
}

.sobre-destaque {
  margin-top: 10px;
  font-size: 1rem;
  color: #1F2A37;
  font-weight: 500;
}


/* DIFERENCIAIS */
.diferenciais {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
  padding: 140px 0 100px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding-top: 60px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card-diferencial {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 42, 55, 0.07);
  backdrop-filter: blur(8px);
  padding: 32px 24px;
  border-radius: 24px;
  transition: 0.35s ease;
}

.card-diferencial:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(31, 42, 55, 0.08);
}

.icone {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(194, 164, 109, 0.14);
  color: #C2A46D;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.card-diferencial h3 {
  color: #1F2A37;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card-diferencial p {
  color: #5B6574;
  font-size: 0.95rem;
}

/* SOLUÇÕES */

.solucoes {
  margin-top: -40px;
  padding-top: 60px;
}
.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  
}

.card-solucao {
  background: #fff;
  border-radius: 28px;
  padding: 34px 30px;
  border: 1px solid rgba(31, 42, 55, 0.07);
  transition: 0.35s ease;
  box-shadow: 0 12px 28px rgba(31, 42, 55, 0.05);
}

.card-solucao:hover {
  transform: translateY(-6px);
}

.solucao-numero {
  display: inline-block;
  margin-bottom: 16px;
  color: #C2A46D;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.card-solucao h3 {
  font-size: 1.2rem;
  color: #1F2A37;
  margin-bottom: 12px;
}

.card-solucao p {
  color: #5B6574;
}

/* CONTEÚDOS */
.conteudos {
  background: #F8FAFC;
}

.conteudos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-conteudo {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(31, 42, 55, 0.06);
  transition: all 0.35s ease;
}

.card-conteudo:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(31, 42, 55, 0.12);
}

.conteudo-imagem img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.95);
}

.conteudo-texto {
  padding: 24px;
}

.conteudo-texto h3 {
  color: #1F2A37;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.conteudo-texto p {
  color: #5B6574;
  font-size: 0.95rem;
}

/* CTA */
/* CTA */
.cta {
  padding: 40px 0; /* antes era 50 → diminuí pra não criar buraco */
  background: #F8FAFC;
}

.cta-box {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 28px; /* antes 64px → mais compacto e elegante */
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, #f3f6f9);
  border: 1px solid rgba(31, 42, 55, 0.08);
  box-shadow: 0 18px 45px rgba(31, 42, 55, 0.08); /* suavizado */
}

.cta-box .section-tag.claro {
  background: rgba(194, 164, 109, 0.14);
  color: #C2A46D;
}

.cta-box h2 {
  max-width: 680px;
  margin: 0 auto 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; /* levemente menor */
  line-height: 1.08;
  color: #1F2A37;
}

.cta-box p {
  max-width: 560px;
  margin: 0 auto 22px;
  color: #5B6574;
  font-size: 0.98rem;
}

/* botão */
.btn-light {
  background: #1F2A37;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-light:hover {
  transform: translateY(-3px);
  background: #2C3A4A;
  box-shadow: 0 14px 28px rgba(31, 42, 55, 0.18);
}

/* FOOTER */
.footer {
  background: #111827;
  padding: 28px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  font-size: 0.9rem;
  color: #E5E7EB;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.footer-social a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #C2A46D;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #C2A46D;
}

.footer-social a:hover::after {
  width: 100%;
}
.footer-content p,
.footer-content a {
  color: #E5E7EB;
  font-size: 0.94rem;
}

/* BOTÃO FIXO */
.whatsapp-fixo {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  max-width: calc(100vw - 24px);
  min-height: 48px;
  background: #1F2A37;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(31, 42, 55, 0.18);
  transition: all 0.3s ease;
}

.whatsapp-fixo:hover {
  transform: translateY(-3px);
  background: #2C3A4A;
}

.whats-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
}


/* EDUCAÇÃO */


.educacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.educacao-texto p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #4B5563;
}

.educacao-destaque-box {
  background: linear-gradient(135deg, #1F2A37, #2C3A4A);
  color: #fff;

  padding: 40px;
  border-radius: 28px;

  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;

  box-shadow: 0 20px 50px rgba(31, 42, 55, 0.25);

  display: flex;
  align-items: center;
}

.educacao-frase-final {
  margin-top: 50px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1F2A37;
}
.educacao-cta {
  margin-top: 28px;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.educacao-cta .btn-primary {
  padding: 26px 32px;
  font-size: 1rem;

  box-shadow: 0 14px 30px rgba(31, 42, 55, 0.25);
}

.educacao-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(31, 42, 55, 0.25);
}

/* INVESTIMENTO */
.investimento {
  padding: 100px 0;
  background: #FFFFFF;;
}

.investimento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.investimento-texto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
   line-height: 1.05;
  color: #1F2A37;
  margin-bottom: 20px;
}

.investimento-texto p {
  color: #5B6574;
  margin-bottom: 16px;
  line-height: 1.8;
}

.investimento-imagem img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(31, 42, 55, 0.12);
}

/* ===================== */
/* RESPONSIVO */
/* ===================== */

@media (max-width: 1100px) {
  .hero-grid,
  .sobre-grid,
  .investimento-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .diferenciais-grid,
  .solucoes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conteudos-grid {
    grid-template-columns: 1fr;
  }

  .hero-imagem img,
  .sobre-imagem img,
  .investimento-imagem img {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    min-height: 74px;
  }

  .logo {
    font-size: 1.7rem;
  }

  .menu-toggle {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(31, 42, 55, 0.08);
  }

  .menu.active {
    display: flex;
  }

  .hero {
    padding: 104px 0 52px;
    overflow: hidden;
  }

  .hero-grid,
  .sobre-grid,
  .investimento-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-texto,
  .sobre-texto,
  .section-topo,
  .centralizado {
    text-align: center;
  }

  .mini-tag,
  .sobre-texto .section-tag {
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
  }

  .hero-texto h1 {
    max-width: 340px;
    margin: 0 auto 22px;
    font-size: clamp(1.75rem, 8vw, 2.15rem);
    line-height: 1.08;
  }

  .hero-descricao {
    max-width: 340px;
    margin: 0 auto 24px;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-botoes {
    max-width: 340px;
    margin: 0 auto 22px;
    flex-direction: column;
  }

  .btn,
  .btn-primary,
  .btn-outline,
  .btn-light {
    width: 100%;
  }

  .hero-frase {
    padding-left: 0;
    padding-top: 18px;
    max-width: 340px;
    margin: 0 auto 24px;
    font-size: 1rem;
    text-align: center;
  }

  .hero-frase::before {
    left: 50%;
    top: 0;
    bottom: auto;
    width: 72px;
    height: 3px;
    transform: translateX(-50%);
  }

  .hero-frase.mobile-overlay {
    padding: 14px 18px;
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.95),
      rgba(255,255,255,0.75)
    );
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(31, 42, 55, 0.12);
  }

  .diferenciais-grid,
  .solucoes-grid,
  .conteudos-grid {
    grid-template-columns: 1fr;
  }

  .hero-imagem img,
  .sobre-imagem img {
    height: 360px;
  }
   .investimento{
  padding: 20px 0;
   }
  .investimento-imagem img {
    height: 320px;
  }

  .section-topo h2,
  .sobre-texto h2,
  .cta-box h2 {
    font-size: 2.25rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section,
  .sobre {
    padding: 60px 0;
  }

  .hero {
    padding: 98px 0 52px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .mini-tag {
    max-width: 280px;
    font-size: 0.78rem;
    padding: 9px 14px;
  }

  .hero-texto h1 {
    max-width: 310px;
    font-size: 1.75rem;
  }

  .hero-descricao,
  .hero-frase {
    max-width: 310px;
  }

  .hero-imagem img,
  .sobre-imagem img,
  .investimento-imagem img {
    height: 280px;
  }

  .section-topo h2,
  .sobre-texto h2,
  .cta-box h2 {
    font-size: 1.9rem;
  }

  .whatsapp-fixo {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
    font-size: 0.85rem;
    min-height: 44px;
  }
}
/* educacao*/


@media (max-width: 768px) {
  .educacao {
    padding: 80px 0;
  }

  .educacao-box {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .educacao-box p {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {

  .educacao-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}
@media (max-width: 768px) {

  .educacao-texto {
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

}
@media (max-width: 768px) {

  .educacao-frase-final {
    font-size: 1.2rem;
    padding: 0 10px;
  }

}
@media (max-width: 768px) {

  .educacao-cta .btn-primary {
    width: 100%;
    max-width: 320px;
  }

}