/* =============================================================
   JUDSON FERREIRA — EquilibradaMENTE Landing Page
   Brand-true visual identity: deep blue + orange accent
   ============================================================= */

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette — straight from the design system */
  --brand-blue: #183052;
  --brand-blue-deep: #0e1f37;
  --brand-blue-night: #08152a;
  --brand-blue-mid: #234680;
  --brand-blue-soft: #4d77b8;
  --brand-blue-haze: #c7d4e6;

  --brand-orange: #f38a17;
  --brand-orange-hot: #ff9a2e;
  --brand-orange-deep: #c66a00;

  --brand-white: #ffffff;
  --brand-off-white: #f5f7fa;
  --brand-paper: #eef1f6;

  --border-on-dark: rgba(255, 255, 255, 0.12);
  --border-on-dark-strong: rgba(255, 255, 255, 0.22);
  --border-on-light: rgba(24, 48, 82, 0.12);
  --border-on-light-strong: rgba(24, 48, 82, 0.22);

  --shadow-md: 0 6px 16px rgba(8, 21, 42, 0.18);
  --shadow-lg: 0 18px 40px rgba(8, 21, 42, 0.28);
  --shadow-orange-glow: 0 8px 24px rgba(243, 138, 23, 0.35);

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --container: 1240px;
  --content: 780px;

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --dur: 320ms;
  --dur-fast: 180ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--brand-blue-night);
  color: var(--brand-white);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--brand-orange); color: var(--brand-white); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4 { margin: 0; line-height: 1.05; }
p { margin: 0; }

.display {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.96;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--brand-orange);
}
.eyebrow.no-line::before { display: none; }

.section-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-size: clamp(36px, 5vw, 64px);
}
.section-title em {
  font-style: normal;
  color: var(--brand-orange);
}
.section-lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.82;
  max-width: 620px;
}

/* =============================================================
   SECTIONS
   ============================================================= */
section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}
.bg-blue { background: var(--brand-blue); color: var(--brand-white); }
.bg-night { background: var(--brand-blue-night); color: var(--brand-white); }
.bg-deep { background: var(--brand-blue-deep); color: var(--brand-white); }
.bg-light { background: var(--brand-off-white); color: var(--brand-blue); }
.bg-paper { background: var(--brand-paper); color: var(--brand-blue); }

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-orange);
  color: var(--brand-white);
  box-shadow: var(--shadow-orange-glow);
}
.btn-primary:hover {
  background: var(--brand-orange-hot);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(243, 138, 23, 0.45);
}
.btn-primary:active {
  transform: translateY(0);
  background: var(--brand-orange-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--brand-white);
  border: 1.5px solid var(--border-on-dark-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--brand-orange); }
.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease);
  font-weight: 400;
  margin-left: 2px;
}
.btn-arrow:hover::after { transform: translateX(4px); }
.btn-block { width: 100%; }
.btn-large { padding: 22px 40px; font-size: 16px; }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(8, 21, 42, 0);
  transition: background var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 21, 42, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--border-on-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  color: var(--brand-white);
}
.header-logo img { height: 48px; width: auto; }
.header-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}
.header-nav a:hover { color: var(--brand-orange); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--brand-orange);
  color: var(--brand-white);
  border-radius: var(--radius-pill);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.header-cta:hover { background: var(--brand-orange-hot); transform: translateY(-1px); }

.header-progress {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  overflow: hidden;
}
.header-progress-fill {
  height: 100%;
  width: 0;
  background: var(--brand-orange);
  transition: width 80ms linear;
}

@media (max-width: 880px) {
  .header-nav { display: none; }
}
@media (max-width: 480px) {
  .header-cta { padding: 9px 16px; font-size: 11px; }
}

/* =============================================================
   HERO — split layout, portrait right, headline left
   ============================================================= */
.hero {
  position: relative;
  padding: 160px 0 110px;
  background: var(--brand-blue);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(35, 70, 128, 0.65) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(8, 21, 42, 0.95) 0%, transparent 60%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 80px,
      rgba(255, 255, 255, 0.018) 80px,
      rgba(255, 255, 255, 0.018) 81px
    );
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(243, 138, 23, 0.12);
  border: 1px solid rgba(243, 138, 23, 0.35);
  color: var(--brand-orange);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: fit-content;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(243, 138, 23, 0.2);
}
.hero h1 {
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--brand-white);
}
.hero h1 .pill {
  display: inline-block;
  padding: 0 16px;
  margin: 0 -2px;
  background: var(--brand-orange);
  color: var(--brand-white);
  border-radius: var(--radius-xs);
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero-checks > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-checks .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-white);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-blue-night);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 21, 42, 0) 30%, rgba(8, 21, 42, 0.5) 100%);
}
.hero-vsl {
  aspect-ratio: 16 / 9;
  background: #000;
}
.hero-vsl iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-vsl::after { display: none; }
.hero-vsl .hero-portrait-credentials {
  background: linear-gradient(180deg, rgba(8, 21, 42, 0) 0%, rgba(8, 21, 42, 0.85) 60%, rgba(8, 21, 42, 0.95) 100%);
  pointer-events: none;
}
.hero-portrait-credentials {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 24px 22px;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(8, 21, 42, 0) 0%, rgba(8, 21, 42, 0.7) 50%, rgba(8, 21, 42, 0.92) 100%);
  backdrop-filter: blur(0);
}
.hero-portrait-name {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.hero-portrait-name .accent-bar {
  width: 3px;
  height: 36px;
  background: var(--brand-orange);
  border-radius: 2px;
}
.hero-portrait-name h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand-white);
}
.hero-portrait-name p {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero { padding: 130px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-portrait { max-width: 480px; margin: 0 auto; }
}

/* =============================================================
   STAT STRIP
   ============================================================= */
.stat-strip {
  background: var(--brand-blue-night);
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
  padding: 36px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
  border-left: 2px solid var(--brand-orange);
  padding-left: 18px;
}
.stat-num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand-white);
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

/* =============================================================
   QUIZ
   ============================================================= */
.quiz {
  background: var(--brand-blue-deep);
  position: relative;
  overflow: hidden;
}
.quiz::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(243, 138, 23, 0.08), transparent 60%);
  pointer-events: none;
}
.quiz-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quiz-title {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 18px 0 14px;
}
.quiz-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 auto 36px;
}
.quiz-progress {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 36px;
}
.quiz-dot {
  width: 36px; height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.quiz-dot.active { background: var(--brand-orange); }
.quiz-dot.current { background: var(--brand-orange); transform: scaleY(1.5); }
.quiz-question {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 32px;
  min-height: 76px;
  display: grid;
  place-items: center;
  color: var(--brand-white);
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}
.quiz-option {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  color: var(--brand-white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  line-height: 1.4;
}
.quiz-option:hover {
  background: rgba(243, 138, 23, 0.1);
  border-color: var(--brand-orange);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .quiz-options { grid-template-columns: 1fr; }
}
.quiz-stage {
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.quiz-stage.fading {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.quiz-loading {
  display: grid;
  place-items: center;
  gap: 24px;
  padding: 60px 0;
}
.quiz-spinner {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(243, 138, 23, 0.18);
  border-top-color: var(--brand-orange);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.quiz-loading-text {
  font-size: 18px;
  color: var(--brand-white);
  opacity: 0.92;
  min-height: 28px;
  transition: opacity 0.3s var(--ease);
}
.quiz-loading-text.fading { opacity: 0; }
.quiz-loading-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
  opacity: 0.7;
}
.quiz-result-perfil {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 8px 0 18px;
}
.quiz-result-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 0 auto 32px;
}

/* =============================================================
   BANDA DIAGNOSTICA — italic quote band
   ============================================================= */
.banda {
  background: var(--brand-paper);
  color: var(--brand-blue);
  padding: 56px 0;
  border-top: 1px solid var(--border-on-light);
  border-bottom: 1px solid var(--border-on-light);
}
.banda-text {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  font-weight: 400;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  color: var(--brand-blue);
  letter-spacing: -0.01em;
}
.banda-text em {
  font-style: normal;
  color: var(--brand-orange);
  font-weight: 800;
}

/* =============================================================
   HISTORIA
   ============================================================= */
.historia-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.historia-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-blue-night);
}
.historia-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
}
.historia-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 21, 42, 0) 40%, rgba(8, 21, 42, 0.6) 100%);
}
.historia-photo-mark {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(8, 21, 42, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-white);
}
.historia-photo-mark::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-orange);
}
.historia-text { max-width: 640px; }
.historia-text .section-title { margin: 16px 0 28px; }
.historia-text p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 18px;
}
.historia-text p strong {
  color: var(--brand-white);
  font-weight: 800;
}
.historia-text p:first-of-type::first-letter {
  font-weight: 800;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--brand-orange);
}
.historia-credenciais {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-on-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.historia-credenciais span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 12px;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-sm);
}
@media (max-width: 900px) {
  .historia-inner { grid-template-columns: 1fr; gap: 40px; }
  .historia-photo { max-width: 480px; margin: 0 auto; aspect-ratio: 1 / 1; }
}

/* =============================================================
   OBJEÇÕES
   ============================================================= */
.objecoes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.objecao {
  padding: 32px 30px;
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--brand-orange);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.objecao:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.objecao-num {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-orange);
  letter-spacing: 0.04em;
}
.objecao h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--brand-blue);
  margin-bottom: 12px;
  padding-right: 40px;
}
.objecao p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(24, 48, 82, 0.78);
}
.objecoes-conclusao {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  font-weight: 400;
  max-width: 760px;
  margin: 56px 0 0;
  color: var(--brand-blue);
  letter-spacing: -0.01em;
}
.objecoes-conclusao em {
  font-style: normal;
  color: var(--brand-orange);
  font-weight: 800;
}
@media (max-width: 720px) {
  .objecoes-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   CAMADAS — 3 layers
   ============================================================= */
.camadas-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
.camadas-header-text { font-size: 17px; line-height: 1.6; opacity: 0.82; }
.camadas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.camada {
  position: relative;
  padding: 36px 32px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.camada:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange);
  background: rgba(243, 138, 23, 0.04);
}
.camada-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-on-dark);
}
.camada-num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-orange);
  letter-spacing: -0.04em;
}
.camada-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 6px 12px;
  background: rgba(243, 138, 23, 0.12);
  color: var(--brand-orange);
  border-radius: var(--radius-pill);
}
.camada h3 {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--brand-white);
}
.camada-subtitle {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand-orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.camada-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
}
.camada-meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-on-dark);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.camada-meta::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
}
@media (max-width: 900px) {
  .camadas-header { grid-template-columns: 1fr; gap: 24px; }
  .camadas-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   ACCORDION
   ============================================================= */
.accordion {
  max-width: var(--content);
  margin: 56px auto 0;
}
.accordion details {
  border-bottom: 1px solid var(--border-on-light);
  transition: background var(--dur) var(--ease);
}
.bg-night .accordion details, .bg-deep .accordion details, .bg-blue .accordion details {
  border-bottom-color: var(--border-on-dark);
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: var(--brand-orange);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details[open] summary { color: var(--brand-orange); }
.accordion-content {
  padding: 4px 0 30px;
  max-width: 660px;
}
.accordion-content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.86;
  margin-bottom: 12px;
}
.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.accordion-content li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.55;
}
.accordion-content li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  transform: translateY(-2px);
}
.accordion-modules-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-on-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.55;
}
.bg-light .accordion-modules-foot { border-top-color: var(--border-on-light); }
.accordion-week {
  display: block !important;
  grid-template-columns: none !important;
  margin-top: 18px;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--brand-orange);
}
.accordion-week::before { display: none !important; }
.accordion-week:first-child { margin-top: 0; }
.accordion-quote {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  padding-left: 16px;
  border-left: 2px solid var(--brand-orange);
  opacity: 0.85;
}

/* =============================================================
   DEPOIMENTOS
   ============================================================= */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0 64px;
}
.depoimento {
  padding: 28px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.depoimento:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
}
.depoimento-stars {
  color: var(--brand-orange);
  letter-spacing: 3px;
  font-size: 14px;
}
.depoimento-quote {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
}
.depoimento-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-on-dark);
}
.depoimento-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-mid), var(--brand-blue-soft));
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-white);
  flex-shrink: 0;
}
.depoimento-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--brand-white);
}
.depoimento-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.depoimento.fricao { border-left: 3px solid var(--brand-orange); }
@media (max-width: 900px) {
  .depoimentos-grid { grid-template-columns: 1fr; }
}

.citacao-judson {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
  margin-top: 24px;
  padding: 56px 56px;
  background: linear-gradient(135deg, rgba(243, 138, 23, 0.06) 0%, transparent 80%);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.citacao-judson::before {
  content: "“";
  position: absolute;
  top: -30px; right: 40px;
  font-size: 220px;
  line-height: 1;
  color: var(--brand-orange);
  opacity: 0.1;
  font-family: Georgia, serif;
}
.citacao-photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-blue-night);
}
.citacao-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.85);
}
.citacao-judson blockquote {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--brand-white);
  letter-spacing: -0.01em;
}
.citacao-judson blockquote em {
  font-style: normal;
  color: var(--brand-orange);
  font-weight: 800;
}
.citacao-judson cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 24px;
}
@media (max-width: 900px) {
  .citacao-judson {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
  }
  .citacao-photo { max-width: 280px; aspect-ratio: 1/1; }
}

/* =============================================================
   OFERTA / PRICING
   ============================================================= */
.oferta-wrap {
  max-width: 720px;
  margin: 56px auto 0;
}
.ancoragem {
  padding: 36px 36px 26px;
  background: var(--brand-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--border-on-light);
  border-bottom: none;
}
.ancoragem-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-on-light);
  font-size: 16px;
  gap: 16px;
}
.ancoragem-row:last-child { border-bottom: none; }
.ancoragem-row .name { color: var(--brand-blue); font-weight: 400; }
.ancoragem-row .price {
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.bonus-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
  font-weight: 800;
}
.bonus-divider::before, .bonus-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-on-light);
}
.bonus-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-on-light);
  font-size: 15px;
  gap: 16px;
}
.bonus-row .name {
  color: var(--brand-blue);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.bonus-row .name::before {
  content: "+";
  color: var(--brand-orange);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.bonus-row .price { color: rgba(24, 48, 82, 0.7); font-weight: 800; }

.ancoragem-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 0 4px;
  margin-top: 8px;
  border-top: 2px solid var(--brand-blue);
  font-weight: 800;
}
.ancoragem-total .name {
  color: var(--brand-blue);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.ancoragem-total .price {
  position: relative;
  font-size: 24px;
  color: rgba(24, 48, 82, 0.55);
  letter-spacing: -0.01em;
}
.ancoragem-total .price::after {
  content: "";
  position: absolute;
  left: -8px; right: -8px;
  top: 52%;
  height: 2px;
  background: #c0392b;
  transform: rotate(-6deg);
}

.oferta-card {
  padding: 44px 40px;
  background: var(--brand-blue);
  color: var(--brand-white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.oferta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(243, 138, 23, 0.18), transparent 65%);
}
.oferta-label {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 8px;
  font-weight: 800;
}
.oferta-preco {
  position: relative;
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 6px 0 6px;
}
.oferta-preco .cifrao {
  font-size: 0.42em;
  vertical-align: top;
  color: var(--brand-orange);
  margin-right: 8px;
  font-weight: 800;
  letter-spacing: 0;
}
.oferta-preco .reais {
  display: inline-block;
}
.oferta-comparativo {
  position: relative;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 auto 12px;
  max-width: 480px;
  line-height: 1.5;
}
.oferta-comparativo strong { color: var(--brand-orange); font-weight: 800; }
.oferta-parcela {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
  font-weight: 800;
}
.oferta-cta {
  position: relative;
  margin-top: 28px;
}
@media (max-width: 600px) {
  .ancoragem { padding: 28px 24px 20px; }
  .oferta-card { padding: 32px 24px; }
}

/* =============================================================
   GARANTIA
   ============================================================= */
.garantia-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.garantia-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: visible;
  background: transparent;
}
.garantia-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(8, 21, 42, 0.18);
  filter: contrast(1.02) saturate(1);
}
.garantia-seal {
  position: absolute;
  top: -28px; right: -28px;
  width: 140px; height: 140px;
  background: var(--brand-orange);
  color: var(--brand-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(243, 138, 23, 0.4);
  border: 4px solid var(--brand-off-white);
}
.garantia-seal-num {
  display: block;
  font-size: 38px;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.garantia-text-wrap { max-width: 580px; }
.garantia-text-wrap h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--brand-blue);
  margin: 18px 0 24px;
}
.garantia-text-wrap p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--brand-blue);
  margin-bottom: 16px;
}
.garantia-text-wrap p em {
  color: rgba(24, 48, 82, 0.7);
  font-style: italic;
  font-weight: 400;
}
.garantia-assinatura {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-on-light);
  display: flex;
  align-items: center;
  gap: 14px;
}
.garantia-assinatura-bar {
  width: 3px;
  height: 38px;
  background: var(--brand-orange);
  border-radius: 2px;
}
.garantia-assinatura strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand-blue);
}
.garantia-assinatura span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(24, 48, 82, 0.65);
}
@media (max-width: 900px) {
  .garantia-inner { grid-template-columns: 1fr; gap: 36px; }
  .garantia-photo { max-width: 380px; margin: 0 auto; }
  .garantia-seal { width: 110px; height: 110px; font-size: 10px; }
  .garantia-seal-num { font-size: 30px; }
}

/* =============================================================
   CTA FINAL / ULTIMA CHAMADA
   ============================================================= */
.cta-final {
  text-align: center;
  background: var(--brand-blue);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(243, 138, 23, 0.12), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(35, 70, 128, 0.5), transparent 60%);
}
.cta-final-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.cta-final h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 16px 0 24px;
}
.cta-final h2 em {
  font-style: normal;
  color: var(--brand-orange);
}
.cta-final-lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  max-width: 580px;
  margin: 0 auto 36px;
}
.cta-final-meta {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
}
.bump-preview {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 14px 24px;
  background: rgba(243, 138, 23, 0.08);
  border: 1px solid rgba(243, 138, 23, 0.3);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--brand-white);
  max-width: 560px;
  text-align: left;
  line-height: 1.4;
}
.bump-preview .bump-plus {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-orange);
  flex-shrink: 0;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-wrap { display: grid; grid-template-columns: 1fr; gap: 0; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--brand-blue-night);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 40px;
  border-top: 1px solid var(--border-on-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo img { height: 40px; }
.footer-logo-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-white);
  border-left: 2px solid var(--brand-orange);
  padding-left: 12px;
  line-height: 1.3;
}
.footer-logo-text small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.footer-disclaimer {
  font-size: 13px;
  line-height: 1.6;
  max-width: 480px;
  font-style: italic;
  opacity: 0.7;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--brand-orange); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-on-dark);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   POPUP MODAL
   ============================================================= */
.popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.popup.is-open { opacity: 1; visibility: visible; }
.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 21, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.popup-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 44px 36px 36px;
  background: var(--brand-white);
  color: var(--brand-blue);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.96) translateY(8px);
  transition: transform var(--dur) var(--ease);
  border-top: 4px solid var(--brand-orange);
}
.popup.is-open .popup-card { transform: scale(1) translateY(0); }
.popup-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
  font-weight: 800;
  margin-bottom: 12px;
}
.popup h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--brand-blue);
}
.popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  color: rgba(24, 48, 82, 0.6);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.popup-close:hover { background: rgba(24, 48, 82, 0.08); color: var(--brand-blue); }
.popup-form { display: grid; gap: 14px; }
.popup-form label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(24, 48, 82, 0.7);
}
.popup-form input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--brand-blue);
  background: var(--brand-off-white);
  border: 1.5px solid var(--border-on-light);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.popup-form input:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: var(--brand-white);
}
.popup-form input.error { border-color: #c0392b; }
.popup-trust {
  margin-top: 12px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(24, 48, 82, 0.65);
}
.popup-trust strong { color: var(--brand-blue); font-weight: 800; }

/* =============================================================
   STICKY MOBILE CTA
   ============================================================= */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 40;
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  display: none;
}
.sticky-cta.visible { transform: translateY(0); opacity: 1; }
@media (max-width: 880px) {
  .sticky-cta { display: block; }
}

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* =============================================================
   EDIT MODE — content-editable inline editing
   ============================================================= */
[data-editable] {
  outline: none;
  transition: box-shadow var(--dur-fast) var(--ease);
}
[data-editable][contenteditable="true"]:hover {
  box-shadow: 0 0 0 1px rgba(243, 138, 23, 0.3);
  border-radius: 4px;
}
[data-editable][contenteditable="true"]:focus {
  box-shadow: 0 0 0 2px var(--brand-orange);
  border-radius: 4px;
}

/* Tweaks panel positioning */
.tp-panel { font-family: "Montserrat", sans-serif !important; }

/* =============================================================
   AUTOR LIVROS — books authority section
   ============================================================= */
.autor-livros {
  position: relative;
  overflow: hidden;
}
.autor-livros::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(243, 138, 23, 0.08), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(35, 70, 128, 0.4), transparent 60%);
  pointer-events: none;
}
.autor-livros-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.autor-livros-text {
  max-width: 720px;
}
.autor-livros-lead {
  margin-top: 20px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
}
.autor-livros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.livro-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.livro-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 138, 23, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.livro-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}
.livro-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.livro-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-on-dark);
  padding-top: 22px;
}
.livro-titulo {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--brand-orange);
  line-height: 1.1;
}
.livro-subtitulo {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-white);
  line-height: 1.35;
}
.livro-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .autor-livros-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .livro-card {
    padding: 28px 22px;
    gap: 20px;
  }
  .livro-img-wrap {
    height: 280px;
  }
  .autor-livros-inner {
    gap: 40px;
  }
}

/* =============================================================
   MOBILE FIXES — apply only at narrow viewports
   ============================================================= */
@media (max-width: 900px) {
  /* HERO: video first, then text — use flex column-reverse for iOS Safari reliability */
  .hero-grid {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 32px !important;
  }
  .hero-grid .hero-portrait,
  .hero-grid .hero-left {
    width: 100%;
  }
  .hero-grid .hero-portrait {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  /* HEADER: shrink logo block so it doesn't collide with CTA */
  .header-logo img { height: 32px; }
  .header-logo span {
    font-size: 11px !important;
    padding-left: 6px !important;
  }
  .header-logo span small {
    font-size: 8px !important;
  }
  .header-cta {
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.06em;
    flex-shrink: 0;
  }
  .header-inner { gap: 10px; }

  /* HERO BUTTONS: smaller, centered, sized to content */
  .hero-actions {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: auto;
    max-width: 100%;
    padding: 14px 22px;
    font-size: 13px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .hero-actions .btn-large {
    padding: 16px 26px;
    font-size: 13px;
  }
  .hero-checks {
    justify-content: center;
    text-align: center;
  }
  .hero-left {
    text-align: center;
  }
  .hero-left .hero-tag {
    margin: 0 auto;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  /* CTA-FINAL & OFERTA buttons: prevent edge-to-edge stretch */
  .cta-final .btn-large,
  .oferta-cta .btn-large {
    padding: 16px 24px;
    font-size: 13px;
    white-space: normal;
    line-height: 1.25;
    max-width: 100%;
  }
}
