/* =====================================================
   Os 5 Minutos de Ouro da Sua Voz - Aline Fontes
   Mobile-first. Identidade visual brandbook v1.0.
   ===================================================== */

:root {
  --navy: #0E1C3D;
  --navy-deep: #081229;
  --red: #C8272C;
  --gold: #C9A678;
  --gold-soft: rgba(201, 166, 120, 0.35);
  --off-white: #F8F6F2;
  --off-white-2: #EEEAE0;
  --text: #1E1E2C;
  --muted: #6B6B7E;
  --white: #FFFFFF;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 8px rgba(14, 28, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 28, 61, 0.10);
  --shadow-lg: 0 14px 40px rgba(14, 28, 61, 0.18);

  --section-padding-y: 48px;
  --container-max: 1200px;
}

/* ----------------- RESET ----------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em 0; }
h1, h2, h3, h4 { margin: 0 0 0.5em 0; font-weight: 500; }

/* ----------------- UTILITIES ----------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow { max-width: 880px; }

.gold { color: var(--gold); }
.red { color: var(--red); }
.light { color: var(--off-white); }

/* ----------------- SECTIONS ----------------- */
.section {
  padding: var(--section-padding-y) 0;
  position: relative;
}
.section-light { background: var(--off-white); color: var(--text); }
.section-navy  { background: var(--navy); color: var(--off-white); }
.section-red   { background: var(--red);  color: var(--off-white); }
.section-hidden { display: none !important; }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
  text-align: center;
  margin: 0 0 0.5em 0;
  color: var(--navy);
}
.section-navy .section-title,
.section-title.light { color: var(--off-white); }
.section-title.gold { color: var(--gold); }

.section-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5em auto;
  color: var(--muted);
}
.section-navy .section-sub { color: rgba(248, 246, 242, 0.75); }

.section-closing {
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  font-size: clamp(17px, 2.2vw, 20px);
  margin-top: 2em;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--navy);
}
.section-navy .section-closing { color: var(--off-white); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1em 0;
}
.eyebrow-center { text-align: center; }
.eyebrow-light { color: rgba(248, 246, 242, 0.7); }

/* ----------------- BUTTON ----------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 999px;
  text-align: center;
  letter-spacing: 0.01em;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--off-white);
  box-shadow: 0 6px 18px rgba(200, 39, 44, 0.30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(200, 39, 44, 0.40);
  background: #b3232a;
}
.btn-large { padding: 20px 36px; font-size: 18px; }

.cta-reinforce {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.section-navy .cta-reinforce { color: rgba(248, 246, 242, 0.65); }

/* ============================================== */
/* HERO                                           */
/* ============================================== */
.hero {
  padding: 88px 0 64px;
  background: radial-gradient(ellipse at top, #142347 0%, var(--navy) 60%);
  position: relative;
  overflow: hidden;
}
.hero-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  z-index: 5;
}
.hero-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
.hero-handle {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.hero-handle:hover { color: var(--off-white); }

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-content { max-width: 640px; }

.h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.15;
  color: var(--off-white);
  margin: 0 0 0.5em 0;
}
.h2-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: rgba(248, 246, 242, 0.85);
  margin: 0 0 1em 0;
}
.context-line {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold);
  margin: 0 0 1.5em 0;
}

.hero-price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 22px;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 20px;
}
.price-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(248, 246, 242, 0.7);
}
.price-old {
  font-family: var(--font-body);
  text-decoration: line-through;
  color: rgba(248, 246, 242, 0.45);
  font-size: 16px;
}
.price-old.big { font-size: 22px; }
.price-divider {
  font-size: 13px;
  color: rgba(248, 246, 242, 0.55);
  text-transform: lowercase;
}
.price-new {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.price-new.huge { font-size: clamp(56px, 10vw, 96px); }
.price-meta {
  display: block;
  font-size: 13px;
  color: rgba(248, 246, 242, 0.7);
  margin-top: 4px;
}

.hero-cta {
  display: block;
  width: 100%;
  max-width: 480px;
  white-space: nowrap;
}

.hero-photo { width: 100%; }

/* Mobile: foto da Aline no topo, menor, antes do texto */
.hero-grid { position: relative; }
.hero-photo {
  order: -1;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================== */
/* PLACEHOLDERS                                   */
/* ============================================== */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  color: var(--gold);
  text-align: center;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.placeholder span { display: block; font-size: 18px; }
.placeholder .placeholder-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(201, 166, 120, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.placeholder-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #142347 100%);
  width: 100%;
}
.placeholder-print {
  aspect-ratio: 4 / 5;
  background: var(--off-white-2);
  color: var(--navy);
}
.placeholder-print span { color: var(--navy); }
.placeholder-video {
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  gap: 12px;
}
.icon-play {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(201, 166, 120, 0.15);
  color: var(--gold);
}
.icon-play svg { width: 24px; height: 24px; margin-left: 3px; }
.placeholder-pdf {
  aspect-ratio: 4 / 5;
  background: var(--off-white-2);
  color: var(--navy);
}
.placeholder-pdf span { color: var(--navy); }

/* ============================================== */
/* 02. MECANISMO                                  */
/* ============================================== */
.lead-block {
  max-width: 720px;
  margin: 0 auto 2.5em auto;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}
.lead-block p { margin-bottom: 1em; }

.mini-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 2.5em;
}
.mini-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.mini-card-cold { border-top: 3px solid var(--red); }
.mini-card-warm { border-top: 3px solid var(--gold); }
.mini-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 0.6em;
}
.mini-card p { margin: 0; color: var(--text); }
.mini-card-list { display: flex; flex-direction: column; gap: 6px; }
.mini-card-list li { padding-left: 18px; position: relative; }
.mini-card-list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* ============================================== */
/* 03. IDENTIFICAÇÃO                              */
/* ============================================== */
.id-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 3em;
}
.id-text p {
  margin-bottom: 1.1em;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(248, 246, 242, 0.88);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.filter-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.filter-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 1em;
}
.filter-yes .filter-title { color: var(--gold); }
.filter-no  .filter-title { color: rgba(200, 39, 44, 0.85); }

.filter-list { display: flex; flex-direction: column; gap: 12px; }
.filter-list li {
  padding-left: 22px;
  position: relative;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(248, 246, 242, 0.85);
}
.filter-yes .filter-list li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.filter-no .filter-list li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 10px; height: 2px;
  background: rgba(200, 39, 44, 0.6);
}

/* ============================================== */
/* 04. CONTEÚDO                                   */
/* ============================================== */
.exercise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0 0 3em 0;
}
.exercise-card {
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-md);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
  position: relative;
}
.exercise-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.exercise-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 0.5em;
}
.exercise-card p { margin: 0; color: var(--text); font-size: 15.5px; line-height: 1.55; }

/* Six-numeral block (substitui os 6 cards de exercícios) */
.six-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3em auto;
  padding: 24px 20px;
}
.six-numeral {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(140px, 22vw, 220px);
  line-height: 1;
  color: var(--gold);
  display: block;
  margin: 0 0 8px 0;
}
.six-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--navy);
  margin: 0 0 18px 0;
}
.six-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto;
}

.inside-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background: var(--navy);
  color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.inside-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 1em;
}
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.55;
}
.check-list.big li { font-size: 17px; }
.icon-check, .icon-gold {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--gold);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-top: 2px;
}
.icon-check svg, .icon-gold svg { width: 100%; height: 100%; }

.inside-mockups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ============================================== */
/* 05. ACESSO                                     */
/* ============================================== */
.time-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 2.5em;
}
.time-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 166, 120, 0.25);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.time-badge {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.time-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--off-white);
  margin-bottom: 0.6em;
}
.time-card p {
  font-size: 15px;
  color: rgba(248, 246, 242, 0.75);
  line-height: 1.55;
  margin: 0;
}

.access-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 3em auto;
}
.access-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.55;
}
.access-list strong { color: var(--gold); font-weight: 600; }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  padding: 0;
  margin: 0;
}
.timeline-item {
  position: relative;
  padding-left: 32px;
  text-align: left;
}
.timeline-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 166, 120, 0.18);
}
.timeline-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-item p {
  margin: 0;
  font-size: 15px;
  color: rgba(248, 246, 242, 0.8);
  line-height: 1.55;
}

/* ============================================== */
/* 06. PRINTS                                     */
/* ============================================== */
.prints-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 1em;
}
.prints-grid figure {
  margin: 0;
  transition: transform 200ms ease;
}
.prints-grid figcaption {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

/* ============================================== */
/* CAMADA B                                       */
/* ============================================== */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 2.5em;
}
.choice-block {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.choice-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 1em;
}
.choice-title-red  { color: var(--red); }
.choice-title-gold { color: var(--gold); }
.choice-block ul { display: flex; flex-direction: column; gap: 12px; }
.choice-block li {
  font-size: 15.5px;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.choice-without li { color: rgba(248, 246, 242, 0.7); }
.choice-with li    { color: rgba(248, 246, 242, 0.95); }
.choice-block li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 8px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.pressure-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.6vw, 24px);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: rgba(248, 246, 242, 0.92);
  line-height: 1.45;
}

/* ============================================== */
/* 07. PREÇO                                      */
/* ============================================== */
.section-price { padding: 56px 0 64px; }

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 2.5em;
}
.price-mockups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.anchor-value {
  background: var(--off-white);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px 24px;
  max-width: 720px;
  margin: 0 auto 2em auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
}
.anchor-value s { color: var(--muted); opacity: 0.7; }
.anchor-value strong { font-family: var(--font-display); font-weight: 600; font-size: 22px; }

.price-box {
  background: linear-gradient(180deg, rgba(201, 166, 120, 0.06) 0%, rgba(201, 166, 120, 0.02) 100%);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5em auto;
}
.price-box-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.price-box .price-meta { margin-bottom: 20px; }
.price-box .btn { display: block; width: 100%; max-width: 420px; margin: 0 auto; }

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 16px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
}
.guarantee-circle {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
}
.guarantee-text {
  font-size: 13px;
  color: rgba(248, 246, 242, 0.75);
}

.why-27 {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.why-27 h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 0.6em;
}
.why-27 p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(248, 246, 242, 0.82);
}

/* ============================================== */
/* TAKE-AWAY                                      */
/* ============================================== */
.section-takeaway { padding: 56px 0; }
.takeaway-body { text-align: left; }
.section-takeaway .eyebrow { color: var(--red); }
.takeaway-q {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.2vw, 28px);
  line-height: 1.35;
  margin: 0 0 0.8em 0;
  color: var(--navy);
}
.takeaway-highlight {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 600;
  margin: 0.8em 0 0.3em 0;
  line-height: 1.2;
  color: var(--red);
}
.takeaway-close {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 22px);
  font-style: italic;
  margin: 0;
  color: var(--text);
}

/* ============================================== */
/* 08. VIDEOS                                     */
/* ============================================== */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 1em;
}
.videos-grid figure { margin: 0; max-width: 360px; margin-left: auto; margin-right: auto; }
.videos-grid figcaption {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* ============================================== */
/* 09. SOBRE                                      */
/* ============================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.about-text p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(248, 246, 242, 0.88);
  margin-bottom: 1.1em;
}
.about-text .check-list { margin-top: 1.5em; }
.about-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================== */
/* 10. GARANTIA                                   */
/* ============================================== */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.guarantee-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.seal-circle {
  width: 140px; height: 140px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
}
.seal-num { font-size: 48px; font-weight: 600; line-height: 1; }
.seal-label { font-size: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.seal-caption {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  margin: 0;
}

.guarantee-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.how-card {
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  margin-top: 1em;
}
.how-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 0.5em;
}
.how-card p { margin: 0; font-size: 15px; }

/* ============================================== */
/* 11. FAQ                                        */
/* ============================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto 2em auto;
}
.faq-item {
  border-bottom: 1px solid rgba(248, 246, 242, 0.18);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--off-white);
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }

.faq-arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--gold);
  transition: transform 250ms ease-out;
}
.faq-arrow svg { width: 100%; height: 100%; }
.faq-item[open] .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  padding: 0 8px 22px 8px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(248, 246, 242, 0.78);
  animation: faqFadeIn 250ms ease-out;
}
.faq-answer p { margin: 0; }

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-final-cta {
  text-align: center;
  margin-top: 2.5em;
}

/* ============================================== */
/* FOOTER                                         */
/* ============================================== */
.footer {
  background: var(--navy-deep);
  color: rgba(248, 246, 242, 0.55);
  padding: 48px 0;
  text-align: center;
  font-size: 13px;
}
.footer p { margin: 0 0 8px 0; }
.footer a { color: var(--gold); }
.footer-logo img {
  height: 44px;
  width: auto;
  margin: 0 auto 18px auto;
  opacity: 0.85;
}
.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.7;
}
.footer-links span { margin: 0 8px; opacity: 0.5; }

/* ============================================== */
/* ANIMATIONS                                     */
/* ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide-in direcional (PA.1) */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.pulse-once {
  animation: pulseOnce 1400ms ease-out 400ms 1;
}
.pulse-on-view.is-visible {
  animation: pulseOnce 1400ms ease-out 200ms 1;
}
@keyframes pulseOnce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes h1FadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .h1 { animation: h1FadeIn 600ms ease-out 200ms both; }

/* ============================================== */
/* RESPONSIVE. TABLET (768px+)                    */
/* ============================================== */
@media (min-width: 768px) {
  :root { --section-padding-y: 64px; }

  .container { padding: 0 40px; }

  .hero { padding: 104px 0 72px; }
  .hero-topbar { padding: 24px 40px; }
  .hero-logo img { height: 52px; }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
  .hero-content { flex: 1 1 60%; }
  .hero-photo   { order: 0; flex: 1 1 40%; max-width: 420px; margin: 0; }
  .hero-price-block { display: flex; width: fit-content; }
  .hero-cta { width: auto; display: inline-block; }

  .mini-cards { grid-template-columns: 1fr 1fr; gap: 24px; }

  .id-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .id-photo { max-width: 320px; align-self: center; }
  .filter-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .exercise-grid { grid-template-columns: 1fr 1fr; gap: 22px; }

  .inside-block {
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 40px;
  }

  .time-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
  }
  .timeline::before {
    content: "";
    position: absolute;
    top: 6px; left: 7%; right: 7%;
    height: 2px;
    background: rgba(201, 166, 120, 0.25);
  }
  .timeline.is-visible::before {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
    animation: drawLine 900ms ease-out;
  }
  @keyframes drawLine {
    from { transform: scaleX(0); transform-origin: left; }
    to   { transform: scaleX(1); transform-origin: left; }
  }
  .timeline-item { padding-left: 0; text-align: center; }
  .timeline-dot {
    left: 50%;
    top: -7px;
    transform: translateX(-50%);
  }
  .timeline-item h4, .timeline-item p { text-align: center; }
  .timeline-item h4 { margin-top: 18px; }

  .prints-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .prints-grid figure:hover { transform: translateY(-4px); }
  .videos-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }

  .choice-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
  }
  .choice-without { padding-right: 40px; }
  .choice-with    { padding-left: 40px; border-left: 1px solid var(--gold-soft); }

  .price-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .price-mockups { grid-template-columns: 1fr 1fr; }

  .about-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
  }

  .guarantee-grid {
    grid-template-columns: auto 1fr;
    gap: 48px;
  }
}

/* ============================================== */
/* RESPONSIVE. DESKTOP (1024px+)                  */
/* ============================================== */
@media (min-width: 1024px) {
  .exercise-grid { grid-template-columns: repeat(3, 1fr); }
  .exercise-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }

  /* Hover leve nos cards (PA.4) */
  .mini-card,
  .time-card,
  .filter-card {
    transition: transform 220ms ease, box-shadow 220ms ease;
  }
  .mini-card:hover,
  .time-card:hover,
  .filter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
}

/* ============================================== */
/* REDUCED MOTION                                 */
/* ============================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right { opacity: 1; transform: none; }
}
