/* =========================================================
   Gabriela Salles — Editorial Luxury
   Paleta: preto fumê · dourado · caramelo · off-white
   Tipografia: Fraunces (display) + Plus Jakarta Sans (texto)
   ========================================================= */

:root {
  /* Cores */
  --smoke:        #15110D;   /* preto fumê quente */
  --smoke-soft:   #1E1812;
  --espresso:     #2B221A;
  --offwhite:     #F6F0E6;   /* off-white quente */
  --cream:        #FBF6EE;
  --gold:         #C9A24B;   /* dourado refinado */
  --gold-bright:  #E6CD8E;
  --gold-deep:    #A6803A;
  --caramel:      #B0703B;
  --caramel-soft: #C98A52;

  --ink:          #1B150F;   /* texto sobre claro */
  --ink-soft:     #5A5046;

  /* Texto sobre escuro */
  --on-dark:        rgba(246, 240, 230, 0.94);
  --on-dark-soft:   rgba(246, 240, 230, 0.74);
  --on-dark-faint:  rgba(246, 240, 230, 0.42);
  --hairline-dark:  rgba(246, 240, 230, 0.14);

  /* Tipografia */
  --font-display: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Movimento */
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.32, 0.72, 0, 1);

  /* Layout */
  --pad-x: clamp(1.25rem, 5vw, 5.5rem);
  --maxw: 1320px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  background: var(--smoke);
  color: var(--on-dark);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; color: var(--on-dark); }
em { font-style: italic; }

::selection { background: var(--gold); color: var(--smoke); }

/* skip-link de acessibilidade */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--smoke);
  padding: 0.65rem 1.1rem;
  border-radius: 0 0 0.6rem 0;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus { left: 0; }

/* foco de teclado visível */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--light :focus-visible { outline-color: var(--gold-deep); }

/* ---------- Film grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   NAV — pílula flutuante de vidro
   ========================================================= */
.nav {
  position: fixed;
  top: clamp(0.85rem, 2vw, 1.4rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(calc(100% - 2rem), var(--maxw));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  border-radius: 999px;
  background: rgba(21, 17, 13, 0.55);
  border: 1px solid var(--hairline-dark);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 50px -30px rgba(0,0,0,0.8);
  transition: padding 0.6s var(--ease-smooth), background 0.6s var(--ease-smooth),
              transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth);
}
.nav.is-scrolled {
  background: rgba(21, 17, 13, 0.78);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 24px 60px -28px rgba(0,0,0,0.9);
}
.nav.is-hidden { transform: translateX(-50%) translateY(-140%); }

.nav__brand { display: flex; align-items: center; gap: 0.65rem; }
.nav__monogram {
  display: grid; place-items: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.nav__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--on-dark);
}
.nav__seal {
  height: 2.9rem;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  padding: 0.5rem 0.9rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--on-dark-soft);
  border-radius: 999px;
  transition: color 0.4s var(--ease-lux), background 0.4s var(--ease-lux);
}
.nav__links a:hover { color: var(--on-dark); background: rgba(246,240,230,0.06); }
.nav__links a.is-active { color: var(--gold-bright); background: rgba(201,162,75,0.10); }

.nav__cta { flex-shrink: 0; }

/* =========================================================
   BOTÕES — pílula com ícone "botão dentro do botão"
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.7rem 0.7rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.5s var(--ease-smooth), background 0.5s var(--ease-lux),
              color 0.5s var(--ease-lux), border-color 0.5s var(--ease-lux),
              box-shadow 0.5s var(--ease-lux);
  will-change: transform;
}
.btn:active { transform: scale(0.975); }

.btn__icon {
  display: grid; place-items: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  transition: transform 0.5s var(--ease-smooth), background 0.5s var(--ease-lux);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: var(--smoke);
  box-shadow: 0 1px 1px rgba(255,255,255,0.35) inset, 0 14px 34px -16px rgba(201,162,75,0.65);
}
.btn--gold .btn__icon { background: rgba(21,17,13,0.14); color: var(--smoke); }
.btn--gold:hover { box-shadow: 0 1px 1px rgba(255,255,255,0.45) inset, 0 18px 44px -14px rgba(201,162,75,0.8); }
.btn--gold:hover .btn__icon { transform: translate(2px, -2px); background: rgba(21,17,13,0.22); }

.btn--ghost {
  padding: 0.7rem 1.3rem;
  color: var(--on-dark);
  border-color: var(--hairline-dark);
  background: transparent;
}
.btn--ghost:hover {
  border-color: rgba(201,162,75,0.55);
  color: var(--gold-bright);
  background: rgba(201,162,75,0.06);
}

/* =========================================================
   EYEBROW — micro pílula
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--hairline-dark);
  background: rgba(246,240,230,0.03);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.15);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  --hero-pb: clamp(2.5rem, 7vh, 4.5rem);
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(5.5rem, 11vh, 8rem) var(--pad-x) var(--hero-pb);
  background:
    radial-gradient(115% 95% at 80% 8%, rgba(176,112,59,0.30), transparent 52%),
    radial-gradient(95% 80% at 62% 105%, rgba(201,162,75,0.22), transparent 58%),
    linear-gradient(158deg, #1B140D 0%, #271C12 42%, #34251704 100%),
    linear-gradient(158deg, #17120D 0%, #2A1E14 60%, #3A2A18 100%);
  overflow: hidden;
}

/* brilho caramelo/dourado */
.hero__glow {
  position: absolute;
  top: -10%; right: -5%;
  width: 60vw; height: 60vw;
  max-width: 820px; max-height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,112,59,0.30), rgba(201,162,75,0.10) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero__ring {
  position: absolute;
  bottom: -8%; right: 20%;
  width: 34vw; height: 34vw;
  max-width: 480px; max-height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,75,0.22);
  pointer-events: none;
}
/* halo de luz que separa a silhueta escura do fundo */
.hero__halo {
  position: absolute;
  right: 8%; bottom: 0;
  width: 46vw; height: 92%;
  max-width: 620px;
  background:
    radial-gradient(58% 55% at 50% 42%, rgba(201,162,75,0.34), rgba(176,112,59,0.16) 45%, transparent 72%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

/* ---- coluna do texto ---- */
.hero__copy { max-width: 38rem; }

.hero__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 1rem 0 0.2rem;
}
.hero__title .reveal-line { display: block; overflow: hidden; }
.hero__title [data-reveal-line] { display: block; }
.hero__title .reveal-line:last-child [data-reveal-line] {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}

.hero__role {
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--on-dark-soft);
  margin-top: 0.8rem;
}
.hero__role .dot { color: var(--gold); margin: 0 0.3rem; }

.hero__lede {
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.62;
  color: var(--on-dark);
  margin-top: 1.1rem;
  max-width: 34rem;
}
.hero__lede em { color: var(--gold-bright); font-style: italic; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero__figures {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.85rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline-dark);
  font-size: 0.95rem;
  color: var(--on-dark-soft);
}
.hero__figures b {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero__figures i { color: var(--gold); font-style: normal; }

/* ---- coluna da foto (recorte livre, ancorado à base) ---- */
.hero__media { position: static; }       /* reserva a largura da coluna no grid */
.hero__cutout {
  position: absolute;
  bottom: 0;
  right: clamp(0.5rem, 5vw, 5rem);
  height: min(90vh, 760px);
  display: flex;
  align-items: flex-end;
  z-index: 2;
  pointer-events: none;
}
.hero__cutout img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  /* dissolve a base (pernas) no fundo — evita o aspecto "cortado" */
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, rgba(0,0,0,0.35) 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 70%, rgba(0,0,0,0.35) 88%, transparent 100%);
  will-change: transform;
}

/* ---- prova social (big players) ---- */
.hero__trust {
  margin-top: 1.4rem;
  max-width: 32rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--on-dark-soft);
}
.hero__trust-label {
  display: inline-block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-bright);
  margin-right: 0.6rem;
}
.hero__trust i { color: var(--gold); font-style: normal; margin: 0 0.2rem; }

/* ---- indicador de scroll ---- */
.hero__scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--on-dark-faint);
  transition: color 0.4s var(--ease-lux);
}
.hero__scroll:hover { color: var(--gold-bright); }
.hero__scroll-line {
  display: block;
  width: 3.5rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  width: 40%;
  background: var(--gold-bright);
  animation: scroll-cue 2.4s var(--ease-lux) infinite;
}
@keyframes scroll-cue {
  0% { transform: translateX(-110%); }
  60%, 100% { transform: translateX(260%); }
}

/* =========================================================
   SEÇÕES — base
   ========================================================= */
.section { position: relative; padding: clamp(5rem, 12vh, 9rem) var(--pad-x); scroll-margin-top: 5.5rem; }
.section--light {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(201,162,75,0.12), transparent 55%),
    var(--cream);
  color: var(--ink);
}
.section--dark {
  background:
    radial-gradient(100% 90% at 8% 0%, rgba(176,112,59,0.18), transparent 55%),
    linear-gradient(180deg, #16110C, #1C150E);
  color: var(--on-dark);
}
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; }

.eyebrow--dark {
  border-color: rgba(27,21,15,0.16);
  background: rgba(27,21,15,0.03);
  color: var(--gold-deep);
}

.section__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 440;
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 1.1rem;
  max-width: 18ch;
}
.section__title em { font-style: italic; color: var(--gold-deep); }
.section__title--light { color: var(--cream); }
.section__title--light em { color: var(--gold-bright); }

.section__head { max-width: 62rem; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__head .eyebrow { margin-inline: auto; }
.section__head .section__title { margin-inline: auto; max-width: 20ch; }
.section__lead {
  margin: 1.3rem auto 0;
  max-width: 46rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: var(--on-dark-soft);
}

/* ---- SOBRE ---- */
.sobre {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.sobre__media { position: relative; }
.frame {
  position: relative;
  border-radius: 1.4rem 1.4rem 1.4rem 5rem;
  overflow: hidden;
  border: 1px solid rgba(27,21,15,0.08);
  box-shadow: 0 40px 80px -50px rgba(27,21,15,0.55);
}
.frame img { width: 100%; height: auto; display: block; }
.frame__badge {
  position: absolute;
  left: -0.5rem; bottom: 2rem;
  background: var(--smoke);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 16px 30px -16px rgba(0,0,0,0.6);
}
.prose { margin-top: 1.6rem; max-width: 40rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.72; }
.prose strong { color: var(--ink); font-weight: 600; }
.pullquote {
  position: relative;
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--gold-deep);
}
.pullquote::before {
  content: "“";
  font-size: 2.4em;
  line-height: 0;
  color: var(--gold);
  margin-right: 0.08em;
  vertical-align: -0.4em;
}

/* ---- PALESTRAS ---- */
.palestras__feature {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--hairline-dark);
  box-shadow: 0 50px 90px -50px rgba(0,0,0,0.9);
}
.palestras__feature img { width: 100%; height: auto; display: block; }
.palestras__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  margin-top: clamp(0.8rem, 1.5vw, 1.2rem);
}
.shot {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--hairline-dark);
}
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.palestras__subtitle {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--cream);
  margin: clamp(3rem, 6vw, 4.5rem) 0 1.8rem;
}
.themes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.6rem, 3.5vw, 3rem) clamp(2rem, 5vw, 4.5rem);
}
.theme { border-top: 1px solid var(--hairline-dark); padding-top: 1.4rem; }
.theme__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--cream);
  line-height: 1.14;
  margin-bottom: 0.6rem;
}
.theme__text { font-size: 0.98rem; line-height: 1.65; color: var(--on-dark-soft); max-width: 34ch; }

/* ---- vídeos (YouTube facade) ---- */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--hairline-dark);
  box-shadow: 0 30px 60px -45px rgba(0,0,0,0.9);
}
.ytlite {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; padding: 0; margin: 0;
  cursor: pointer;
  background-color: var(--smoke-soft);
  background-size: cover;
  background-position: center;
  display: grid; place-items: center;
}
.ytlite::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,17,13,0.05), rgba(21,17,13,0.5));
  transition: background 0.4s var(--ease-lux);
}
.ytlite:hover::after { background: linear-gradient(180deg, rgba(21,17,13,0), rgba(21,17,13,0.3)); }
.ytlite__play {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 4.2rem; height: 4.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  color: var(--smoke);
  padding-left: 0.2rem;
  box-shadow: 0 10px 30px -8px rgba(201,162,75,0.6);
  transition: transform 0.5s var(--ease-smooth);
}
.ytlite:hover .ytlite__play { transform: scale(1.08); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-item { margin: 0; }
.video__cap {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--on-dark);
  font-weight: 500;
}
.video__src {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.cta-row { display: flex; justify-content: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* leads escuros sobre seção clara */
.section--light .section__lead,
.section__lead--ink { color: var(--ink-soft); }
.section__head--left { text-align: left; margin-left: 0; margin-right: 0; }
.section__head--left .section__title,
.section__head--left .section__lead { margin-left: 0; margin-right: 0; }

/* ---- CONSULTORIA & MENTORIA ---- */
.offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.offer { border-top: 1px solid rgba(27,21,15,0.14); padding-top: 1.6rem; }
.offer__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.offer__text { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 40ch; }
.link-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; color: var(--gold-deep);
  transition: color 0.4s var(--ease-lux);
}
.link-cta span { transition: transform 0.4s var(--ease-lux); }
.link-cta:hover { color: var(--caramel); }
.link-cta:hover span { transform: translateX(4px); }

/* ---- PRODUTOS (em breve) ---- */
.produtos { max-width: 52rem; }
.badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(201,162,75,0.45);
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.produtos .section__title { margin-top: 0; }
.produtos .btn { margin-top: 2rem; }

/* ---- CONTATO ---- */
.contato {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contato__intro .section__title { margin-top: 0; }
.contato__ig {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.6rem; font-weight: 600; color: var(--gold-deep);
  transition: color 0.3s var(--ease-lux);
}
.contato__ig:hover { color: var(--caramel); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(27,21,15,0.18);
  border-radius: 0.7rem;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.3s var(--ease-lux), background 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}
.field textarea { resize: vertical; min-height: 7rem; }
.form__actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.3rem; }
.form__status { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.form__status.is-error { color: #9b2c2c; }
.form__status.is-ok { color: var(--gold-deep); font-weight: 600; }

/* ---- RODAPÉ ---- */
.footer {
  background: var(--smoke);
  color: var(--on-dark-soft);
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad-x) 2rem;
  border-top: 1px solid var(--hairline-dark);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 2rem;
  align-items: start;
}
.footer__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); display: block; margin-bottom: 0.6rem; }
.footer__brand p { max-width: 32ch; font-size: 0.92rem; line-height: 1.6; }
.footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a, .footer__ig { color: var(--on-dark-soft); transition: color 0.3s var(--ease-lux); }
.footer__nav a:hover, .footer__ig:hover { color: var(--gold-bright); }
.footer__ig { font-weight: 600; }
.footer__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-dark);
  font-size: 0.82rem; color: var(--on-dark-faint);
}
.footer__base a { color: var(--on-dark-faint); }
.footer__base a:hover { color: var(--gold-bright); }

/* ---- FAQ ---- */
.faq { max-width: 52rem; margin: 0 auto; }
.faq__item { border-top: 1px solid rgba(27,21,15,0.14); }
.faq__item:last-child { border-bottom: 1px solid rgba(27,21,15,0.14); }
.faq__q {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.3rem 2.5rem 1.3rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s var(--ease-lux);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 0.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-deep);
}
.faq__q:hover { color: var(--gold-deep); }
.faq__item[open] .faq__q { color: var(--gold-deep); }
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a { padding: 0 2.5rem 1.5rem 0; }
.faq__a p { margin: 0; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }

/* =========================================================
   REVEAL — estados iniciais (só com JS)
   ========================================================= */
.js [data-reveal],
.js [data-reveal-line] { will-change: transform, opacity; }
.js [data-animate] { opacity: 0; transform: translateY(28px); will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line::after { animation: none; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 980px) {
  .hero { padding-top: 6rem; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero__media { order: -1; }
  .hero__cutout {
    position: static;
    height: auto;
    right: auto;
    margin: 0 auto;
    justify-content: center;
    pointer-events: auto;
  }
  .hero__cutout img { height: auto; max-height: 44vh; }
  .hero__halo {
    right: 50%;
    transform: translateX(50%);
    top: 4rem; bottom: auto;
    width: 88%; height: 44vh;
    max-width: 420px;
  }
  .hero__trust { max-width: none; }
}

@media (max-width: 760px) {
  .nav { padding: 0.5rem 0.5rem 0.5rem 1.1rem; }
  .nav__links { display: none; }
  .nav__cta .btn__label { display: none; }
  .nav__cta { padding: 0.55rem; }
  .nav__cta .btn__icon { width: 2.2rem; height: 2.2rem; }

  .hero { padding-top: 6.5rem; }
  .hero__scroll { display: none; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---- seções: responsivo ---- */
@media (max-width: 900px) {
  .sobre { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre__media { max-width: 24rem; }
  .contato { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .themes { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .palestras__gallery { grid-template-columns: 1fr 1fr; }
  .frame { border-radius: 1.2rem 1.2rem 1.2rem 3.5rem; }
}
