/* ===== VARIÁVEIS ===== */
:root {
  --navy: #16213a;
  --navy-deep: #0d1526;
  --gold: #c9a24b;
  --gold-light: #e6c976;
  --gold-soft: rgba(201, 162, 75, 0.12);
  --cream: #faf6ee;
  --cream-2: #f2ead9;
  --text: #22262f;
  --text-muted: #5a6070;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 2px rgba(13, 21, 38, 0.05);
  --shadow-sm: 0 2px 10px rgba(13, 21, 38, 0.06);
  --shadow: 0 10px 30px rgba(13, 21, 38, 0.10), 0 2px 8px rgba(13, 21, 38, 0.05);
  --shadow-lg: 0 24px 60px rgba(13, 21, 38, 0.16), 0 8px 20px rgba(13, 21, 38, 0.08);
  --shadow-gold: 0 10px 28px rgba(201, 162, 75, 0.38);
  --shadow-gold-lg: 0 16px 40px rgba(201, 162, 75, 0.45);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur: 280ms;
  --dur-slow: 450ms;

  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1100px circle at 12% -8%, rgba(201, 162, 75, .07), transparent 50%),
    radial-gradient(900px circle at 100% 15%, rgba(22, 33, 58, .045), transparent 50%),
    var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(22, 33, 58, 0.15);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(22, 33, 58, 0.28); background-clip: padding-box; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 780px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; font-weight: 700; }
h3 { font-size: 22px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 12.5px;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section-alt { background: var(--cream-2); }
.section-sub {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 50px;
}

/* ===== ANIMAÇÕES DE ENTRADA (scroll reveal) ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 100% { transform: translateX(100%); } }

/* ===== BOTÕES ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.97); transition-duration: var(--dur-fast); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: var(--shadow-gold-lg); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.7); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(22, 33, 58, 0.25);
  width: 100%;
}
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.btn-lg { padding: 18px 36px; font-size: 16.5px; }
.btn-header { display: none; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(22, 33, 58, 0.06);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 246, 238, 0.92);
  box-shadow: 0 8px 30px rgba(13, 21, 38, 0.08);
  border-bottom-color: rgba(22, 33, 58, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  transition: opacity var(--dur);
}
.logo:hover { opacity: .78; }
.logo-img { height: 42px; width: auto; display: block; transition: transform var(--dur) var(--ease); }
.logo:hover .logo-img { transform: scale(1.05); }
.logo-icon {
  color: var(--gold);
  font-size: 22px;
  display: inline-block;
  transition: transform var(--dur) var(--ease);
}
.logo:hover .logo-icon { transform: rotate(-12deg) scale(1.12); }
.logo-text strong { color: var(--gold); }

.nav-desktop { display: flex; gap: 32px; }
.nav-desktop a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 4px 0;
  transition: color var(--dur);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width var(--dur) var(--ease);
}
.nav-desktop a:hover { color: var(--navy); }
.nav-desktop a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--dur);
}
.menu-toggle:hover { background: rgba(22, 33, 58, 0.06); }
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.site-header:has(.nav-mobile.open) .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header:has(.nav-mobile.open) .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header:has(.nav-mobile.open) .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 24px;
  background: var(--cream);
  border-top: 1px solid rgba(22, 33, 58, 0.08);
  transition: max-height var(--dur-slow) var(--ease), opacity var(--dur) var(--ease), padding var(--dur-slow) var(--ease);
}
.nav-mobile.open { max-height: 480px; opacity: 1; padding: 16px 24px 24px; }
.nav-mobile a {
  padding: 12px 4px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(22, 33, 58, 0.06);
  transition: color var(--dur), padding-left var(--dur) var(--ease);
}
.nav-mobile a:hover { color: var(--gold); padding-left: 6px; }
.nav-mobile .btn { margin-top: 14px; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13, 21, 38, .88) 0%, rgba(22, 33, 58, .88) 55%, rgba(42, 61, 99, .82) 100%),
    url('../images/foto-hero-pai-filho.jpg');
  background-size: cover;
  background-position: center;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); top: -120px; right: -80px; }
.hero-orb-2 { width: 340px; height: 340px; background: radial-gradient(circle, #4a6b9e 0%, transparent 70%); bottom: -100px; left: -60px; animation-delay: -6s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -30px) scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.5) 0%, rgba(13, 21, 38, 0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.hero-media { display: flex; justify-content: center; }
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: heroMediaIn 1s var(--ease) .3s both, videoBreathe 9s ease-in-out 1.3s infinite;
}
@keyframes heroMediaIn { from { opacity: 0; transform: scale(.92) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes videoBreathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.035); } }

.hero-video, .hero-video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: rgba(255, 255, 255, 0.75);
}
.video-placeholder-icon { font-size: 34px; }
.hero-video-placeholder p { font-size: 14px; max-width: 220px; }

.badge-urgencia {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 75, 0.16);
  border: 1px solid rgba(201, 162, 75, 0.5);
  color: var(--gold-light);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeSlideDown .7s var(--ease) both;
}
.badge-urgencia::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(230, 201, 118, .55); }
  70% { box-shadow: 0 0 0 8px rgba(230, 201, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 201, 118, 0); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.5vw, 60px);
  max-width: 780px;
  margin-bottom: 22px;
  animation: fadeSlideUp .8s var(--ease) .1s both;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-light);
  animation: shimmerText 4s ease-in-out infinite;
}
@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-sub {
  max-width: 580px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  animation: fadeSlideUp .8s var(--ease) .22s both;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; animation: fadeSlideUp .8s var(--ease) .34s both; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  animation: fadeSlideUp .8s var(--ease) .46s both;
}
.trust-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(22, 33, 58, 0.05);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(201, 162, 75, 0.25); }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(201, 162, 75, .3);
  transition: transform var(--dur) var(--ease);
}
.step:hover .step-num { transform: scale(1.1) rotate(-4deg); }
.step h3 { margin-bottom: 8px; font-size: 19px; }
.step p { color: var(--text-muted); font-size: 15px; }

/* Blobs de profundidade (fundo com discreta textura, não totalmente branco) */
#como-funciona, #exemplos, #galeria, #depoimentos { overflow: hidden; }
#como-funciona::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 75, .10), transparent 70%);
  filter: blur(60px); pointer-events: none;
}
#exemplos::before {
  content: ''; position: absolute; bottom: -120px; left: -100px; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 33, 58, .06), transparent 70%);
  filter: blur(70px); pointer-events: none;
}
#galeria::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 520px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 75, .08), transparent 70%);
  filter: blur(70px); pointer-events: none;
}
#depoimentos::before {
  content: ''; position: absolute; top: -100px; right: -80px; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 33, 58, .05), transparent 70%);
  filter: blur(60px); pointer-events: none;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(22, 33, 58, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card--featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card--featured:hover { transform: scale(1.04) translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card--featured h3,
.price-card--featured .price { color: var(--white); }
.price-card--featured li { color: rgba(255, 255, 255, 0.85); }

.price-badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(201, 162, 75, .4);
}

.price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 22px;
}
.price span { font-size: 20px; }

.price-card ul {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.price-card li {
  padding: 8px 0;
  padding-left: 26px;
  position: relative;
  color: var(--text-muted);
  font-size: 14.5px;
}
.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}
.price-card--featured .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.price-card--featured .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.single-offer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.single-offer-card {
  max-width: 420px;
  width: 100%;
  transform: none;
  text-align: left;
}
.single-offer-card:hover { transform: translateY(-6px); }
.single-offer-card .price-badge {
  right: auto;
  left: 24px;
}
.single-offer-card .btn { width: 100%; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== EXAMPLES ===== */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.example-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(22, 33, 58, 0.05);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.example-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.example-cover {
  height: 200px;
  background: linear-gradient(135deg, var(--cream-2), #e3d6b8);
  position: relative;
  overflow: hidden;
}
.example-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; transition: transform .6s var(--ease); }
.example-card:hover .example-cover img { transform: scale(1.06); }
.example-info { padding: 22px; }
.example-info h4 { font-family: var(--font-head); color: var(--navy); margin-bottom: 6px; font-size: 18px; }
.example-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }
.example-info audio { width: 100%; }

/* ---- Exemplo em destaque (player + vídeo) ---- */
.example-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 44px;
}
.audio-player-card {
  height: 100%;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  color: var(--white);
}
.audio-player-art {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 22px rgba(201, 162, 75, .4);
  animation: spinSlow 12s linear infinite;
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.audio-player-tag {
  display: inline-block;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.audio-player-info h4 { font-family: var(--font-head); font-size: 22px; color: var(--white); margin-bottom: 6px; }
.audio-player-info p { color: rgba(255, 255, 255, .72); font-size: 14.5px; margin-bottom: 16px; }
.audio-player-info audio { width: 100%; border-radius: var(--radius-full); }

.example-feature-video { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.feature-video, .feature-video-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.feature-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--cream-2), #e3d6b8);
  color: rgba(22, 33, 58, .55);
}
.feature-video-placeholder p { font-size: 14px; max-width: 220px; }

.examples-more-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

/* ---- Galeria ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-2), #e3d6b8);
  color: rgba(22, 33, 58, .35);
  font-size: 26px;
}
.gallery-item figcaption {
  padding: 14px 16px;
  background: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(22, 33, 58, 0.05);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 15px; }
.testimonial-card p {
  font-size: 15.5px;
  color: var(--text);
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-2), #e3d6b8);
}
.testimonial-author strong { display: block; font-size: 14.5px; color: var(--navy); }
.testimonial-author span { font-size: 13px; color: var(--text-muted); }

/* ---- Carrossel de depoimentos ---- */
.testimonial-carousel { max-width: 720px; margin: 24px auto 0; }
.testimonial-track { position: relative; min-height: clamp(260px, 34vw, 300px); }
.testimonial-track .testimonial-card {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(.98);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s .5s;
}
.testimonial-track .testimonial-card--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.testimonial-track .stars { justify-content: center; display: flex; }
.testimonial-track .testimonial-author { justify-content: center; }

.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(22, 33, 58, .18);
  cursor: pointer;
  padding: 0;
  transition: background var(--dur), transform var(--dur) var(--ease);
}
.testimonial-dot:hover { background: rgba(22, 33, 58, .35); }
.testimonial-dot.active { background: var(--gold); transform: scale(1.4); }

/* ===== TRUST SECTION ===== */
.trust-section { padding: 70px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-card { padding: 24px; border-radius: var(--radius); transition: transform var(--dur) var(--ease); }
.trust-card:hover { transform: translateY(-4px); }
.trust-ico {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--gold-soft);
  border-radius: 50%;
  transition: transform var(--dur) var(--ease), background var(--dur);
}
.trust-card:hover .trust-ico { transform: scale(1.12) rotate(-6deg); background: rgba(201, 162, 75, .22); }
.trust-card h4 { font-size: 16px; margin-bottom: 6px; }
.trust-card p { font-size: 14px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { margin-top: 30px; }
.faq-item { border-bottom: 1px solid rgba(22, 33, 58, 0.1); transition: border-color var(--dur); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color var(--dur), padding-left var(--dur) var(--ease);
}
.faq-question:hover { color: var(--gold); padding-left: 6px; }
.faq-question span {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-slow) var(--ease), background var(--dur);
}
.faq-item.open .faq-question span { transform: rotate(135deg); background: rgba(201, 162, 75, .25); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}
.faq-answer p { padding: 4px 4px 22px; color: var(--text-muted); font-size: 15px; max-width: 620px; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  text-align: center;
  padding: clamp(64px, 9vw, 110px) 0;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 50% 0%, rgba(201, 162, 75, .18), transparent 60%);
  pointer-events: none;
}
.cta-final h2 { color: var(--white); position: relative; }
.cta-final p { color: rgba(255, 255, 255, 0.8); margin-bottom: 32px; font-size: 17px; position: relative; }
.cta-final .btn { position: relative; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.75); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo-text { color: var(--white); font-family: var(--font-head); font-size: 19px; }
.footer-brand .logo-icon { color: var(--gold); }
.footer-brand p { margin-top: 12px; font-size: 14px; max-width: 260px; }
.footer-links h5, .footer-contact h5 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links a, .footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14.5px;
  padding: 7px 0;
  transition: color var(--dur), transform var(--dur) var(--ease);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 13px; color: rgba(255, 255, 255, 0.5); }

/* ===== QUIZ MODAL ===== */
.quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 21, 38, 0.75);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 500;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.quiz-overlay.open { display: flex; opacity: 1; }

.quiz-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: quizPop .45s var(--ease);
}
@keyframes quizPop {
  from { opacity: 0; transform: scale(.94) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.quiz-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(22, 33, 58, 0.05);
  border: none;
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), color var(--dur), transform var(--dur);
}
.quiz-close:hover { background: var(--cream-2); color: var(--navy); transform: rotate(90deg); }

.quiz-progress { padding: 26px 30px 0; }
.quiz-progress-bar { height: 6px; background: var(--cream-2); border-radius: var(--radius-full); overflow: hidden; }
.quiz-progress-fill {
  height: 100%;
  width: 10%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  transition: width .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.quiz-progress-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .6px;
  text-transform: uppercase;
}

.quiz-body { padding: 22px 30px 8px; overflow-y: auto; }

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: quizStepIn .4s var(--ease); }
@keyframes quizStepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
.quiz-body[data-dir="back"] .quiz-step.active { animation-name: quizStepInBack; }
@keyframes quizStepInBack { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }

.quiz-question {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--navy);
  letter-spacing: -.01em;
}
.quiz-hint {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.quiz-hint--extra {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--cream-2);
  border-radius: var(--radius-sm);
}
.quiz-hint--extra.show { display: block; animation: fadeSlideUp .3s var(--ease); }

.quiz-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(22, 33, 58, 0.14);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--text);
  outline: none;
  background: var(--white);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.quiz-input:hover { border-color: rgba(22, 33, 58, 0.25); }
.quiz-input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.quiz-input--hidden { display: none; margin-top: 12px; }
.quiz-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.quiz-error {
  display: none;
  align-items: center;
  gap: 6px;
  color: #c0392b;
  font-size: 13.5px;
  margin-top: 8px;
  font-weight: 600;
}
.quiz-error.show { display: flex; animation: shakeX .4s var(--ease); }
.quiz-error::before { content: '⚠'; font-size: 12px; }
@keyframes shakeX { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }

.quiz-options { display: flex; flex-wrap: wrap; gap: 10px; }
.quiz-option {
  padding: 11px 18px;
  border: 1.5px solid rgba(22, 33, 58, 0.14);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur), background var(--dur),
    color var(--dur), box-shadow var(--dur);
}
.quiz-option:hover { border-color: var(--gold); transform: translateY(-1px); box-shadow: var(--shadow-xs); }
.quiz-option:active { transform: scale(.96); }
.quiz-option.selected {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
  animation: optionPop .35s var(--ease);
}
@keyframes optionPop { 0% { transform: scale(.9); } 50% { transform: scale(1.06); } 100% { transform: scale(1); } }

.quiz-summary { background: var(--cream-2); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; }
.quiz-summary-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(22, 33, 58, 0.07);
  animation: fadeSlideUp .4s var(--ease) both;
}
.quiz-summary-row:last-child { border-bottom: none; }
.quiz-summary-row .ico { flex-shrink: 0; width: 22px; text-align: center; }
.quiz-summary-row strong { color: var(--navy); }

.quiz-final-note {
  font-size: 14.5px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}
.quiz-confirm-btn { width: 100%; }

.pix-qr-wrap {
  display: flex;
  justify-content: center;
  padding: 20px;
  background: var(--cream-2);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.pix-qr-img {
  width: 220px;
  height: 220px;
  border-radius: var(--radius-sm);
  background: var(--white);
}
.pix-code-textarea {
  font-family: monospace;
  font-size: 12.5px;
  color: var(--text-muted);
  resize: none;
  margin-bottom: 10px;
}
.pix-status {
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 8px;
}
.pix-status.is-paid { background: rgba(52, 168, 83, .15); color: #1e7e34; }
.pix-status.is-error { background: rgba(192, 57, 43, .12); color: #c0392b; }

.success-icon {
  width: 72px;
  height: 72px;
  margin: 8px auto 20px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  animation: optionPop .5s var(--ease);
}
[data-step="success"] { text-align: center; }
[data-step="success"] .quiz-final-note { margin-top: 4px; }

.quiz-nav { display: flex; justify-content: space-between; gap: 12px; padding: 20px 30px 28px; }
.quiz-btn-back { flex: 0 0 auto; width: auto; }
.quiz-btn-back:disabled { opacity: 0; pointer-events: none; }
.quiz-btn-next { flex: 1; min-width: 0; }
.quiz-nav.hide-next .quiz-btn-next { display: none; }
.quiz-nav.hide-next .quiz-btn-back { flex: 1; }

.quiz-back-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  padding: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--dur), transform var(--dur);
}
.quiz-back-link:hover { color: var(--gold); transform: translateX(-3px); }

.btn-text {
  background: none;
  border: none;
  color: var(--text-muted);
  text-decoration: underline;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  transition: color var(--dur);
}
.btn-text:hover { color: var(--navy); transform: none; }

/* ---- Processamento ---- */
.processing-title { text-align: center; margin-bottom: 8px; }
.processing-bar {
  height: 8px;
  background: var(--cream-2);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 32px 0 18px;
}
.processing-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  border-radius: var(--radius-full);
  animation: gradientMove 1.6s linear infinite;
}
@keyframes gradientMove { 0% { background-position: 0% 0; } 100% { background-position: -200% 0; } }
.processing-message {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  min-height: 22px;
}
.processing-message.msg-pulse { animation: fadeSlideUp .35s var(--ease); }

/* ---- Upsell ---- */
.upsell-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  animation: fadeSlideDown .5s var(--ease);
}
.upsell-sub { font-size: 15px; line-height: 1.7; }
.upsell-benefits {
  list-style: none;
  margin: 22px 0;
  padding: 20px;
  background: var(--cream-2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.upsell-benefits li { padding: 7px 0; font-size: 15px; color: var(--text); transition: transform var(--dur); }
.upsell-benefits li:hover { transform: translateX(4px); }
.upsell-price { font-family: var(--font-head); font-size: 19px; color: var(--navy); margin-bottom: 22px; }
.upsell-price strong {
  color: var(--gold);
  font-size: 23px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.upsell-price--top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 162, 75, .35);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 15px;
  margin: 12px 0 18px;
}
.upsell-price--top strong { font-size: 17px; }

/* ---- Upload ---- */
.upload-dropzone {
  border: 2px dashed rgba(22, 33, 58, 0.22);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur), transform var(--dur);
  margin-bottom: 16px;
}
.upload-dropzone:hover { border-color: var(--gold); background: var(--gold-soft); }
.upload-dropzone.dragover {
  border-color: var(--gold);
  background: var(--gold-soft);
  transform: scale(1.015);
  border-style: solid;
}
.upload-ico { font-size: 32px; display: block; margin-bottom: 12px; transition: transform var(--dur) var(--ease); }
.upload-dropzone:hover .upload-ico { transform: translateY(-4px); }
.upload-dropzone p { font-size: 14.5px; color: var(--text-muted); margin: 2px 0; }
.upload-formats { font-size: 12.5px; color: var(--text-muted); opacity: .75; }

.upload-counter { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

.upload-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 10px;
  margin: 16px 0;
}
.upload-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-xs);
  animation: thumbIn .35s var(--ease);
}
@keyframes thumbIn { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
.upload-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur); }
.upload-thumb:hover img { transform: scale(1.08); }
.upload-thumb-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-muted);
}
.upload-thumb-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13, 21, 38, 0.7);
  color: var(--white);
  border: none;
  font-size: 11px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), transform var(--dur);
}
.upload-thumb-remove:hover { background: #c0392b; transform: scale(1.15); }

.upload-message-field { margin: 18px 0; }
.quiz-field-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.upload-progress { display: none; margin: 18px 0; }
.upload-progress.show { display: block; animation: fadeSlideUp .3s var(--ease); }
.upload-progress-bar { height: 8px; background: var(--cream-2); border-radius: var(--radius-full); overflow: hidden; }
.upload-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  transition: width .3s var(--ease);
  position: relative;
  overflow: hidden;
}
#uploadProgressLabel {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.quiz-progress-fill::after,
.upload-progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
  transform: translateX(-100%);
  animation: shimmer 2s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 861px) {
  .btn-header { display: inline-flex; }
}

@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .examples-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .example-feature { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; order: -1; }
  .price-card--featured:hover { transform: translateY(-6px); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: auto; padding: 56px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; }
  .hero-video-wrap { max-width: 340px; }
  .example-feature { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .steps, .examples-grid, .testimonials-grid, .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .quiz-overlay { padding: 0; align-items: flex-end; }
  .quiz-modal { max-width: 100%; max-height: 92vh; border-radius: 24px 24px 0 0; animation: sheetUp .45s var(--ease); }
  @keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
  .quiz-progress { padding: 20px 20px 0; }
  .quiz-body { padding: 18px 20px 8px; }
  .quiz-nav { padding: 16px 20px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
