/* ============================================
   EDINSON FERNANDEZ | Nutricionista
   Premium One Page | Apple Premium + Leni
   Paleta: Branco, Off-white, Cinza suave, Dourado, Preto
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Paleta oficial */
  --color-white:        #FFFFFF;
  --color-off-white:    #FAFAF7;
  --color-soft-gray:    #F3F3F0;
  --color-premium-gray: #ECECEA;
  --color-text:         #171717;
  --color-text-soft:    #555555;
  --color-black:        #0F0F0F;
  --color-gold:         #C9A24D;
  --color-gold-soft:    #D8BE72;
  --color-gold-light:   #F3E7C0;
  --color-gold-dark:    #a9832e;

  /* Aliases usados nas regras abaixo (mantém compatibilidade com a estrutura original) */
  --primary:   #171717;
  --secondary: #ffffff;
  --accent:    #C9A24D;
  --gold:      #C9A24D;
  --gold-soft: #D8BE72;
  --gold-dark: #a9832e;
  --gold-light:#F3E7C0;
  --white:     #ffffff;
  --soft-bg:   #F3F3F0;
  --text:      #171717;
  --muted:     #555555;
  --card:      #ffffff;
  --border:    rgba(201,162,77,.18);
  --heading:   'Poppins', sans-serif;
  --serif:     'Poppins', sans-serif;
  --sans:      'Manrope', system-ui, sans-serif;
  --shadow:    0 2px 12px rgba(15,15,15,.05);
  --shadow-md: 0 6px 28px rgba(15,15,15,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── Typography ─────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--primary);
}
h3 {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}
p { font-size: .93rem; line-height: 1.78; color: var(--muted); }

/* ─── Layout ─────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); }
.section-pad { padding: clamp(5rem,8vw,8rem) 0; }

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 100px;
  transition: background .3s, color .3s, transform .2s, box-shadow .3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #111111;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,162,77,.4);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(216,190,114,.14);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ─── LOADING SCREEN ─────────────────────── */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background:
    radial-gradient(circle at 50% 18%, rgba(201,162,77,.22), transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(216,190,114,.14), transparent 36%),
    linear-gradient(180deg, #FFFFFF 0%, #F5F5F2 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .5s;
}
.loading-logo-img {
  width: 96px; opacity: .96;
  filter: drop-shadow(0 6px 20px rgba(201,162,77,.35));
}
.loading-bar-track {
  width: 160px; height: 1px;
  background: rgba(201,162,77,.22);
  position: relative; overflow: hidden;
}
.loading-bar-fill {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0%;
  background: var(--gold); transition: width .08s;
}
.loading-pct { font-size: .68rem; color: var(--muted); letter-spacing: .1em; }

/* ─── REVEAL OVERLAY ─────────────────────── */
#reveal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background:
    radial-gradient(circle at 50% 18%, rgba(201,162,77,.22), transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(216,190,114,.14), transparent 36%),
    linear-gradient(180deg, #FFFFFF 0%, #F5F5F2 100%);
  clip-path: circle(150% at 50% 50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
#reveal-overlay img {
  width: 96px; opacity: 0;
  filter: drop-shadow(0 6px 20px rgba(201,162,77,.35));
}

/* ─── HEADER ─────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15,15,15,.06);
  transition: background .4s, padding .4s, box-shadow .4s;
}
#header.scrolled {
  background: rgba(255,255,255,.95);
  padding: .8rem 0;
  box-shadow: 0 2px 20px rgba(15,15,15,.06);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.logo-img {
  height: 50px; width: auto; display: block;
  transition: height .3s;
}
#header.scrolled .logo-img { height: 42px; }

nav.header-nav { display: flex; align-items: center; gap: 1.3rem; }
nav.header-nav a {
  font-size: .73rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
  transition: color .3s;
  white-space: nowrap;
}
nav.header-nav a:hover { color: var(--gold-dark); }
#header .btn-primary { white-space: nowrap; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.hamburger span { display: block; height: 1.5px; background: var(--text); transition: all .3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F1 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.7rem;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--heading);
  font-size: clamp(1.5rem,5vw,2.2rem);
  font-weight: 500; color: var(--text); transition: color .3s;
}
.mobile-nav a:hover { color: var(--gold-dark); }
.mobile-nav .mobile-cta {
  font-family: var(--sans); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%); color: #111;
  padding: .85rem 2.2rem; border-radius: 100px; margin-top: 1rem;
  transition: transform .25s, box-shadow .25s;
}
.mobile-nav .mobile-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,162,77,.35); }

/* ─── HERO ───────────────────────────────── */
.hero-sequence { position: relative; height: 250vh; }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

@media (max-width: 767px) {
  .hero-sequence { height: 180vh; }
}

.hero-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(15,15,15,.74) 0%, rgba(15,15,15,.42) 42%, rgba(15,15,15,.1) 68%, transparent 85%),
    linear-gradient(to top,   rgba(15,15,15,.66) 0%, rgba(15,15,15,.16) 45%, transparent 70%);
}

.hero-content {
  position: absolute;
  bottom: clamp(5rem, 10vh, 9rem);
  left: clamp(1.8rem, 5vw, 5rem);
  max-width: min(42vw, 540px);
  z-index: 10;
}

.hero-label {
  display: flex; align-items: center; gap: .6rem;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.4rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero-label::before {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 300; line-height: 1.15;
  letter-spacing: 0;
  color: var(--white); margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.55), 0 1px 6px rgba(0,0,0,.4);
}
.hero-h1 em { font-style: normal; font-weight: 600; color: var(--gold-light); }

.hero-sub {
  font-size: .9rem; line-height: 1.75;
  color: rgba(255,255,255,.86); margin-bottom: 1.8rem;
  max-width: 380px;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}

.hero-actions {
  display: flex; align-items: center;
  gap: .75rem; flex-wrap: nowrap;
}
.hero-actions .btn {
  padding: .72rem 1.5rem;
  font-size: .7rem; letter-spacing: .1em;
  white-space: nowrap;
}

.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.4); font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; z-index: 10;
}
.scroll-line { width: 1px; height: 36px; background: rgba(216,190,114,.28); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:100%} }

/* ─── SOBRE (única seção com fundo escuro, uso deliberado e pontual) ───── */
.sobre-section {
  background:
    radial-gradient(circle at 50% 8%, rgba(201,162,77,.26), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(216,190,114,.1), transparent 30%),
    radial-gradient(circle at 88% 55%, rgba(201,162,77,.16), transparent 28%),
    linear-gradient(150deg, #181818 0%, #101010 55%, #0c0c0c 100%);
  position: relative; overflow: hidden;
}
.sobre-section > .container {
  position: relative;
  z-index: 2;
}
.sobre-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,190,114,.3), transparent);
}

.quem-dot-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.55) 52%, rgba(0,0,0,.18) 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.55) 52%, rgba(0,0,0,.18) 100%);
}
.quem-dot-grid__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sobre-inner, .desafio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-text .label { color: var(--gold); margin-bottom: 1rem; }
.sobre-text h2 { color: var(--white); font-weight: 300; max-width: 420px; margin-bottom: 1.5rem; }
.sobre-text p { color: rgba(255,255,255,.78); max-width: 420px; margin-bottom: 1.2rem; }
.sobre-text p:last-of-type { margin-bottom: 2rem; }

.sobre-frase {
  font-family: var(--heading);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  display: block;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.sobre-photo {
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-photo > img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 18px 54px rgba(0,0,0,.4), 0 0 0 1px rgba(201,162,77,.2);
}
.sobre-photo-deco {
  position: absolute;
  bottom: -1.8rem;
  right: -1.8rem;
  width: 90px;
  opacity: .16;
  pointer-events: none;
}

/* ─── MARQUEE ────────────────────────────── */
.marquee-section {
  background: linear-gradient(135deg, #FAFAF7 0%, #F3F3F0 100%);
  padding: 1.2rem 0; overflow: hidden;
  border-top: 1px solid rgba(201,162,77,.16);
  border-bottom: 1px solid rgba(201,162,77,.12);
}
.marquee-outer { display: flex; overflow: hidden; }
.marquee-content {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem; flex-shrink: 0;
  animation: marqueeScroll 50s linear infinite; white-space: nowrap;
}
.marquee-content.rev { animation-name: marqueeScrollRev; }
.marquee-content span { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text); }
.marquee-content .dot { color: var(--gold); font-size: .45rem; }
@keyframes marqueeScroll    { 0%{transform:translateX(0)}    100%{transform:translateX(-50%)} }
@keyframes marqueeScrollRev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}    }

/* ─── AUTORIDADE / PROMESSA ──────────────── */
.essencia-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F4 100%);
  position: relative;
}
.essencia-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.essencia-section .label { margin-bottom: 1rem; }
.essencia-section h2 { max-width: 600px; margin-bottom: 1rem; }
.essencia-intro { max-width: 620px; margin-bottom: 3rem; }

.proc-grid, .spec-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.2rem;
}
.proc-card, .spec-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F4 100%);
  border: 1px solid rgba(201,162,77,.18);
  border-radius: 16px; padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .75rem;
  box-shadow: 0 20px 50px rgba(15,15,15,.06);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.proc-card:hover, .spec-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(15,15,15,.09); }
.proc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #141414;
}
.proc-card h3, .spec-card h3 { margin-bottom: .1rem; color: var(--text); }
.proc-card p, .spec-card p  { font-size: .85rem; flex: 1; color: var(--muted); }

/* ─── NUTRIÇÃO (seção principal) ─────────── */
.nutricao-section {
  background:
    radial-gradient(circle at top right, rgba(216,190,114,.16), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F4F4F1 100%);
}
.nutricao-section .label { margin-bottom: 1rem; }
.nutricao-section h2 { max-width: 640px; margin-bottom: 1rem; }
.nutricao-section > .container > p { max-width: 680px; margin-bottom: 1.1rem; }
.nutricao-sub { font-weight: 700; color: var(--text); }
.nutricao-section .check-list { margin: 1.6rem 0 2.4rem; }

/* Check list reutilizável (Nutrição, Desafio, Quem treina, Para quem é indicado) */
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.check-item .check-ico {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #111;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .15rem;
}
.check-item p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ─── ESPECIALIDADES ─────────────────────── */
.especialidades-section {
  background: var(--soft-bg);
  position: relative;
}
.especialidades-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.especialidades-section .label { margin-bottom: 1rem; }
.especialidades-section h2 { max-width: 640px; margin-bottom: 1rem; }
.especialidades-intro { max-width: 600px; margin-bottom: 3rem; }

/* ─── DESAFIO DE 20 DIAS ─────────────────── */
.desafio-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAF7 45%, #ECECEA 100%);
  position: relative;
}
.desafio-text .label { margin-bottom: 1rem; }
.desafio-text h2 { max-width: 520px; margin-bottom: 1rem; }
.desafio-sub { font-weight: 700; color: var(--text); margin-bottom: 1.1rem; max-width: 480px; }
.desafio-text > p:not(.desafio-sub) { max-width: 500px; margin-bottom: 1.4rem; }
.desafio-text .check-list { grid-template-columns: 1fr 1fr; margin-bottom: 2.2rem; }

/* ─── NUTRIÇÃO PARA QUEM TREINA ──────────── */
.treino-section {
  background: var(--soft-bg);
}
.treino-section .label { margin-bottom: 1rem; }
.treino-section h2 { max-width: 620px; margin-bottom: 1rem; }
.treino-section > .container > p { max-width: 640px; margin-bottom: 1.1rem; }
.treino-section .check-list { margin: 1.6rem 0 2.4rem; }

/* ─── COMO FUNCIONA / ATENDIMENTO ────────── */
.processo-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F4 100%);
  position: relative;
}
.processo-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.processo-section .label { margin-bottom: 1rem; }
.processo-section h2 { max-width: 600px; margin-bottom: 1rem; }
.processo-intro { max-width: 560px; margin-bottom: 3rem; }

.passos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.passo-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F4 100%);
  border: 1px solid rgba(201,162,77,.18);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15,15,15,.06);
  transition: transform .3s, box-shadow .3s;
}
.passo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(15,15,15,.09);
}

.passo-num {
  font-family: var(--heading);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,162,77,.22);
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
}
.passo-body h3 { color: var(--text); font-size: .95rem; margin-bottom: .3rem; }
.passo-body p  { font-size: .84rem; color: var(--muted); }

/* ─── FAQ ────────────────────────────────── */
.faq-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F4 100%);
}
.faq-section .label { margin-bottom: 1rem; }
.faq-section h2 { max-width: 600px; margin-bottom: 1rem; }
.faq-intro { max-width: 560px; margin-bottom: 2.4rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  max-width: 820px;
}
.faq-item {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F4 100%);
  border: 1px solid rgba(201,162,77,.18);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 14px 34px rgba(15,15,15,.05);
  transition: border-color .25s, box-shadow .25s;
}
.faq-item:hover { border-color: rgba(201,162,77,.32); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #111;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: .9rem; font-size: .87rem; color: var(--muted); }

/* ─── PARA QUEM É INDICADO ───────────────── */
.indicado-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F1 100%);
}
.indicado-section .label { margin-bottom: 1rem; }
.indicado-section h2 { max-width: 700px; margin-bottom: 2.4rem; }

/* ─── INSTAGRAM ──────────────────────────── */
.insta-section { background: var(--soft-bg); text-align: center; }
.insta-inner { display: flex; flex-direction: column; align-items: center; }
.insta-section .label { margin-bottom: 1rem; }
.insta-section h2 { max-width: 640px; margin: 0 auto 1rem; }
.insta-section > .container > p { max-width: 520px; margin: 0 auto 1.8rem; }
.insta-handle {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .65rem 1.4rem;
  border-radius: 100px;
  border: 1px solid rgba(201,162,77,.3);
  background: var(--white);
  color: var(--text);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 1.8rem;
  transition: border-color .25s, transform .2s;
}
.insta-handle svg { color: var(--gold-dark); }
.insta-handle:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ─── CTA FINAL ──────────────────────────── */
.cta-final {
  background: #fff;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 3rem) clamp(4rem, 7vw, 6rem);
  text-align: center;
}
.cta-final > .container { max-width: 1200px; }

.cta-final-inner {
  position: relative; overflow: hidden;
  border-radius: 28px;
  background-color: #0F0F0F;
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  padding: clamp(3.5rem, 6vw, 5rem) 2rem;
  border: 1px solid rgba(201,162,77,.18);
}
.cta-final-inner::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to right,  rgba(15,15,15,.82) 0%, rgba(15,15,15,.5) 50%, rgba(15,15,15,.82) 100%),
    linear-gradient(to bottom, rgba(15,15,15,.62)  0%, rgba(15,15,15,.32) 52%, rgba(15,15,15,.72)  100%);
}
.cta-final-inner > * { position: relative; z-index: 1; }
.cta-final .label { color: var(--gold-light); margin-bottom: 1rem; }
.cta-final h2 { color: var(--white); font-weight: 300; max-width: 620px; margin: 0 auto 1.4rem; }
.cta-final-inner > p { color: rgba(255,255,255,.84); max-width: 480px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-contact-info {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
}
.cta-contact-line {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.72);
}
.cta-contact-line svg { color: var(--gold); flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F3F0 100%);
  border-top: 1px solid rgba(201,162,77,.16);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
footer > .container { position: relative; z-index: 1; }
.footer-watermark {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 220px;
  opacity: .05;
  pointer-events: none;
  z-index: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-img {
  height: 34px; width: auto;
  margin-bottom: 1rem;
}
.footer-tagline { font-size: .8rem; color: var(--muted); max-width: 240px; line-height: 1.75; margin-bottom: 1.2rem; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%); color: #111;
  padding: .6rem 1.3rem; border-radius: 100px; font-size: .75rem; font-weight: 700;
  transition: transform .25s, box-shadow .25s;
}
.footer-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,162,77,.35); }
.footer-col h4 {
  font-size: .65rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem;
}
.footer-col a, .footer-col address, .footer-col p {
  font-size: .8rem; color: var(--muted);
  display: block; line-height: 1.85; font-style: normal;
  transition: color .25s;
}
.footer-col a:hover { color: var(--text); }
.footer-col .footer-contact-line {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8rem; color: var(--muted);
  line-height: 1.6; margin-bottom: .4rem;
}
.footer-col .footer-contact-line svg { flex-shrink: 0; margin-top: .15rem; color: var(--gold-dark); }
.footer-disclaimer {
  font-size: .72rem; color: var(--muted); line-height: 1.7;
  max-width: 680px; margin-bottom: 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(201,162,77,.16);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem;
  font-size: .7rem; color: rgba(23,23,23,.45); flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(23,23,23,.45); transition: color .25s; }
.footer-bottom a:hover { color: var(--gold-dark); }

/* ─── FLOATING CTA ───────────────────────── */
#float-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
#float-cta.vis { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  display: flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%); color: #111;
  padding: .85rem 1.6rem; border-radius: 100px;
  font-size: .76rem; font-weight: 700; letter-spacing: .06em;
  box-shadow: 0 4px 20px rgba(201,162,77,.4);
  transition: transform .2s, box-shadow .3s;
  white-space: nowrap;
}
.float-btn svg { flex-shrink: 0; }
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(201,162,77,.5); }

/* ─── MAGIC BENTO ─────────────────────────── */
.proc-card, .spec-card, .passo-card {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 400px;
  position: relative;
  overflow: hidden;
}

.mb-border-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2.5px;
  pointer-events: none;
  z-index: 10;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgb(201 162 77 / calc(var(--glow-intensity) * 1.0)) 0%,
    rgb(169 131 46 / calc(var(--glow-intensity) * 0.9)) 18%,
    rgb(243 231 192 / calc(var(--glow-intensity) * 0.55)) 42%,
    transparent 70%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.mb-particle {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(201, 162, 77, 1);
  box-shadow:
    0 0 3px  rgba(201, 162, 77, 1),
    0 0 8px  rgba(169, 131, 46, 0.7),
    0 0 15px rgba(169, 131, 46, 0.35);
  pointer-events: none; z-index: 6; will-change: transform, opacity;
}

.mb-spotlight {
  position: fixed; width: 800px; height: 800px; border-radius: 50%;
  pointer-events: none; z-index: 9500; opacity: 0;
  top: 0; left: 0; transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  background: radial-gradient(circle,
    rgba(201, 162, 77, 0.14) 0%,
    rgba(169, 131, 46, 0.09) 12%,
    rgba(169, 131, 46, 0.05) 24%,
    rgba(243, 231, 192, 0.03) 40%,
    transparent 65%
  );
  will-change: transform, opacity; transition: opacity 0.3s;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1200px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .sobre-inner, .desafio-inner { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-text h2, .desafio-text h2 { max-width: none; }
  .sobre-text p, .desafio-text > p { max-width: none; }
  .desafio-inner .sobre-photo { order: -1; }
}

@media(max-width:1024px){
  nav.header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { max-width: min(58vw, 520px); }
}

@media(max-width:768px){
  #header { padding: .75rem 0; }
  #header.scrolled { padding: .65rem 0; }
  .header-inner { gap: .65rem; padding: 0 1rem; }
  .header-inner > a:first-child { flex: 0 0 auto; }
  .logo-img { height: 38px; }
  #header.scrolled .logo-img { height: 34px; }
  #header .btn-primary { padding: .62rem 1rem; font-size: .62rem; letter-spacing: .08em; flex: 0 1 auto; }
  .hamburger { width: 24px; flex-shrink: 0; }

  .hero-sequence { height: 200vh; }
  .hero-content { bottom: clamp(4.5rem, 8vh, 7rem); left: 1.5rem; right: 1.5rem; max-width: 100%; }
  .hero-label { font-size: .58rem; letter-spacing: .2em; margin-bottom: .8rem; }
  .hero-h1 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); margin-bottom: .8rem; line-height: 1.14; }
  .hero-sub { display: none; }
  .hero-actions { flex-wrap: nowrap; gap: .5rem; }
  .hero-actions .btn { padding: .62rem .95rem; font-size: .62rem; letter-spacing: .07em; }

  .proc-grid, .spec-grid { grid-template-columns: 1fr 1fr; }
  .passos-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .cta-contact-info { flex-direction: column; gap: 1rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  #float-cta { bottom: 1rem; right: 1rem; }
  .section-pad { padding: clamp(3.5rem,7vw,5rem) 0; }
  h2 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
  .cta-final-inner { border-radius: 16px; }

  .quem-dot-grid {
    opacity: .62;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.58) 58%, rgba(0,0,0,.22) 100%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.58) 58%, rgba(0,0,0,.22) 100%);
  }
  .sobre-photo { width: min(100%, 300px); }
  .sobre-photo-deco { display: none; }
  .footer-watermark { width: 140px; opacity: .04; }
}

@media(max-width:600px){
  .proc-grid, .spec-grid { grid-template-columns: 1fr; }
}

@media(max-width:480px){
  #header .btn-primary { padding: .6rem .9rem; font-size: .58rem; }
  .logo-img { height: 34px; }
  .hero-actions .btn { padding: .58rem .72rem; font-size: .58rem; }
  .proc-card, .spec-card { padding: 1.5rem 1.3rem; }
}

/* Agenda Google */
.agenda-section {
  background: linear-gradient(145deg, #FAFAF7 0%, #fff 48%, #F3F3F0 100%);
  position: relative;
  overflow: hidden;
}
.agenda-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201,162,77,.08), transparent 34%, rgba(216,190,114,.1));
  pointer-events: none;
}
.agenda-section > .container { position: relative; z-index: 1; }
.agenda-head { max-width: 680px; margin-bottom: 2rem; }
.agenda-head h2 { color: var(--text); margin-bottom: .85rem; }
.agenda-intro { color: var(--muted); line-height: 1.8; }
.agenda-board {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, .65fr);
  gap: 1rem;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(201,162,77,.18);
  box-shadow: 0 22px 70px rgba(15,15,15,.08);
  padding: clamp(1.2rem, 3vw, 2rem);
  backdrop-filter: blur(10px);
}
.agenda-field { display: flex; flex-direction: column; gap: .55rem; }
.agenda-field label {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.agenda-select,
.agenda-date {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(201,162,77,.22);
  background: #fff;
  color: var(--text);
  font: 600 .92rem var(--sans);
  padding: 0 .9rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.agenda-select:focus,
.agenda-date:focus {
  border-color: rgba(201,162,77,.6);
  box-shadow: 0 0 0 4px rgba(201,162,77,.12);
}
.agenda-field--full { grid-column: 1 / -1; }
.agenda-modality { display: flex; gap: .65rem; flex-wrap: wrap; }
.agenda-mode {
  min-height: 44px;
  padding: 0 1.1rem;
  border: 1px solid rgba(201,162,77,.2);
  background: rgba(255,255,255,.8);
  color: var(--text);
  font: 700 .82rem var(--sans);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.agenda-mode:hover { transform: translateY(-1px); border-color: var(--gold); color: var(--gold-dark); }
.agenda-mode.is-active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #111;
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(201,162,77,.3);
}

.agenda-slots {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .65rem;
  margin-top: .25rem;
}
.agenda-slots.is-loading { opacity: .5; pointer-events: none; }
.agenda-empty {
  grid-column: 1 / -1;
  font-size: .82rem;
  color: var(--muted);
  padding: .6rem 0;
}
.agenda-slot {
  min-height: 44px;
  border: 1px solid rgba(201,162,77,.2);
  background: rgba(255,255,255,.8);
  color: var(--text);
  font: 700 .82rem var(--sans);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.agenda-slot:hover { transform: translateY(-1px); border-color: var(--gold); color: var(--gold-dark); }
.agenda-slot.is-active:hover { color: #111; }
.agenda-slot.is-active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #111;
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(201,162,77,.3);
}
.agenda-summary {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(201,162,77,.16);
  border-bottom: 1px solid rgba(201,162,77,.16);
  padding: 1rem 0;
}
.agenda-summary span {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.agenda-summary strong { color: var(--text); font-size: clamp(.95rem, 2vw, 1.15rem); text-align: right; }
.agenda-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}
.agenda-actions .btn { min-width: 190px; justify-content: center; }

@media(max-width:768px){
  .agenda-board { grid-template-columns: 1fr; }
  .agenda-slots { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .agenda-summary { align-items: flex-start; flex-direction: column; }
  .agenda-summary strong { text-align: left; }
  .agenda-actions { flex-direction: column; align-items: stretch; }
  .agenda-actions .btn { width: 100%; }
}

@media(max-width:420px){
  .agenda-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ─── AGENDA: POPUP DE CONFIRMAÇÃO ────────── */
.agenda-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,15,15,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.agenda-modal-overlay.open { opacity: 1; pointer-events: all; }

.agenda-modal {
  position: relative;
  width: min(440px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F4 100%);
  border: 1px solid rgba(201,162,77,.2);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(15,15,15,.28);
  padding: 2.2rem 2rem 2rem;
  transform: translateY(16px) scale(.98);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .3s;
}
.agenda-modal-overlay.open .agenda-modal { transform: translateY(0) scale(1); opacity: 1; }

.agenda-modal-logo { width: 38px; opacity: .85; margin-bottom: 1rem; }
.agenda-modal .label { margin-bottom: .5rem; }
.agenda-modal h3 {
  font-family: var(--heading); font-size: 1.3rem; font-weight: 600;
  color: var(--text); margin-bottom: 1.4rem; line-height: 1.3;
}

.agenda-modal-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(15,15,15,.05); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.agenda-modal-close:hover { background: rgba(15,15,15,.1); transform: rotate(90deg); }

.agenda-modal-summary {
  border-top: 1px solid rgba(201,162,77,.18);
  border-bottom: 1px solid rgba(201,162,77,.18);
  padding: .3rem 0;
  margin-bottom: 1.4rem;
}
.agenda-modal-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; padding: .55rem 0; font-size: .86rem;
  border-bottom: 1px dashed rgba(15,15,15,.08);
}
.agenda-modal-row:last-child { border-bottom: none; }
.agenda-modal-row span { color: var(--muted); flex-shrink: 0; }
.agenda-modal-row strong { color: var(--text); text-align: right; font-weight: 600; }

.agenda-modal-error {
  background: rgba(178,58,58,.08);
  border: 1px solid rgba(178,58,58,.25);
  color: #a33;
  border-radius: 10px;
  padding: .7rem .9rem;
  font-size: .82rem;
  margin-bottom: 1.2rem;
}

.agenda-modal-confirm { width: 100%; justify-content: center; }
.agenda-modal-confirm:disabled { opacity: .7; cursor: default; transform: none; }
.agenda-modal-cancel {
  display: block; width: 100%; text-align: center;
  margin-top: .8rem; font-size: .8rem; color: var(--muted);
  padding: .5rem; transition: color .2s;
}
.agenda-modal-cancel:hover { color: var(--text); }

/* ─── Reduced motion ─────────────────────── */
@media(prefers-reduced-motion:reduce){
  .marquee-content { animation: none; }
  .scroll-line::after { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
