: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: #00aa5b;
  /* verde principal, suave */
  --lp-verde-main-2: #239454;
  /* 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.7;
  /* um pouco mais alto também */
  font-size: 1.35rem;
  /* texto geral maior */
}


/* 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: 60px 0;
}

.section-soft {
  padding: 48px 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: 14px;
  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);
}

.hero-bg .btn-outline,
.btn-hero-outline {
  border-color: rgba(255, 255, 255, 0.88);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-bg .btn-outline:hover,
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
  box-shadow: none;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}



/* HERO */

/* Hero centralizado em coluna */
.hero-centered {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-centered .hero-tag {
  letter-spacing: 0.28em;
}

/* Título já estava branco, só reforçando */
.hero-bg h1 {
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1.1;
  text-shadow:
    0 16px 40px rgba(0, 0, 0, 0.75),
    0 0 24px rgba(255, 255, 255, 0.28);
  margin-bottom: 8px;
}

/* Vídeo grande e centralizado */
.hero-video {
  width: 100%;
}

/* Wrapper de vídeo responsivo 16:9 */
.video-wrapper,
.video-wrapper-hero {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
}

/* Texto do hero justificado */
.hero-sub {
  max-width: 760px;
  margin: 0 auto;
  text-align: justify;
  color: rgba(255, 255, 255, 0.92);
}

/* CTA centralizado logo abaixo do texto */
.hero-ctas-main {
  margin-top: 8px;
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
}

.hero-note {
  margin-top: 6px;
}


.hero {
  position: relative;
}

/* Título principal */
.hero-title {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0;
  text-shadow:
    0 16px 40px rgba(0, 0, 0, 0.75),
    0 0 24px rgba(255, 255, 255, 0.28);
}

/* Subtítulo logo abaixo */
.hero-subtitle {
  font-size: clamp(1.8rem, 3vw, 2rem) !important;
  color: #ffffff !important;
  line-height: 1.2;
  text-align: center;
  margin: 6px 0 10px;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.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;
}

.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;
  pointer-events: none;
  /* <- isso é importante */
}


.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;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* CTA do hero sempre acima de tudo */
.hero-ctas-main {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.hero-ctas-main .btn {
  position: relative;
  z-index: 6;
}


/* 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,
.video-wrapper-hero {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.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;
}

.section-local-intent {
  background: rgba(255, 255, 255, 0.38);
}

.local-services-grid {
  margin-top: 26px;
}

.local-service-card {
  height: 100%;
}

.local-service-card p {
  color: var(--lp-texto-suave);
  font-size: 0.98rem;
}

.local-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.hero-ctas-split {
  gap: 14px;
  flex-wrap: wrap;
}

.local-hero .hero-sub-block {
  max-width: 840px;
}

.local-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.local-results-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(62, 47, 37, 0.1);
}

.local-course-copy {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #f6e6d1;
  text-align: center;
}

/* grade dos benefícios de acesso */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

/* mobile: 1 por linha */
@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* grade dos benefícios de acesso */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

/* mobile: 1 card por linha */
@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* todos os 4 com mesma altura */
.card-feature {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ícone redondo no topo do card */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(126, 90, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-icon i {
  font-size: 22px;
  color: var(--lp-marrom-escuro);
}



/* --- MÓDULOS (OWL) --- */
/* --- MÓDULOS (OWL) --- */
.modules-carousel {
  margin-top: 24px;
  position: relative;
}

/* área visível do carrossel */
.modules-carousel .owl-stage-outer {
  padding: 8px 0 24px;   /* sem padding horizontal pra não “sobrar” espaço */
}

/* cada item do Owl é flex pra o card ocupar toda a altura */
.modules-carousel .owl-item {
  padding: 0 12px;       /* espaçamento entre cards */
  display: flex;
}

/* todos os cards com mesmo tamanho visual */
.modules-carousel .module-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 12px 24px rgba(62, 47, 37, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 425px;   /* ajusta se quiser mais alto/baixo */
}

.about-carousel-wrapper {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza tudo dentro (embed + botão) */
  gap: 16px;
}

/* wrapper que centraliza o embed */
.sobre-instagram-embed {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}

/* garante que o blockquote não "puxe" margens estranhas */
.sobre-instagram-embed .instagram-media {
  margin: 0 !important;
}

/* botão já fica centralizado por causa do align-items:center, 
   mas se quiser garantir: */
.sobre-instagram-cta {
  text-align: center;
  width: 100%;
}


/* capa do módulo */
.module-thumb {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}

.module-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

/* título + descrição */
.module-card h3 {
  margin: 0 0 8px;
}

.module-desc {
  font-size: 0.95rem;
  color: var(--lp-texto-suave);
}

/* NAV (setas) – desktop e mobile */
.modules-carousel .owl-nav button.owl-prev,
.modules-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(126, 90, 68, 0.15);
  color: var(--lp-texto);
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modules-carousel .owl-nav button.owl-prev {
  left: -18px;   /* afastado dos cards */
}

.modules-carousel .owl-nav button.owl-next {
  right: -18px;
}

.modules-carousel .owl-nav button:hover {
  background: rgba(126, 90, 68, 0.25);
}

/* Dots (bolinhas embaixo) */
.modules-carousel .owl-dots {
  text-align: center;
  margin-top: 4px;
}

.modules-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 3px;
  border-radius: 999px;
  background: rgba(126, 90, 68, 0.4);
}

.modules-carousel .owl-dots .owl-dot.active span {
  background: var(--lp-verde-main);
}

/* Ajuste pra telas pequenas */
@media (max-width: 600px) {
  .modules-carousel .owl-nav button.owl-prev {
    left: -6px;
  }

  .modules-carousel .owl-nav button.owl-next {
    right: -6px;
  }
}




.mt-32 {
  margin-top: 32px;
}

/* Eyebrow / intro */
.eyebrow {
  font-size: 1rem;
  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 – Owl Carousel, só fotos 3x4 */
.results-carousel {
  margin-top: 24px;
  position: relative;
}

.results-carousel .owl-stage-outer {
  padding: 8px 40px 24px;
}

/* cada item flex pra foto ocupar a mesma altura */
.results-carousel .owl-item {
  padding: 0 10px;
  display: flex;
}

/* card só pra segurar a foto */
.result-card {
  flex: 1;
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: flex;
}

/* foto 3x4 com borda arredondada */
.result-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(62, 47, 37, 0.18);
}

.result-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* setas – aparecem em todos os tamanhos */
.results-carousel .owl-nav button.owl-prev,
.results-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(126, 90, 68, 0.15);
  color: var(--lp-texto);
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.results-carousel .owl-nav button.owl-prev {
  left: 8px;
}

.results-carousel .owl-nav button.owl-next {
  right: 8px;
}

.results-carousel .owl-nav button:hover {
  background: rgba(126, 90, 68, 0.25);
}

/* mobile: aproxima um pouco as setas */
@media (max-width: 600px) {
  .results-carousel .owl-stage-outer {
    padding: 8px 24px 24px;
  }

  .results-carousel .owl-nav button.owl-prev {
    left: 4px;
  }

  .results-carousel .owl-nav button.owl-next {
    right: 4px;
  }
}


/* SOBRE / INSTRUTORA */
/* SOBRE A INSTRUTORA – layout geral */
.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
}

/* coluna da foto */
.sobre-photo {
  justify-self: center;
}

/* foto em destaque */
.sobre-photo-img {
  display: block;
  width: 100%;
  max-width: 380px;
  border-radius: 26px;
  box-shadow: 0 18px 36px rgba(62, 47, 37, 0.25);
}

/* texto */
.sobre-text p + p {
  margin-top: 6px;
}

/* desktop: mais destaque na foto */
@media (min-width: 900px) {
  .sobre-photo-img {
    max-width: 420px;
  }
}

/* mobile: layout em coluna, foto centralizada (já estava bom, só refinando) */
@media (max-width: 899px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .sobre-photo {
    order: -1;
    margin-bottom: 18px;
  }

  .sobre-photo-img {
    max-width: 320px;
    margin: 0 auto;
    border-radius: 22px;
    box-shadow: 0 14px 28px rgba(62, 47, 37, 0.22);
  }
}

/* wrapper do carrossel + botão */
.sobre-carousel-wrapper {
  margin-top: 36px;
}

/* Owl Carousel */
.sobre-carousel {
  position: relative;
}

.sobre-carousel .owl-stage-outer {
  padding: 8px 32px 20px;
}

.sobre-carousel .owl-item {
  padding: 0 10px;
}

/* slide (foto) */
.sobre-slide {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(62, 47, 37, 0.22);
}

.sobre-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* dots do carrossel */
.sobre-carousel .owl-dots {
  text-align: center;
  margin-top: 6px;
}

.sobre-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 3px;
  border-radius: 999px;
  background: rgba(126, 90, 68, 0.4);
}

.sobre-carousel .owl-dots .owl-dot.active span {
  background: var(--lp-verde-main);
}

/* CTA Instagram */
.sobre-instagram-cta {
  margin-top: 18px;
  text-align: center;
}

.btn-instagram {
  background: linear-gradient(135deg, #f77737, #c13584);
  box-shadow: 0 12px 26px rgba(193, 53, 132, 0.4);
}

.btn-instagram:hover {
  filter: brightness(1.05);
}

.about-photo {
  max-width: 430px;      /* aumenta no desktop */
  margin: 0;             /* encosta na lateral da grid */
}

.about-photo-img {
  display: block;
  width: 100%;
  border-radius: 0;      /* se quiser ainda um leve arredondado: 18px */
  box-shadow: none;      /* tira sombra/moldura */
}

/* No mobile centraliza e controla o tamanho */
@media (max-width: 900px) {
  .about-photo {
    max-width: 340px;
    margin: 0 auto 22px;
  }
}

/* CARROSSEL LETÍCIA + ALUNAS */
.about-carousel {
  margin-top: 28px;
  position: relative;
}

/* nada de padding lateral aqui pra não sobrar espaço */
.about-carousel .owl-stage-outer {
  padding: 8px 0 24px;
}

/* cada item ocupa a mesma altura, centralizado */
.about-carousel .owl-item {
  padding: 0 10px;
  display: flex;
}

.about-slide {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(62, 47, 37, 0.22);
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* setas sempre visíveis, mas fora do “miolo” */
.about-carousel .owl-nav button.owl-prev,
.about-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(126, 90, 68, 0.15);
  color: var(--lp-texto);
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.about-carousel .owl-nav button.owl-prev {
  left: -18px;   /* fica colado fora da área, sem cortar card */
}

.about-carousel .owl-nav button.owl-next {
  right: -18px;
}

.about-carousel .owl-nav button:hover {
  background: rgba(126, 90, 68, 0.25);
}

/* sem dots: só setas mesmo */
.about-carousel .owl-dots {
  display: none;
}

/* mobile – aproxima um pouco as setas */
@media (max-width: 600px) {
  .about-carousel .owl-nav button.owl-prev {
    left: -6px;
  }
  .about-carousel .owl-nav button.owl-next {
    right: -6px;
  }
}

/* CTA Instagram */
.about-cta-instagram {
  margin-top: 18px;
  text-align: center;
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
  box-shadow: 0 12px 26px rgba(204, 35, 102, 0.45);
}
.btn-instagram:hover {
  filter: brightness(1.05);
}


.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;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.82);
}

/* 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 */
}

.results-carousel {
  margin-top: 24px;
}

.results-carousel .owl-stage-outer {
  padding: 6px 0 16px;
}

.results-carousel .owl-item {
  padding: 4px;
}

.result-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 16px 16px 18px;
  box-shadow: 0 10px 24px rgba(62, 47, 37, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.result-photo img {
  width: 100%;
  border-radius: 14px;
  display: block;
  margin-bottom: 10px;
}

.results-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(126, 90, 68, 0.4);
}

.results-carousel .owl-dots .owl-dot.active span {
  background: var(--lp-verde-main);
}

@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;
  }

  .local-results-grid {
    grid-template-columns: repeat(2, minmax(0, 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: 56 0;
  }

  .section-soft {
    padding: 44px 0;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .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;
  }

  .local-results-grid {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    justify-content: flex-start;
  }
}

/* --- SEÇÃO DE OFERTA / PAGAMENTO --- */
/* ===== SEÇÃO DE OFERTA / PAGAMENTO ===== */

.cta-final {
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.18), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(0,0,0,0.35), transparent 55%),
              linear-gradient(135deg, #1a2b31, #0f1820);
  color: #fceedb;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* CARD GRANDÃO */
.pricing-card {
  width: 100%;
  max-width: 560px;           /* aumenta/diminui a largura por aqui */
  margin: 0 auto;
  padding: 34px 32px 32px;
  border-radius: 28px;
  background: radial-gradient(circle at 15% 0, rgba(255,255,255,0.1), transparent 60%),
              radial-gradient(circle at 85% 100%, rgba(0,0,0,0.35), transparent 60%),
              linear-gradient(145deg, rgba(7,35,35,0.95), rgba(11,52,52,0.98));
  box-shadow: 0 26px 60px rgba(0,0,0,0.65);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
}

/* rótulo em cima */
.pricing-label-top {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

/* título maior */
.pricing-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 20px;
  color: #ffffff;
}

/* bloco de preço mais destacado */
.pricing-box {
  margin: 12px auto 26px;
  padding: 22px 20px 20px;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.07), transparent 55%),
              rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.12);
}

/* preço antigo */
.pricing-old {
  font-size: 1rem;
  text-decoration: line-through;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

/* texto "POR APENAS" */
.pricing-installment-label {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.78);
}

/* linha principal de preço */
.pricing-main {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

/* "12x de" um pouco menor */
.pricing-main-small {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

/* "R$" */
.pricing-main-currency {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

/* valor bem grande */
.pricing-main-value {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

/* preço à vista */
.pricing-cash {
  font-size: 1.1rem;
  margin-top: 4px;
  color: rgba(255,255,255,0.9);
}

/* botão CTA bem chamativo */
.btn-cta {
  margin-top: 16px;
  margin-bottom: 18px;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(135deg, var(--lp-verde-main), var(--lp-verde-main-2));
  box-shadow: 0 22px 38px rgba(0,0,0,0.55);
  font-size: 1.05rem;
}

.btn-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* badges de segurança embaixo */
.cta-safe-badges {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
}

.cta-safe-badges i {
  margin-right: 6px;
}

/* mobile: ocupa quase toda a tela */
@media (max-width: 700px) {
  .pricing-card {
    padding: 26px 20px 24px;
    border-radius: 22px;
  }

  .pricing-main-currency {
    font-size: 2.1rem;
  }

  .pricing-main-value {
    font-size: 2.8rem;
  }
}


/* bloco de textos do hero, com espaçamento menor entre parágrafos */
.hero-sub-block {
  max-width: 760px;
  margin: 14px auto 0;
}

.hero-sub-block .hero-sub {
  margin: 4px 0;            /* espaço mínimo entre os parágrafos */
}

/* linha de destaque: DURABILIDADE / ACABAMENTO / PRATICIDADE */
.hero-sub-highlight {
  margin: 8px 0;
  text-align: center;
}

.hero-sub-highlight strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* bloco de textos do hero */
.hero-sub-block {
  max-width: 760px;
  margin: 14px auto 0;
}

.hero-sub-block .hero-sub {
  margin: 4px 0;
}

/* linha em destaque: retângulo marrom com texto dourado */
.hero-sub-highlight {
  margin: 14px 0;
  text-align: center;
}

.hero-pill {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5f4433, #7e5a44); /* marrom LP mais escuro */
  color: #e6d2b7; /* dourado/bege claro */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95em;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin: 1rem;
}

/* opcional: um pouco mais compacto no mobile */
@media (max-width: 600px) {
  .hero-pill {
    padding: 8px 18px;
    letter-spacing: 0.09em;
    font-size: 0.9em;
  }
}


.swipe-hint {
  margin-top: 10px;
  text-align: center;
  opacity: 0.9;
}

.swipe-hint img {
  width: 70px;        /* ajuste fino se quiser maior/menor */
  max-width: 90px;
  height: auto;
  display: inline-block;
}

/* se quiser um pouco maior no mobile */
@media (max-width: 600px) {
  .swipe-hint img {
    width: 80px;
  }
}


/* === DEPOIMENTOS (Owl Carousel) === */
.testimonials-carousel {
  margin-top: 24px;
  position: relative;
}

.testimonials-carousel .owl-stage-outer {
  padding: 8px 4px 24px;
}

.testimonials-carousel .owl-item {
  padding: 0 10px;
}

/* setas – aparecem em todos os tamanhos */
.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(126, 90, 68, 0.15);
  color: var(--lp-texto);
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testimonials-carousel .owl-nav button.owl-prev {
  left: 8px;
}

.testimonials-carousel .owl-nav button.owl-next {
  right: 8px;
}

.testimonials-carousel .owl-nav button:hover {
  background: rgba(126, 90, 68, 0.25);
}

/* mobile: aproxima um pouco as setas */
@media (max-width: 600px) {
  .testimonials-carousel .owl-stage-outer {
    padding: 8px 24px 24px;
  }

  .testimonials-carousel .owl-nav button.owl-prev {
    left: 4px;
  }

  .testimonials-carousel .owl-nav button.owl-next {
    right: 4px;
  }
}

/* card estilo "mensagem" */
/* card dos depoimentos – todos com a MESMA altura */
.depo-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 12px 24px rgba(62, 47, 37, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;

  /* define uma altura padrão para todos */
  min-height: 300px; /* se precisar, aumenta esse valor */
}

/* texto ocupa o “miolo” do card, empurrando tudo pra baixo igual */
.depo-text {
  font-size: 0.95rem;
  color: var(--lp-texto-suave);
  line-height: 1.6;
  margin-top: 4px;
  flex: 1;
}


/* cabeçalho com avatar + nome */
.depo-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(126, 90, 68, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--lp-marrom-escuro);
}

.depo-info {
  display: flex;
  flex-direction: column;
}

.depo-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lp-marrom-escuro);
}

.depo-role {
  font-size: 0.8rem;
  color: var(--lp-texto-suave);
}

/* texto do depoimento */
.depo-text {
  font-size: 0.95rem;
  color: var(--lp-texto-suave);
  line-height: 1.6;
  margin-top: 4px;
}

/* Dots do carrossel */
.testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 6px;
}

.testimonials-carousel .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 3px;
  border-radius: 999px;
  background: rgba(126, 90, 68, 0.35);
}

.testimonials-carousel .owl-dots .owl-dot.active span {
  background: var(--lp-verde-main);
}


/* responsivo: 1 card no mobile, 2 no desktop */
@media (max-width: 768px) {
  .testimonials-carousel .owl-stage-outer {
    padding: 8px 4px 20px;
  }
}
