:root {
  --lp-marrom-escuro: #7e5a44;
  --lp-marrom-medio: #a37c53;
  --lp-bege-claro: #e6d2b7;
  --lp-fundo: #f5eee3;
  --lp-texto: #3e2f25;
  --lp-texto-suave: #7a6a5d;
  --lp-branco: #ffffff;
  --lp-verde-main: #5fa886;
  /* verde principal, suave */
  --lp-verde-main-2: #88cba5;
  /* verde mais claro para o gradiente */

}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--lp-fundo);
  color: var(--lp-texto);
  line-height: 1.6;
}

/* GLOW DE FUNDO */
.page-bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.65), transparent 50%),
    radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.4), transparent 60%),
    linear-gradient(135deg, var(--lp-bege-claro), var(--lp-fundo));
}

/* Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 80px 0;
}

.section-soft {
  padding: 72px 0;
}

/* Typography */
h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin-top: 0;
  color: var(--lp-marrom-escuro);
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  letter-spacing: 0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 12px;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 238, 227, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(126, 90, 68, 0.12);
}

/* Logo horizontal pronta para imagem */
.brand-logo-full {
  height: 44px;
  width: auto;
  display: block;
}


.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-placeholder,
.brand-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--lp-marrom-escuro);
  color: var(--lp-branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-texto-suave);
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Nav */
.nav {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: var(--lp-texto);
}

.nav a:hover {
  color: var(--lp-marrom-escuro);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--lp-texto);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--lp-verde-main), var(--lp-verde-main-2));
  color: var(--lp-branco);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  box-shadow: none;
  border: 2px solid var(--lp-verde-main);
  color: var(--lp-verde-main);
}

.btn-outline:hover {
  background: rgba(95, 168, 134, 0.12);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
  box-shadow: none;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}



/* HERO */
.hero {
  position: relative;
}

.hero-bg {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(126, 90, 68, 0.6)),
    url("../img/hero-bg-lp.png") center/cover no-repeat;
  /* troque pelo seu arquivo real */
  color: #ffffff;
}

.hero-bg h1 {
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1.1;
  text-shadow:
    0 16px 40px rgba(255, 255, 255, 0.5),
    0 0 24px rgba(238, 238, 238, 0.28);
}

.hero-bg .hero-tag {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.28em;
}

.hero-bg .hero-sub,
.hero-bg .hero-list,
.hero-bg .hero-note {
  color: rgba(255, 255, 255, 0.9);
}

.hero-bg .hero-list li::before {
  color: rgba(255, 255, 255, 0.95);
}

.hero-bg .hero-text strong {
  color: #ffffff;
}

.hero-video {
  max-width: 460px;
  width: 100%;
}

.video-wrapper-hero {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  border-radius: 26px;
  overflow: hidden;
}

.hero-ctas-main {
  margin-top: 20px;
  margin-bottom: 12px;
}

.hero-ctas-main .btn {
  min-width: 260px;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(245, 238, 227, 0.9), transparent 55%);
  mix-blend-mode: multiply;
  opacity: 0.9;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-areas:
    "hero-text hero-video"
    "hero-cta  hero-cta";
  column-gap: 40px;
  row-gap: 24px;
  align-items: center;
}

.hero-text {
  grid-area: hero-text;
}

.hero-video {
  grid-area: hero-video;
}

.hero-cta-wrap {
  grid-area: hero-cta;
  margin-top: 8px;
  text-align: center;
}

.hero-ctas-main {
  margin-top: 8px;
  margin-bottom: 4px;
}

.video-wrapper-hero {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  border-radius: 26px;
  overflow: hidden;
}


.hero-text {
  max-width: 560px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lp-texto-suave);
  margin-bottom: 10px;
}

.hero h2 {
  margin-top: 4px;
  font-size: 1.35rem;
  color: var(--lp-marrom-medio);
}

.hero-sub {
  margin-top: 10px;
  color: var(--lp-texto-suave);
  max-width: 40rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  color: var(--lp-texto-suave);
  font-size: 0.95rem;
}

.hero-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--lp-marrom-medio);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--lp-texto-suave);
}

.hero-side-card {
  display: flex;
  justify-content: flex-end;
}

.hero-info-card {
  max-width: 320px;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-placeholder,
.hero-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(126, 90, 68, 0.4), rgba(230, 210, 183, 0.8));
  box-shadow:
    0 18px 40px rgba(62, 47, 37, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Playfair Display", serif;
}

.hero-badge {
  position: absolute;
  bottom: -14px;
  right: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(126, 90, 68, 0.94);
  color: #fcefe1;
  font-size: 0.78rem;
  box-shadow: 0 10px 26px rgba(62, 47, 37, 0.6);
}

.hero-badge strong {
  display: block;
  font-size: 0.88rem;
}

/* Split layout genérico */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

/* VIDEO */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(62, 47, 37, 0.18);
  background: #000;
}

.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cards e grids */
.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 20px 20px 22px;
  box-shadow: 0 12px 28px rgba(62, 47, 37, 0.08);
}

.card.destaque {
  border: 1px solid rgba(126, 90, 68, 0.35);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mt-32 {
  margin-top: 32px;
}

/* Eyebrow / intro */
.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lp-texto-suave);
  margin-bottom: 6px;
}

.section-intro {
  max-width: 34rem;
  color: var(--lp-texto-suave);
  margin-bottom: 30px;
}

/* Listas */
.list-clean {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: var(--lp-texto-suave);
}

.list-clean li {
  margin-bottom: 6px;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  color: var(--lp-texto-suave);
}

.list-check li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.8rem;
  color: var(--lp-marrom-medio);
}

/* Valores / pilares (se usar) */
.valores-card h3 {
  margin-bottom: 10px;
}

.pillars {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillars li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.pillar-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 4px;
}

.pillar-1 {
  background: #7e5a44;
}

.pillar-2 {
  background: #a37c53;
}

.pillar-3 {
  background: #e6d2b7;
}

/* Highlight box */
.highlight-box {
  border-left: 4px solid var(--lp-marrom-medio);
}

/* Galeria genérica (se usar em outro lugar) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  min-height: 160px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 24px rgba(62, 47, 37, 0.12);
}

.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-texto-suave);
  font-size: 0.9rem;
}

/* RESULTADOS ALUNAS */
.results-carousel {
  margin-top: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.results-carousel::-webkit-scrollbar {
  height: 6px;
}

.results-carousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 999px;
}

.results-carousel::-webkit-scrollbar-thumb {
  background: rgba(126, 90, 68, 0.5);
  border-radius: 999px;
}

.results-track {
  display: flex;
  gap: 18px;
  min-width: max-content;
}

.result-card {
  min-width: 260px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 14px 16px 16px;
  box-shadow: 0 12px 24px rgba(62, 47, 37, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-photo {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 8px;
}

.result-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.result-text {
  font-size: 0.9rem;
  color: var(--lp-texto-suave);
}

.result-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-marrom-escuro);
}

/* SOBRE / INSTRUTORA */
.about-photo {
  max-width: 360px;
}

.about-photo-img {
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(62, 47, 37, 0.25);
}

.about-stats {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--lp-texto-suave);
}

.about-stats>div {
  min-width: 120px;
}

.about-stats strong {
  display: block;
  font-size: 1.1rem;
  color: var(--lp-marrom-escuro);
}

/* OUTROS CURSOS */
.course-thumb {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 10px;
  display: block;
}

/* Depoimentos genéricos (se usar) */
.depo p {
  font-size: 0.96rem;
  color: var(--lp-texto-suave);
}

.depo-name {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  margin-top: 24px;
  max-width: 720px;
}

.faq-item {
  border-radius: 16px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(126, 90, 68, 0.15);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border: none;
  background: transparent;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.96rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  font-size: 0.9rem;
  color: var(--lp-texto-suave);
  transition: max-height 0.18s ease, padding-bottom 0.18s ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding-bottom: 12px;
}

/* CTA final / OFERTA */
.cta-final {
  background: linear-gradient(135deg, rgba(126, 90, 68, 0.97), rgba(163, 124, 83, 0.98));
  color: #fceedb;
}

.cta-inner {
  max-width: 720px;
}

.cta-text h2 {
  color: #fceedb;
}

.cta-text p,
.cta-text li {
  color: #f6e6d1;
}

.cta-note {
  margin-top: 8px;
  font-size: 0.85rem;
}

.offer-box {
  margin: 18px 0 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.08);
}

.offer-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  opacity: 0.8;
  margin-bottom: 4px;
}

.offer-main {
  font-size: 1.1rem;
}

.offer-main strong {
  font-size: 1.2rem;
}

.offer-note {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  padding: 30px 0 22px;
  background: rgba(62, 47, 37, 0.95);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-weight: 600;
}

.footer-brand-sub {
  font-size: 0.8rem;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* CTA dentro do menu (último item) */
.nav-cta {
  display: none;
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

.nav a.nav-cta {
  display: none;
  /* vira botão */
}

.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 68px;
  /* tamanho no PC */
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.whatsapp-widget img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* garante que o PNG não deforma */
}





@media (max-width: 900px) {

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero-text"
      "hero-video"
      "hero-cta";
  }

  .container {
    padding: 0 20px;
  }

  .split,
  .grid-3,
  .grid-2,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 96px;
  }

  .topbar-inner {
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .nav-toggle {
    margin-left: auto;
    display: flex;
  }

  /* CTA do topo some no mobile */
  .topbar-cta {
    display: none;
  }

  /* *** AQUI é o ajuste importante *** */
  .nav {
    position: fixed;
    top: 64px;
    /* começa DEPOIS do header (logo + menu) */
    left: 0;
    right: 0;
    background: #efe1cf;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    /* tira aquele espaço grande lá em cima */
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
    z-index: 30;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(126, 90, 68, 0.14);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  /* CTA como último item dentro do menu */
  .nav a.nav-cta {
    display: flex;
    /* vira botão */
    justify-content: center;
    margin-top: 18px;
    padding: 12px 0;
    border-bottom: none;
    background: linear-gradient(135deg, var(--lp-marrom-escuro), var(--lp-marrom-medio));
    color: var(--lp-branco);
    /* força texto branco */
    box-shadow: 0 12px 30px rgba(62, 47, 37, 0.25);
  }

  .nav a.nav-cta:hover {
    filter: brightness(1.05);
    background: linear-gradient(135deg, var(--lp-marrom-escuro), var(--lp-marrom-medio));
  }

  .nav a:hover {
    background: rgba(126, 90, 68, 0.08);
  }

  .gallery-item {
    min-height: 180px;
  }

  .brand-logo-full {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}



@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section-soft {
    padding: 72px 0;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 96px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-side-card {
    justify-content: flex-start;
  }

  .result-card {
    min-width: 240px;
  }

  .whatsapp-widget {
    width: 52px;
    height: 52px;
    bottom: 14px;
    right: 14px;
  }
}