/* ═══════════════════════════════════════════════════════════════
   BRANDPRO — Landing Page Styles
   Anderson Ernesto | Curso Express Carrosséis Virais 100% IA
   ═══════════════════════════════════════════════════════════════ */

/* ═══════ RESET & VARIABLES ═══════ */
:root {
  --bg-primary: #070711;
  --bg-secondary: #0c0c1d;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --accent: #C5A059;
  --accent-glow: rgba(197, 160, 89, 0.3);
  --accent-gradient: linear-gradient(135deg, #C5A059 0%, #E2C284 50%, #C5A059 100%);
  --gold: #C5A059;
  --whatsapp: #25d366;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.75);
  --text-muted: rgba(255,255,255,0.45);
  --border: rgba(255,255,255,0.1);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════ NEW UTILITIES ═══════ */
.check-list { list-style: none; padding: 0; max-width: 700px; margin: 32px auto; text-align: left; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 1.05rem; color: var(--text-secondary); }
.check-list li::before { content: '❌'; font-size: 1rem; flex-shrink: 0; margin-top: 4px; }
.check-list.green li::before { content: '✅'; }

.comparison-table-wrapper { overflow-x: auto; margin-top: 40px; border-radius: var(--radius); border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--bg-card); min-width: 600px; }
.comparison-table th, .comparison-table td { padding: 20px; border: 1px solid var(--border); text-align: left; font-size: 0.95rem; }
.comparison-table th { background: rgba(255,255,255,0.05); font-family: var(--font-heading); color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.comparison-table td:first-child { color: var(--text-muted); }
.comparison-table td:last-child { color: #fff; font-weight: 600; }

.timeline { position: relative; max-width: 800px; margin: 60px auto; padding-left: 40px; text-align: left; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--accent-gradient); opacity: 0.3; }
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item::after { content: ''; position: absolute; left: -31px; top: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-primary); z-index: 2; }
.timeline-week { font-family: var(--font-heading); font-size: 1.2rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.timeline-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.timeline-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

.impact-block { background: #000; padding: 100px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.impact-item { text-align: center; }
.impact-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.impact-item h3 { font-family: var(--font-heading); font-size: 1.4rem; color: #fff; margin-bottom: 12px; text-transform: uppercase; }
.impact-item p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; text-align: left; transition: var(--transition); position: relative; }
.price-card.featured { border-color: var(--accent); background: rgba(197,160,89,0.05); }
.price-card.featured::before { content: 'MAIS COMPLETO'; position: absolute; top: -12px; left: 20px; background: var(--accent); color: #000; font-size: 0.7rem; font-weight: 800; padding: 4px 12px; border-radius: 4px; }
.price-title { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin-bottom: 8px; text-transform: uppercase; }
.price-tagline { font-size: 1.8rem; font-family: var(--font-heading); color: var(--accent); margin-bottom: 20px; }
.price-features { list-style: none; padding: 0; margin-bottom: 30px; }
.price-features li { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 10px; display: flex; gap: 8px; }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: bold; }

.guarantees-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; }
.guarantee-item { display: flex; gap: 20px; text-align: left; }
.guarantee-icon { font-size: 2.5rem; flex-shrink: 0; }
.guarantee-item h3 { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; margin-bottom: 8px; text-transform: uppercase; }
.guarantee-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: var(--whatsapp); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); z-index: 1000; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1) translateY(-5px); }

.credentials-bar { display: flex; justify-content: center; align-items: center; gap: 40px; padding: 20px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; color: var(--text-muted); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.credentials-item { display: flex; align-items: center; gap: 10px; }
.credentials-item::after { content: '|'; margin-left: 40px; opacity: 0.2; }
.credentials-item:last-child::after { content: none; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ═══════ ANIMATIONS ═══════ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); } 50% { box-shadow: 0 0 0 12px transparent; } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }

.fade-in { opacity: 0; transform: translateY(30px); transition: var(--transition); transition-duration: 0.7s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════ COMMON ═══════ */
.gradient-text { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-badge { display: inline-block; padding: 8px 20px; border: 1px solid var(--border); border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 24px; }

.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 40px; background: var(--accent-gradient); background-size: 200% auto;
  color: #fff; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; border: none; border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); animation: pulse 2s infinite;
}
.btn-cta:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 12px 40px var(--accent-glow); }
.btn-cta-large { padding: 22px 52px; font-size: 1.25rem; border-radius: var(--radius-lg); }

h2 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.05; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 16px; }
.section-sub { color: var(--text-secondary); font-size: 1.1rem; max-width: 650px; margin: 0 auto 48px; }

/* ═══════ STICKY BAR ═══════ */
.sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(90deg, #cc0000 0%, #FF3D00 50%, #cc0000 100%);
  background-size: 200% auto; animation: shimmer 3s linear infinite;
  color: white; text-align: center; padding: 10px 16px; font-size: 0.9rem; font-weight: 500;
}
.sticky-bar s { color: rgba(255,255,255,0.6); }
.price-highlight { color: #FFD700; font-weight: 800; font-size: 1.05rem; }

/* ═══════ HERO ═══════ */
.hero { position: relative; padding: 120px 0 80px; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); opacity: 0.3; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.badge { display: inline-block; padding: 8px 20px; border: 1px solid var(--accent); border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; color: var(--accent); margin-bottom: 28px; animation: fadeInUp 0.6s ease; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(2.8rem, 6vw, 4.2rem); font-weight: 700; line-height: 0.95; letter-spacing: -2px; text-transform: uppercase; margin-bottom: 24px; animation: fadeInUp 0.8s ease 0.1s both; }
.hero-sub { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 36px; max-width: 520px; animation: fadeInUp 0.8s ease 0.2s both; }
.hero .btn-cta { animation: fadeInUp 0.8s ease 0.3s both; }
.trust-icons { display: flex; gap: 24px; margin-top: 20px; font-size: 0.82rem; color: var(--text-muted); animation: fadeInUp 0.8s ease 0.4s both; }
.hero-image { position: relative; animation: fadeInUp 1s ease 0.3s both; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: 0 20px 80px rgba(0,0,0,0.5); max-height: 550px; width: 100%; object-fit: cover; object-position: top; }
.hero-image-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); padding: 8px 16px; border-radius: 8px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; color: var(--accent); border: 1px solid rgba(255,61,0,0.3); }

/* ═══════ SOCIAL PROOF ═══════ */
.social-proof { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.proof-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--accent); display: block; }
.proof-label { font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* ═══════ PAIN ═══════ */
.pain-section { padding: 100px 0; text-align: center; }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.pain-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: left; transition: var(--transition); }
.pain-card:hover { background: var(--bg-card-hover); border-color: rgba(255,61,0,0.2); transform: translateY(-4px); }
.pain-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.pain-card h3 { font-family: var(--font-heading); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 8px; }
.pain-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ═══════ SOLUTION ═══════ */
.solution-section { padding: 100px 0; text-align: center; background: var(--bg-secondary); }
.modules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.module-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: left; transition: var(--transition); position: relative; overflow: hidden; }
.module-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255,61,0,0.1); }
.module-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: rgba(255,61,0,0.15); position: absolute; top: 12px; right: 20px; }
.module-card h3 { font-family: var(--font-heading); font-size: 1.2rem; text-transform: uppercase; margin-bottom: 12px; padding-right: 40px; }
.module-card p { color: var(--text-secondary); font-size: 0.92rem; }

/* ═══════ GALLERY SECTION ═══════ */
.gallery-section { padding: 100px 0; text-align: center; background: var(--bg-primary); }

.demo-features {
  display: flex; justify-content: center; gap: 32px; margin-top: 32px;
  font-size: 0.9rem; color: var(--text-secondary); flex-wrap: wrap;
}

/* ═══════ SLIDESHOW GRID ═══════ */
.sg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}

/* Wrapper */
.sg-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}
.sg-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.65);
}

/* Label topo */
.sg-label {
  padding: 11px 16px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: left;
  position: relative;
  z-index: 10;
}

/* Palco dos slides */
.sg-stage {
  position: relative;
  height: 500px;
  overflow: hidden;
}

/* Cada slide */
.sg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.sg-slide.active {
  opacity: 1;
  pointer-events: all;
}

/* Topbar do slide */
.sg-topbar {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.sg-topbar-dark { color: rgba(0,0,0,0.45) !important; }

/* Bottombar */
.sg-bottombar {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  letter-spacing: 0.5px;
  margin-top: auto;
  flex-shrink: 0;
}
.sg-bottombar-dark { color: rgba(0,0,0,0.35) !important; }

/* Body do slide */
.sg-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sg-center { justify-content: center; }
.sg-justify { justify-content: space-between; padding: 8px 0; }
.sg-top { justify-content: flex-start; padding-top: 4px; }
.sg-text-center { align-items: center; text-align: center; }

/* Botões nav */
.sg-prev, .sg-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.3rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.sg-prev { left: 10px; }
.sg-next { right: 10px; }
.sg-prev:hover, .sg-next:hover { background: rgba(0,0,0,0.85); border-color: rgba(255,255,255,0.5); }
.sg-prev-dark, .sg-next-dark {
  background: rgba(255,255,255,0.6);
  border-color: rgba(0,0,0,0.15);
  color: #111;
}
.sg-prev-dark:hover, .sg-next-dark:hover { background: rgba(255,255,255,0.9); }

/* Dots */
.sg-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 20;
}
.sg-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.25s;
}
.sg-dot.active {
  background: rgba(255,255,255,0.9);
  transform: scale(1.4);
}
.sg-dots-dark .sg-dot { background: rgba(0,0,0,0.2); }
.sg-dots-dark .sg-dot.active { background: rgba(0,0,0,0.7); }

/* ══════════════════════════════════════
   1. PSICÓLOGA — #0a0a0a · Amber
   ══════════════════════════════════════ */
.psi-rule { width: 30px; height: 2px; background: #c8714a; margin-bottom: 10px; }
.psi-overtitle { font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(200,168,130,0.55); margin-bottom: 8px; }
.psi-headline { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.psi-headline em { font-style: italic; color: #c8714a; }
.psi-lead { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
.psi-section-tag { font-size: 0.6rem; letter-spacing: 2px; color: #c8714a; text-transform: uppercase; margin-bottom: 16px; }
.psi-body { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 12px; }
.psi-divider { height: 1px; background: rgba(200,168,130,0.15); margin: 12px 0; }
.psi-blockquote { display: flex; gap: 10px; font-family: var(--font-serif); font-style: italic; font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.55; }
.psi-bq-bar { width: 3px; background: #c8714a; border-radius: 2px; flex-shrink: 0; align-self: stretch; }
.psi-big-quote { font-family: var(--font-serif); font-size: 3.5rem; color: rgba(200,113,74,0.3); line-height: 0.7; margin-bottom: 12px; }
.psi-quote-text { font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 10px; }
.psi-quote-em { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.psi-quote-em strong { color: rgba(255,255,255,0.85); }
.psi-quote-attr { font-size: 0.62rem; color: rgba(200,168,130,0.5); margin-top: 14px; }
.psi-cta-over { font-size: 0.65rem; letter-spacing: 3px; color: rgba(255,255,255,0.55); margin-bottom: 6px; text-transform: uppercase; }
.psi-cta-main { font-family: var(--font-serif); font-size: 2.8rem; color: #fff; line-height: 1; font-weight: 700; margin-bottom: 24px; }
.psi-cta-main em { font-style: italic; }
.psi-cta-pill { display: inline-block; background: rgba(0,0,0,0.35); color: rgba(255,255,255,0.85); font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px; padding: 9px 20px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.25); }

/* ══════════════════════════════════════
   2. UROLOGISTA — Navy #0f172a · Blue
   ══════════════════════════════════════ */
.uro-number-hero { display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
.uro-big-num { font-family: var(--font-heading); font-size: 5.5rem; font-weight: 700; color: #60a5fa; line-height: 1; }
.uro-big-num sup { font-size: 2.2rem; vertical-align: super; }
.uro-num-label { font-size: 0.65rem; color: rgba(96,165,250,0.5); letter-spacing: 2px; text-transform: uppercase; }
.uro-claim { font-size: 0.95rem; color: rgba(255,255,255,0.8); text-align: center; line-height: 1.55; margin-bottom: 8px; }
.uro-accent { color: #60a5fa; font-weight: 700; }
.uro-sub-claim { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.5; }
.uro-list-title { font-family: var(--font-heading); font-size: 0.85rem; color: #60a5fa; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.uro-list { list-style: none; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.uro-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.8); }
.s-red { color: #f87171; font-size: 0.7rem; }
.s-yellow { color: #fbbf24; font-size: 0.7rem; }
.uro-list-footer { font-size: 0.7rem; color: rgba(255,255,255,0.3); font-style: italic; margin-top: auto; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
.uro-stat-num { font-family: var(--font-heading); font-size: 5rem; font-weight: 700; color: #60a5fa; line-height: 1; margin-bottom: 10px; }
.uro-stat-unit { font-size: 1.5rem; opacity: 0.6; margin-left: 4px; }
.uro-stat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 16px; max-width: 200px; }
.uro-stat-divider { height: 1px; background: rgba(96,165,250,0.2); margin: 12px auto; width: 60%; }
.uro-stat-contrast { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.uro-stat-contrast strong { color: #fff; }
.uro-cta-over { font-size: 0.65rem; letter-spacing: 3px; color: rgba(255,255,255,0.5); margin-bottom: 6px; text-transform: uppercase; }
.uro-cta-main { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: #fff; line-height: 0.95; margin-bottom: 16px; }
.uro-cta-arrow { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.uro-cta-handle { font-size: 0.62rem; color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════
   3. FISIOTERAPEUTA — Bege #f5f0e8
   ══════════════════════════════════════ */
.fis-deco-line { width: 40px; height: 2px; background: #a07c5a; margin-bottom: 12px; }
.fis-overtitle { font-size: 0.58rem; letter-spacing: 3px; color: #b09878; text-transform: uppercase; margin-bottom: 8px; }
.fis-headline { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: #1a1a1a; line-height: 1.2; margin-bottom: 14px; }
.fis-headline em { font-style: italic; color: #7c6a52; }
.fis-lead { font-size: 0.8rem; color: #8a7a6a; line-height: 1.55; }
.fis-section-tag { font-size: 0.6rem; letter-spacing: 2px; color: #b09878; text-transform: uppercase; margin-bottom: 14px; }
.fis-body { font-size: 0.9rem; color: #444; line-height: 1.65; margin-bottom: 12px; }
.fis-body-bold { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.fis-big-mark { font-family: var(--font-serif); font-size: 4rem; color: rgba(160,124,90,0.3); line-height: 0.7; margin-bottom: 10px; }
.fis-quote { font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: #444; line-height: 1.6; margin-bottom: 8px; }
.fis-quote-em { font-size: 0.9rem; font-weight: 700; color: #1a1a1a; line-height: 1.5; margin-bottom: 12px; }
.fis-attr { font-size: 0.62rem; color: #b09878; }
.fis-cta-over { font-size: 0.65rem; letter-spacing: 3px; color: rgba(255,255,255,0.45); margin-bottom: 6px; text-transform: uppercase; }
.fis-cta-main { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: #f5f0e8; line-height: 0.95; margin-bottom: 12px; }
.fis-cta-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.5; }
.fis-cta-pill { display: inline-block; background: #f5f0e8; color: #1a1a1a; font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; padding: 9px 22px; border-radius: 30px; margin-bottom: 12px; }
.fis-cta-handle { font-size: 0.62rem; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════
   4. GINECOLOGISTA — Preto/Branco/Vermelho
   ══════════════════════════════════════ */
.gin-big-num { font-family: var(--font-heading); font-size: 7.5rem; font-weight: 700; color: #dc2626; line-height: 0.85; }
.gin-word { font-family: var(--font-serif); font-style: italic; font-size: 2rem; color: #fff; line-height: 1; margin-bottom: 18px; }
.gin-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); max-width: 220px; margin: 0 auto; line-height: 1.55; }
.gin-list { display: flex; flex-direction: column; gap: 18px; }
.gin-item { display: flex; align-items: center; gap: 12px; }
.gin-n { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: #dc2626; line-height: 1; min-width: 36px; }
.gin-t { font-size: 0.88rem; color: #1a1a1a; line-height: 1.3; font-weight: 500; }
.gin-quote-main { font-family: var(--font-serif); font-style: italic; font-size: 1.4rem; color: #fff; line-height: 1.3; margin-bottom: 20px; }
.gin-quote-answer { font-family: var(--font-heading); font-size: 1.15rem; text-transform: uppercase; color: rgba(255,255,255,0.85); line-height: 1.3; }
.gin-red { color: #dc2626; }
.gin-cta-over { font-size: 0.65rem; letter-spacing: 3px; color: rgba(255,255,255,0.55); margin-bottom: 6px; text-transform: uppercase; }
.gin-cta-main { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 0.95; margin-bottom: 14px; }
.gin-cta-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.gin-cta-pill { display: inline-block; background: rgba(0,0,0,0.35); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; padding: 9px 22px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.25); }

/* ══════════════════════════════════════
   5. ONCOLOGISTA — Branco Minimal / Vermelho
   ══════════════════════════════════════ */
.onc-line-top { height: 2px; background: #dc2626; margin-bottom: 18px; }
.onc-title { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: #111; line-height: 1.2; margin-bottom: 10px; }
.onc-sub { font-size: 0.82rem; color: #666; line-height: 1.5; }
.onc-line-short { height: 2px; background: #dc2626; width: 40%; margin-top: 18px; }
.onc-body-lg { font-size: 1.05rem; font-weight: 700; color: #111; line-height: 1.4; margin-bottom: 12px; }
.onc-body-red { font-size: 0.92rem; color: #dc2626; line-height: 1.55; margin-bottom: 12px; }
.onc-body-red em { font-style: italic; font-weight: 600; }
.onc-body-sm { font-size: 0.82rem; color: #555; line-height: 1.65; }
.onc-body-sm em { color: #dc2626; font-style: italic; }
.onc-impact-quote { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.onc-punch { font-family: var(--font-heading); font-size: 1.4rem; color: #fff; text-transform: uppercase; line-height: 1.25; }
.onc-cta-over { font-size: 0.65rem; letter-spacing: 3px; color: rgba(255,255,255,0.5); margin-bottom: 6px; text-transform: uppercase; }
.onc-cta-main { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: #fff; line-height: 0.95; margin-bottom: 14px; }
.onc-cta-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; line-height: 1.5; }
.onc-cta-handle { font-size: 0.6rem; color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════
   6. PEDIATRA — Terracota Soft #2d1b0e
   ══════════════════════════════════════ */
.ped-pill { display: inline-block; background: rgba(201,149,108,0.2); color: #c9956c; border: 1px solid rgba(201,149,108,0.4); border-radius: 30px; padding: 5px 14px; font-size: 0.58rem; letter-spacing: 2px; margin-bottom: 18px; text-transform: uppercase; }
.ped-headline { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.ped-accent { color: #c9956c; font-style: italic; }
.ped-sub { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
.ped-eyebrow { font-size: 0.58rem; letter-spacing: 2px; color: #c9956c; text-transform: uppercase; margin-bottom: 14px; }
.ped-story { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ped-story p { font-size: 0.95rem; color: #5a3a1a; line-height: 1.45; font-weight: 500; }
.ped-caption { font-size: 0.82rem; color: #7a5230; border-top: 1px solid #e8ddd0; padding-top: 10px; margin-top: 8px; line-height: 1.5; }
.ped-caption strong { color: #2d1b0e; }
.ped-quote-big { font-family: var(--font-serif); font-size: 4rem; color: rgba(201,149,108,0.3); line-height: 0.7; margin-bottom: 12px; }
.ped-quote { font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: #444; line-height: 1.6; margin-bottom: 8px; }
.ped-quote-em { font-size: 1rem; font-weight: 700; color: #1a1a1a; line-height: 1.35; margin-bottom: 6px; }
.ped-quote-close { font-size: 0.85rem; font-style: italic; color: #555; margin-bottom: 12px; }
.ped-attr { font-size: 0.62rem; color: #c9956c; }
.ped-cta-over { font-size: 0.65rem; letter-spacing: 3px; color: rgba(255,255,255,0.55); margin-bottom: 6px; text-transform: uppercase; }
.ped-cta-main { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 14px; }
.ped-cta-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); line-height: 1.5; margin-bottom: 16px; max-width: 200px; margin-left: auto; margin-right: auto; }
.ped-cta-handle { font-size: 0.6rem; color: rgba(255,255,255,0.4); }

/* ═══════ ABOUT ═══════ */
.about-section { padding: 100px 0; background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.about-image img { border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.4); max-height: 480px; width: 100%; object-fit: cover; object-position: top; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.75; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; border-top: 1px solid var(--border); padding-top: 28px; text-align: center; }
.about-stats div { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.about-stats strong { display: block; font-family: var(--font-heading); font-size: 1.4rem; color: var(--accent); margin-bottom: 4px; }

/* ═══════ BONUS ═══════ */
.bonus-section { padding: 100px 0; text-align: center; }
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.bonus-grid-4 { grid-template-columns: repeat(2, 1fr); }
.bonus-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; text-align: left; transition: var(--transition); }
.bonus-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.bonus-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; color: var(--accent); margin-bottom: 10px; }
.bonus-card h3 { font-family: var(--font-heading); font-size: 1.1rem; text-transform: uppercase; margin-bottom: 10px; }
.bonus-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.bonus-value { font-size: 0.78rem; color: var(--accent); font-weight: 600; }

/* ═══════ PRICING ═══════ */
.pricing-section { padding: 100px 0; text-align: center; background: var(--bg-secondary); }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; max-width: 560px; margin: 48px auto 0; }
.pricing-label { font-size: 0.75rem; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; }
.pricing-old { font-size: 1rem; color: var(--text-muted); margin-bottom: 8px; }
.pricing-main { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 8px; }
.pricing-currency { font-family: var(--font-heading); font-size: 2rem; color: var(--text-secondary); }
.pricing-value { font-family: var(--font-heading); font-size: 6rem; font-weight: 700; color: var(--accent); line-height: 1; }
.pricing-period { font-size: 1rem; color: var(--text-secondary); }
.pricing-installment { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 32px; }
.pricing-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 20px; font-size: 0.8rem; color: var(--text-muted); }

/* ═══════ GUARANTEE ═══════ */
.guarantee-section { padding: 80px 0; background: var(--bg-primary); }
.guarantee-grid { display: flex; align-items: center; gap: 40px; }
.guarantee-badge { font-size: 4rem; flex-shrink: 0; }
.guarantee-text h2 { margin-bottom: 12px; }
.guarantee-text p { color: var(--text-secondary); line-height: 1.7; }

/* ═══════ FAQ ═══════ */
.faq-section { padding: 80px 0; text-align: center; background: var(--bg-secondary); }
.faq-list { max-width: 700px; margin: 48px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; background: transparent; border: none; color: var(--text-primary); font-family: var(--font-body); font-size: 1rem; cursor: pointer; font-weight: 500; text-align: left; gap: 16px; }
.faq-arrow { color: var(--accent); font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { color: var(--text-secondary); padding-bottom: 20px; line-height: 1.7; font-size: 0.95rem; }

/* ═══════ FINAL CTA ═══════ */
.final-cta { padding: 100px 0; text-align: center; background: linear-gradient(180deg, var(--bg-primary) 0%, #0f0a0a 100%); }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 36px; }

/* ═══════ FOOTER ═══════ */
.footer { padding: 60px 0 40px; text-align: center; border-top: 1px solid var(--border); }
.footer-brand { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; letter-spacing: 3px; margin-bottom: 20px; color: var(--text-secondary); }
.footer-disclaimer { color: var(--text-muted); font-size: 0.8rem; max-width: 600px; margin: 0 auto 16px; line-height: 1.5; }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 24px; }
.footer-links a { color: var(--text-muted); font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .sg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-text { order: 1; }
  .hero-image { order: 0; }
  .hero-image img { max-height: 320px; margin: 0 auto; }
  .trust-icons { justify-content: center; flex-wrap: wrap; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .sg-grid { grid-template-columns: 1fr; }
  .sg-stage { height: 440px; }
  .about-grid { grid-template-columns: 1fr; }
  .bonus-grid, .bonus-grid-4 { grid-template-columns: 1fr; }
  .demo-features { flex-wrap: wrap; gap: 16px; }
  .guarantee-grid { flex-direction: column; text-align: center; }
  .pricing-value { font-size: 4.5rem; }
  .pricing-trust { gap: 12px; }
  .btn-cta-large { padding: 18px 32px; font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  h2 { font-size: 1.8rem; }
  .hero h1 { font-size: 2.4rem; }
  .sg-stage { height: 400px; }
}


.demo-features {
  display: flex; justify-content: center; gap: 32px; margin-top: 32px;
  font-size: 0.9rem; color: var(--text-secondary); flex-wrap: wrap;
}

/* ═══════ SLIDESHOW GALLERY ═══════ */
.slideshow-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}

/* Wrapper de cada especialidade */
.sp-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.sp-wrap:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.6); }

.sp-label {
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: left;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 10;
}

.ec-editorial .sp-label { color: #c8a882; border-bottom: 1px solid #1f1f1f; background: #0a0a0a; }
.ec-data .sp-label { color: #60a5fa; border-bottom: 1px solid #1f2937; background: #111827; }
.ec-clean .sp-label { color: #7c6a52; border-bottom: 1px solid #e0d8cc; background: #ede7da; }
.ec-bold .sp-label { color: #dc2626; border-bottom: 1px solid #e5e5e5; background: #fff; }
.ec-minimal .sp-label { color: #dc2626; border-bottom: 1px solid #e5e5e5; background: #fafafa; }
.ec-soft .sp-label { color: #7a5230; border-bottom: 1px solid #e8ddd0; background: #f5ede3; }

/* O carrossel em si — posiciona os slides */
.sp-carousel {
  position: relative;
  height: 480px;
  overflow: hidden;
}

/* Cada slide — ocupa 100% */
.sp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.sp-slide.active {
  opacity: 1;
  pointer-events: all;
}

.sp-slide-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
  position: relative;
}

/* Overlays */
.sp-overlay { position: absolute; inset: 0; pointer-events: none; }
.dark-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%); }
.dark-overlay-heavy { background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.75) 100%); }
.light-overlay { background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.4) 100%); }
.light-overlay-soft { background: rgba(255,255,255,0.08); }

/* Topbar */
.sp-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}
.sp-topbar.faint { color: rgba(255,255,255,0.35); }
.sp-topbar.dark { color: rgba(0,0,0,0.5); }
.sp-handle { font-weight: 600; }
.sp-date { font-size: 0.55rem; }
.sp-page { font-size: 0.55rem; opacity: 0.7; }

/* Bottombar */
.sp-bottombar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.sp-bottombar.faint { color: rgba(255,255,255,0.3); }
.sp-bottombar.dark { color: rgba(0,0,0,0.4); }

/* Content positioning */
.sp-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.pos-bottom { justify-content: flex-end; }
.pos-center { justify-content: center; }
.pos-top-mid { justify-content: flex-start; padding-top: 8px; }
.text-center { align-items: center; text-align: center; }

/* Slide 1: Cover elements */
.sp-rule { width: 28px; height: 2px; margin-bottom: 8px; }
.sp-rule.amber { background: #c8714a; }
.sp-overtitle { font-size: 0.6rem; letter-spacing: 3px; color: rgba(255,255,255,0.55); text-transform: uppercase; margin-bottom: 6px; }
.sp-headline { font-size: 1.35rem; line-height: 1.15; color: #fff; margin-bottom: 10px; }
.sp-headline.serif { font-family: var(--font-serif); font-weight: 700; }
.sp-headline em { font-style: italic; color: #c8714a; }
.sp-lead { font-size: 0.75rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Slide 2: Body text */
.sp-tag-line { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.amber-text { color: #c8714a; }
.blue-text { color: #60a5fa; }
.red-text { color: #dc2626; }
.terracotta-text { color: #c9956c; }
.dark-text { color: #1a1a1a !important; }
.bold { font-weight: 700; }

.sp-body-text { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.sp-body-text.dark-text { color: #444 !important; }
.sp-body-text.mt { margin-top: 8px; }
.sp-body-bold { font-size: 1rem; font-weight: 700; color: #fff; margin: 8px 0; }

.sp-blockquote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-top: auto;
  padding-top: 12px;
}
.sp-bq-bar { width: 3px; min-height: 100%; border-radius: 2px; flex-shrink: 0; margin-top: 2px; }
.sp-bq-bar.amber { background: #c8714a; }

/* Slide 3: Quote */
.sp-big-quote { font-family: var(--font-serif); font-size: 3.5rem; color: rgba(200,113,74,0.4); line-height: 0.7; display: block; margin-bottom: 8px; }
.sp-quote-text { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.8); }
.serif-italic { font-family: var(--font-serif); font-style: italic; }

/* Slide 4: CTA */
.sp-cta-over { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.sp-cta-main { font-family: var(--font-serif); font-size: 2.5rem; color: #fff; line-height: 1.0; font-weight: 700; margin-bottom: 20px; }
.sp-cta-main.serif-italic { font-style: italic; }
.sp-cta-pill {
  display: inline-block;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.3);
}
.sp-cta-pill.beige-pill { background: #f5f0e8; color: #1a1a1a; border: none; }
.sp-cta-pill.dark-pill { background: rgba(0,0,0,0.35); color: #fff; }
.sp-cta-handle { font-size: 0.6rem; color: rgba(255,255,255,0.4); margin-top: 12px; }
.muted-light { color: rgba(255,255,255,0.45) !important; font-size: 0.6rem !important; }

/* Data-driven specific */
.sp-data-hero { display: flex; flex-direction: column; align-items: center; margin-bottom: 16px; }
.sp-data-number { font-family: var(--font-heading); font-size: 5rem; font-weight: 700; line-height: 1; }
.sp-data-number sup { font-size: 2rem; }
.sp-data-label { font-size: 0.65rem; color: rgba(255,255,255,0.45); letter-spacing: 1px; display: block; text-align: center; margin-top: 4px; }
.sp-data-claim { font-size: 0.9rem; color: rgba(255,255,255,0.85); text-align: center; line-height: 1.5; margin-bottom: 6px; }
.sp-data-sub { font-size: 0.7rem; color: rgba(255,255,255,0.45); text-align: center; line-height: 1.4; }

.sp-list-title { font-family: var(--font-heading); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.sp-symptom-list { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.sp-symptom-list li { font-size: 0.9rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 10px; }
.s-red { color: #f87171; font-size: 0.7rem; }
.s-yellow { color: #fbbf24; font-size: 0.7rem; }
.sp-list-footer { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-top: auto; font-style: italic; }

.sp-stat-number { font-family: var(--font-heading); font-size: 5rem; font-weight: 700; line-height: 1; }
.sp-stat-unit { font-size: 1.5rem; margin-left: 4px; opacity: 0.6; }
.sp-stat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; margin: 12px 0; max-width: 200px; }
.sp-divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 12px 0; }
.sp-divider.blue { border-color: rgba(96,165,250,0.3); }
.sp-stat-contrast { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.sp-stat-contrast strong { color: #fff; }

.sp-cta-bold-main { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 20px; }
.sp-cta-arrow { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.sp-cta-handle { font-size: 0.6rem; color: rgba(255,255,255,0.4); }

/* Clean/Bege specific */
.sp-split-slide {
  display: grid;
  grid-template-rows: 55% 45%;
  padding: 0;
}
.sp-split-photo { background-size: cover; background-position: center; }
.sp-split-text {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-split-text.beige-bg { background: #f5f0e8; }
.sp-handle-sm { font-size: 0.6rem; color: #9c865e; letter-spacing: 1px; margin-bottom: 6px; }
.sp-split-title { font-size: 1.05rem; color: #1a1a1a; line-height: 1.25; }
.sp-split-title.serif { font-family: var(--font-serif); font-weight: 700; }
.sp-split-title em { color: #7c6a52; }
.sp-split-sub { font-size: 0.7rem; color: #888; margin-top: 6px; }
.sp-page-sm { font-size: 0.55rem; color: #aaa; margin-top: auto; }

.sp-cta-gratis { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: #f5f0e8; line-height: 1; margin-bottom: 12px; }
.sp-cta-sub-sm { font-size: 0.75rem; line-height: 1.5; margin-bottom: 16px; }
.sp-cta-sub-sm.light70 { color: rgba(255,255,255,0.7); }
.muted { color: rgba(255,255,255,0.45); }

.sp-quote-big-mark { font-family: var(--font-serif); font-size: 4rem; line-height: 0.7; margin-bottom: 8px; }
.sp-quote-text { font-size: 0.9rem; line-height: 1.6; margin-bottom: 8px; }
.sp-quote-em { font-size: 1rem; font-weight: 700; line-height: 1.4; }
.sp-quote-em.dark-text { color: #1a1a1a !important; }
.sp-quote-attr { font-size: 0.65rem; margin-top: 12px; }

/* Bold / Ginecologista */
.sp-bold-number { font-family: var(--font-heading); font-size: 7rem; font-weight: 700; line-height: 0.9; }
.sp-bold-word { font-family: var(--font-serif); font-style: italic; font-size: 2.2rem; color: #fff; line-height: 1; margin-bottom: 16px; }
.sp-bold-sub { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; max-width: 200px; }

.sp-bold-list { display: flex; flex-direction: column; gap: 16px; }
.sp-bold-item { display: flex; align-items: center; gap: 12px; }
.sp-bnum { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; min-width: 40px; }
.sp-bold-item span:last-child { font-size: 0.85rem; line-height: 1.3; }

.sp-bq-big { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.3; font-style: italic; margin-bottom: 16px; }
.sp-bq-answer { font-family: var(--font-heading); font-size: 1.2rem; text-transform: uppercase; color: #fff; line-height: 1.3; margin-top: auto; }

.sp-cta-big-bold { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 16px; }
.light70 { color: rgba(255,255,255,0.7); }

/* Minimal / Oncologista */
.sp-red-line { height: 2px; background: #dc2626; }
.sp-red-line.top-line { width: 100%; margin-bottom: 16px; }
.sp-red-line.short-line { width: 40%; margin-top: 16px; }
.sp-mnl-title { font-size: 1.6rem; line-height: 1.2; margin-bottom: 10px; }
.sp-mnl-sub { font-size: 0.8rem; color: #666; line-height: 1.5; }

.sp-mnl-lg { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.sp-mnl-accent { font-size: 0.95rem; margin-bottom: 12px; }
.sp-mnl-sm { font-size: 0.8rem; color: #555; line-height: 1.6; }

.sp-impact-quote { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 12px; }
.sp-impact-punch { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; text-transform: uppercase; line-height: 1.3; }

/* Soft / Pediatra */
.sp-soft-pill { display: inline-block; background: rgba(201,149,108,0.25); color: #c9956c; border: 1px solid rgba(201,149,108,0.5); border-radius: 30px; padding: 5px 14px; font-size: 0.6rem; letter-spacing: 1.5px; margin-bottom: 16px; }
.sp-sft-title { font-size: 1.6rem; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.sp-sft-title.serif { font-family: var(--font-serif); font-weight: 700; }
.sp-sft-accent { color: #c9956c; font-style: italic; }
.sp-sft-sub { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

.sp-story-eyebrow { font-size: 0.6rem; letter-spacing: 2px; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 12px; }
.sp-story-block { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sp-story-block p { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.4; }
.sp-story-caption { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: auto; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 10px; line-height: 1.4; }

.sp-sft-quote-big { font-family: var(--font-serif); font-size: 5rem; line-height: 0.7; }
.sp-sft-quote { font-size: 0.95rem; line-height: 1.6; margin-bottom: 8px; }
.sp-sft-quote-em { font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin: 6px 0; }
.sp-sft-quote-close { font-size: 0.85rem; font-style: italic; margin-top: 4px; }

.sp-cta-sft-main { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 16px; }

/* Navigation buttons */
.sp-btn {
  position: absolute;
  top: calc(50% + 20px);
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}
.sp-btn:hover { background: rgba(0,0,0,0.8); border-color: rgba(255,255,255,0.4); }
.sp-prev { left: 10px; }
.sp-next { right: 10px; }
.sp-btn.dark-btn { background: rgba(255,255,255,0.55); color: #1a1a1a; border-color: rgba(0,0,0,0.15); }
.sp-btn.dark-btn:hover { background: rgba(255,255,255,0.85); }

/* Dots */
.sp-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 20;
}
.sp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.2s ease;
}
.sp-dot.active { background: #fff; transform: scale(1.3); }
.ec-clean .sp-dot, .ec-minimal .sp-dot { background: rgba(0,0,0,0.25); }
.ec-clean .sp-dot.active, .ec-minimal .sp-dot.active { background: #333; }





/* ═══════ 1. EDITORIAL DRAMÁTICO — Psicóloga ═══════ */
.ec-editorial { background: #0a0a0a; border: 1px solid #1f1f1f; }
.ec-editorial:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.7); border-color: #333; }
.ec-editorial .ec-badge { color: #c8a882; border-bottom: 1px solid #1f1f1f; }

.edt-topbar { display: flex; justify-content: space-between; font-size: 0.38rem; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; margin-bottom: 8px; }
.edt-topbar.faint { opacity: 0.5; }

.edt-cover { background: #0c0c0c; justify-content: space-between; }
.edt-rule { width: 24px; height: 2px; background: #c8714a; margin-bottom: 6px; }
.edt-overtitle { font-size: 0.38rem; letter-spacing: 2px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 4px; }
.edt-headline { font-family: var(--font-serif); font-size: 0.75rem; line-height: 1.15; color: #fff; font-weight: 700; margin-bottom: 6px; flex: 1; }
.edt-headline em { color: #c8714a; font-style: italic; }
.edt-lead { font-size: 0.42rem; color: rgba(255,255,255,0.55); line-height: 1.4; margin-top: auto; }
.edt-bottombar { display: flex; justify-content: space-between; font-size: 0.38rem; color: rgba(255,255,255,0.3); margin-top: auto; }
.edt-bottombar.faint { opacity: 0.4; }

.edt-body-slide { background: #111; }
.edt-section-tag { font-size: 0.38rem; letter-spacing: 1.5px; color: #c8714a; text-transform: uppercase; margin-bottom: 6px; }
.edt-text { font-size: 0.5rem; color: rgba(255,255,255,0.75); line-height: 1.5; margin-bottom: 8px; }
.edt-text strong { color: #fff; }
.edt-blockquote { font-family: var(--font-serif); font-style: italic; font-size: 0.52rem; color: rgba(255,255,255,0.65); border-left: 2px solid #c8714a; padding-left: 6px; line-height: 1.4; margin-top: auto; }

.edt-quote { background: #0a0a0a; justify-content: center; }
.edt-big-quote { font-family: var(--font-serif); font-size: 2.5rem; color: rgba(200,113,74,0.25); line-height: 0.8; display: block; margin-bottom: 4px; }
.edt-quote-text { font-family: var(--font-serif); font-size: 0.5rem; color: rgba(255,255,255,0.7); line-height: 1.55; font-style: italic; }
.edt-quote-text strong { color: #fff; font-style: normal; }

.edt-cta-slide { background: #c8714a; justify-content: space-between; }
.edt-cta-over { font-size: 0.38rem; letter-spacing: 2px; color: rgba(255,255,255,0.7); text-transform: uppercase; margin-bottom: 4px; }
.edt-cta-main { font-family: var(--font-serif); font-size: 1rem; color: #fff; line-height: 1.0; font-weight: 700; flex: 1; }
.edt-cta-main em { font-style: italic; }
.edt-cta-pill { font-size: 0.38rem; background: rgba(0,0,0,0.3); color: #fff; padding: 3px 6px; border-radius: 3px; letter-spacing: 1px; text-align: center; margin-top: auto; }

/* ═══════ 2. DATA-DRIVEN — Urologista ═══════ */
.ec-data { background: #111827; border: 1px solid #1f2937; }
.ec-data:hover { box-shadow: 0 16px 50px rgba(59,130,246,0.15); border-color: #3b82f6; }
.ec-data .ec-badge { color: #60a5fa; border-bottom: 1px solid #1f2937; }

.dat-topbar { display: flex; justify-content: space-between; font-size: 0.38rem; color: rgba(255,255,255,0.35); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }

.dat-cover { background: #0f172a; }
.dat-number-hero { text-align: center; margin: 6px 0; }
.dat-big { font-family: var(--font-heading); font-size: 2.2rem; color: #60a5fa; font-weight: 700; line-height: 1; }
.dat-big sup { font-size: 0.9rem; color: #93c5fd; }
.dat-label { font-size: 0.38rem; color: rgba(255,255,255,0.4); display: block; text-align: center; letter-spacing: 1px; margin-top: 2px; }
.dat-claim { font-size: 0.48rem; color: rgba(255,255,255,0.8); line-height: 1.4; margin-top: 6px; }
.dat-accent { color: #60a5fa; font-weight: 700; }
.dat-claim-sub { font-size: 0.4rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.dat-dots { display: flex; gap: 3px; margin-top: auto; justify-content: center; }
.dat-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.dat-dot.active { background: #60a5fa; }

.dat-list { background: #1e293b; }
.dat-list-title { font-family: var(--font-heading); font-size: 0.55rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; line-height: 1.2; }
.dat-items { list-style: none; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.dat-items li { font-size: 0.42rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 4px; }
.dat-bullet { font-size: 0.5rem; }
.dat-bullet.red { color: #f87171; }
.dat-bullet.yellow { color: #fbbf24; }
.dat-list-footer { font-size: 0.38rem; color: rgba(255,255,255,0.35); margin-top: auto; font-style: italic; }

.dat-stat { background: #0f172a; justify-content: center; text-align: center; }
.dat-stat-number { font-family: var(--font-heading); font-size: 2rem; color: #60a5fa; line-height: 1; }
.dat-stat-number span { font-size: 0.7rem; color: rgba(96,165,250,0.6); margin-left: 2px; }
.dat-stat-desc { font-size: 0.45rem; color: rgba(255,255,255,0.6); line-height: 1.4; margin: 6px 0; }
.dat-rule { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 8px 0; }
.dat-stat-contrast { font-size: 0.48rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.dat-stat-contrast strong { color: #fff; }

.dat-cta { background: #3b82f6; text-align: center; justify-content: center; }
.dat-cta-over { font-size: 0.38rem; color: rgba(255,255,255,0.7); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.dat-cta-main { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; line-height: 1; font-weight: 700; margin-bottom: 8px; }
.dat-cta-arrow { font-size: 0.55rem; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.dat-cta-handle { font-size: 0.38rem; color: rgba(255,255,255,0.5); }

/* ═══════ 3. CLEAN BEGE — Fisioterapeuta ═══════ */
.ec-clean { background: #f5f0e8; border: 1px solid #e0d8cc; }
.ec-clean:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.15); border-color: #c4b89a; }
.ec-clean .ec-badge { color: #7c6a52; border-bottom: 1px solid #e0d8cc; background: #ede7da; }

.cln-cover { background: #1a1a1a; padding: 0; min-height: 160px; }
.cln-photo { background: #111; height: 75px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #222; }
.cln-photo-inner { text-align: center; }
.cln-photo-icon { font-size: 1.4rem; display: block; opacity: 0.4; }
.cln-photo-label { font-size: 0.35rem; color: rgba(255,255,255,0.3); letter-spacing: 1px; }
.cln-caption { padding: 7px 9px; background: #f5f0e8; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.cln-handle { font-size: 0.35rem; color: #9c865e; letter-spacing: 1px; margin-bottom: 3px; }
.cln-title { font-family: var(--font-serif); font-size: 0.6rem; color: #1a1a1a; line-height: 1.3; font-weight: 600; }
.cln-title em { color: #7c6a52; }
.cln-subtitle { font-size: 0.35rem; color: #888; margin-top: 3px; }

.cln-text { background: #f5f0e8; }
.cln-eyebrow { font-size: 0.38rem; letter-spacing: 1.5px; color: #9c865e; text-transform: uppercase; margin-bottom: 6px; }
.cln-body { font-size: 0.48rem; color: #444; line-height: 1.5; }
.cln-body-bold { font-size: 0.52rem; font-weight: 700; color: #1a1a1a; margin: 4px 0; }
.cln-body.mt { margin-top: 6px; }
.cln-pager { display: flex; gap: 3px; margin-top: auto; }
.cln-dot { width: 6px; height: 3px; border-radius: 2px; background: #d5c9b6; }
.cln-dot.filled { background: #9c865e; }

.cln-quote { background: #ede7da; justify-content: center; }
.cln-q-big { font-family: var(--font-serif); font-size: 2.5rem; color: rgba(156,134,94,0.2); line-height: 0.6; }
.cln-q-text { font-family: var(--font-serif); font-size: 0.46rem; color: #555; line-height: 1.5; font-style: italic; margin-bottom: 5px; }
.cln-q-em { font-size: 0.5rem; font-weight: 700; color: #1a1a1a; font-family: var(--font-serif); line-height: 1.4; }
.cln-q-author { font-size: 0.35rem; color: #9c865e; margin-top: 6px; }

.cln-cta { background: #1a1a1a; text-align: center; justify-content: center; }
.cln-cta-over { font-size: 0.38rem; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.cln-cta-main { font-family: var(--font-heading); font-size: 1.6rem; color: #f5f0e8; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.cln-cta-sub { font-size: 0.38rem; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.cln-cta-btn { font-size: 0.42rem; background: #f5f0e8; color: #1a1a1a; padding: 4px 8px; border-radius: 3px; font-weight: 700; letter-spacing: 1px; display: inline-block; }
.cln-cta-handle { font-size: 0.35rem; color: rgba(255,255,255,0.25); margin-top: 6px; }

/* ═══════ 4. BOLD CONTRASTE — Ginecologista ═══════ */
.ec-bold { background: #fff; border: 1px solid #ddd; }
.ec-bold:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.2); border-color: #dc2626; }
.ec-bold .ec-badge { color: #dc2626; border-bottom: 1px solid #f0f0f0; background: #fff; }

.bld-cover { background: #111; }
.bld-over { font-size: 0.38rem; letter-spacing: 3px; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 4px; }
.bld-number { font-family: var(--font-heading); font-size: 4rem; color: #dc2626; line-height: 0.9; font-weight: 700; }
.bld-word { font-family: var(--font-serif); font-size: 1rem; color: #fff; font-style: italic; line-height: 1; margin-bottom: 8px; }
.bld-sub { font-size: 0.42rem; color: rgba(255,255,255,0.55); line-height: 1.4; margin-top: auto; }
.bld-foot { font-size: 0.35rem; color: rgba(255,255,255,0.25); margin-top: 6px; }
.bld-foot.faded { color: rgba(255,255,255,0.15); }

.bld-list { background: #fff; }
.bld-list-title { font-family: var(--font-heading); font-size: 0.52rem; color: #111; text-transform: uppercase; line-height: 1.2; margin-bottom: 8px; }
.bld-items { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.bld-item { display: flex; align-items: baseline; gap: 5px; }
.bld-num { font-family: var(--font-heading); font-size: 1rem; color: #dc2626; font-weight: 700; line-height: 1; min-width: 18px; }
.bld-text { font-size: 0.42rem; color: #444; line-height: 1.3; }

.bld-quote { background: #111; }
.bld-q-main { font-family: var(--font-serif); font-size: 0.58rem; color: rgba(255,255,255,0.8); line-height: 1.4; font-style: italic; margin-bottom: 8px; }
.bld-q-answer { font-family: var(--font-heading); font-size: 0.62rem; color: #fff; text-transform: uppercase; line-height: 1.3; margin-top: auto; }
.bld-accent { color: #dc2626; }

.bld-cta { background: #dc2626; text-align: center; justify-content: center; }
.bld-cta-over { font-size: 0.38rem; color: rgba(255,255,255,0.7); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2px; }
.bld-cta-main { font-family: var(--font-heading); font-size: 0.95rem; color: #fff; font-weight: 700; text-transform: uppercase; line-height: 1; margin-bottom: 4px; }
.bld-cta-sub { font-size: 0.4rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.bld-cta-btn { font-size: 0.42rem; background: rgba(0,0,0,0.3); color: #fff; padding: 4px 8px; border-radius: 3px; letter-spacing: 1px; display: inline-block; }

/* ═══════ 5. MINIMAL URGÊNCIA — Oncologista ═══════ */
.ec-minimal { background: #fafafa; border: 1px solid #e5e5e5; }
.ec-minimal:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.15); border-color: #dc2626; }
.ec-minimal .ec-badge { color: #dc2626; border-bottom: 1px solid #e5e5e5; }

.mnl-cover { background: #fff; justify-content: space-between; }
.mnl-line { height: 2px; background: #dc2626; width: 100%; }
.mnl-line.top { margin-bottom: 8px; }
.mnl-line.bottom { margin-top: auto; margin-bottom: 4px; width: 40%; }
.mnl-tag { font-size: 0.38rem; letter-spacing: 2px; color: #dc2626; text-transform: uppercase; margin-bottom: 4px; }
.mnl-title { font-family: var(--font-serif); font-size: 0.82rem; color: #111; line-height: 1.15; font-weight: 700; }
.mnl-sub { font-size: 0.42rem; color: #666; margin-top: 4px; }
.mnl-foot { font-size: 0.35rem; color: #aaa; letter-spacing: 0.5px; }

.mnl-body { background: #fff; }
.mnl-section { font-size: 0.38rem; letter-spacing: 1.5px; color: #dc2626; text-transform: uppercase; margin-bottom: 8px; }
.mnl-text { color: #333; line-height: 1.45; }
.mnl-text.lg { font-family: var(--font-serif); font-size: 0.62rem; font-weight: 700; color: #111; margin-bottom: 4px; }
.mnl-text.accent { font-size: 0.5rem; color: #dc2626; margin-bottom: 6px; }
.mnl-text.accent em { font-style: italic; }
.mnl-text.sm { font-size: 0.42rem; color: #666; }
.mnl-text.sm em { color: #dc2626; font-style: italic; }

.mnl-impact { background: #111; justify-content: center; }
.mnl-impact-quote { font-family: var(--font-serif); font-size: 0.48rem; color: rgba(255,255,255,0.65); font-style: italic; line-height: 1.5; margin-bottom: 6px; }
.mnl-impact-quote em { font-style: normal; color: rgba(255,255,255,0.85); }
.mnl-impact-punch { font-family: var(--font-heading); font-size: 0.58rem; color: #fff; text-transform: uppercase; line-height: 1.3; }

.mnl-cta { background: #dc2626; }
.mnl-cta-inner { display: flex; flex-direction: column; justify-content: center; flex: 1; }
.mnl-cta-tag { font-size: 0.38rem; color: rgba(255,255,255,0.6); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2px; }
.mnl-cta-main { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.mnl-cta-sub { font-size: 0.42rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
.mnl-cta-link { font-size: 0.35rem; color: rgba(255,255,255,0.5); margin-top: auto; }

/* ═══════ 6. SOFT ACOLHEDOR — Pediatra ═══════ */
.ec-soft { background: #fdf8f3; border: 1px solid #e8ddd0; }
.ec-soft:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.12); border-color: #c9956c; }
.ec-soft .ec-badge { color: #7a5230; border-bottom: 1px solid #e8ddd0; background: #f5ede3; }

.sft-cover { background: #2d1b0e; }
.sft-pill { display: inline-block; font-size: 0.35rem; background: rgba(201,149,108,0.25); color: #c9956c; border: 1px solid rgba(201,149,108,0.4); border-radius: 20px; padding: 3px 7px; letter-spacing: 1px; margin-bottom: 6px; }
.sft-title { font-family: var(--font-serif); font-size: 0.78rem; color: #fff; line-height: 1.2; font-weight: 700; margin-bottom: 6px; flex: 1; }
.sft-accent { color: #c9956c; font-style: italic; }
.sft-sub { font-size: 0.4rem; color: rgba(255,255,255,0.55); line-height: 1.4; margin-top: auto; }
.sft-foot { font-size: 0.32rem; color: rgba(255,255,255,0.2); margin-top: 4px; }

.sft-scene { background: #fdf8f3; }
.sft-eyebrow { font-size: 0.35rem; letter-spacing: 1.5px; color: #9c7a5a; text-transform: uppercase; margin-bottom: 6px; }
.sft-story { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.sft-story p { font-size: 0.42rem; color: #555; line-height: 1.3; }
.sft-caption { font-size: 0.42rem; font-weight: 600; color: #2d1b0e; margin-top: auto; border-top: 1px solid #e8ddd0; padding-top: 5px; line-height: 1.3; }

.sft-quote { background: #f0e6d8; }
.sft-q-big { font-family: var(--font-serif); font-size: 2.5rem; color: rgba(201,149,108,0.25); line-height: 0.7; }
.sft-q-text { font-family: var(--font-serif); font-size: 0.48rem; color: #555; line-height: 1.5; font-style: italic; margin-bottom: 4px; }
.sft-q-em { font-family: var(--font-serif); font-size: 0.58rem; color: #2d1b0e; font-weight: 700; line-height: 1.3; }
.sft-q-close { font-size: 0.4rem; color: #888; margin-top: 3px; font-style: italic; }

.sft-cta { background: #c9956c; text-align: center; justify-content: center; }
.sft-cta-tag { font-size: 0.38rem; color: rgba(255,255,255,0.65); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2px; }
.sft-cta-main { font-family: var(--font-heading); font-size: 0.82rem; color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 6px; }
.sft-cta-sub { font-size: 0.38rem; color: rgba(255,255,255,0.7); line-height: 1.4; margin-bottom: 6px; }
.sft-cta-link { font-size: 0.32rem; color: rgba(255,255,255,0.5); }

/* ═══════ ABOUT ═══════ */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.4); max-height: 500px; width: 100%; object-fit: cover; }
.about-text p { color: var(--text-secondary); margin-bottom: 16px; font-size: 1.05rem; line-height: 1.7; }
.about-stats { display: flex; gap: 40px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.about-stats div { text-align: center; }
.about-stats strong { font-family: var(--font-heading); font-size: 1.5rem; color: var(--accent); }

/* ═══════ BONUS ═══════ */
.bonus-section { padding: 100px 0; background: var(--bg-secondary); text-align: center; }
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.bonus-grid-4 { grid-template-columns: repeat(2, 1fr); }
.bonus-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 24px; text-align: left; transition: var(--transition); position: relative; }
.bonus-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.bonus-tag { display: inline-block; padding: 4px 12px; background: var(--accent); color: white; font-size: 0.7rem; font-weight: 700; border-radius: 4px; margin-bottom: 16px; letter-spacing: 1px; }
.bonus-card h3 { font-family: var(--font-heading); font-size: 1.15rem; text-transform: uppercase; margin-bottom: 12px; }
.bonus-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.bonus-value { color: var(--accent); font-size: 0.85rem; font-weight: 600; }

/* ═══════ PRICING ═══════ */
.pricing-section { padding: 100px 0; text-align: center; }
.pricing-card { max-width: 520px; margin: 48px auto 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 40px; backdrop-filter: blur(20px); }
.pricing-label { font-size: 0.8rem; font-weight: 600; color: var(--accent); letter-spacing: 2px; margin-bottom: 16px; }
.pricing-old { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 8px; }
.pricing-old s { color: var(--text-muted); }
.pricing-main { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 4px; }
.pricing-currency { font-family: var(--font-heading); font-size: 2rem; color: var(--text-secondary); }
.pricing-value { font-family: var(--font-heading); font-size: 6rem; font-weight: 700; line-height: 1; }
.pricing-period { font-size: 1.1rem; color: var(--text-secondary); align-self: flex-end; margin-bottom: 8px; }
.pricing-installment { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; }
.pricing-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 24px; font-size: 0.8rem; color: var(--text-muted); }

/* ═══════ GUARANTEE ═══════ */
.guarantee-section { padding: 80px 0; background: var(--bg-secondary); }
.guarantee-grid { display: flex; align-items: center; gap: 40px; max-width: 750px; margin: 0 auto; }
.guarantee-badge { font-size: 4rem; }
.guarantee-text h2 { font-size: 1.8rem; margin-bottom: 12px; }
.guarantee-text p { color: var(--text-secondary); font-size: 1rem; }

/* ═══════ FAQ ═══════ */
.faq-section { padding: 100px 0; text-align: center; }
.faq-list { max-width: 700px; margin: 48px auto 0; text-align: left; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(255,61,0,0.3); }
.faq-question { width: 100%; padding: 20px 24px; background: transparent; border: none; color: var(--text-primary); font-family: var(--font-body); font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-arrow { font-size: 1.2rem; transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* ═══════ FINAL CTA ═══════ */
.final-cta { padding: 100px 0; text-align: center; background: var(--bg-secondary); position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); opacity: 0.2; }
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); position: relative; }
.final-cta p { color: var(--text-secondary); font-size: 1.15rem; margin-bottom: 36px; position: relative; }
.final-cta .btn-cta { position: relative; }

/* ═══════ FOOTER ═══════ */
.footer { padding: 60px 0 40px; text-align: center; border-top: 1px solid var(--border); }
.footer-brand { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; letter-spacing: 3px; margin-bottom: 20px; color: var(--text-secondary); }
.footer-disclaimer { color: var(--text-muted); font-size: 0.8rem; max-width: 600px; margin: 0 auto 16px; line-height: 1.5; }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 24px; }
.footer-links a { color: var(--text-muted); font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }


/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-text { order: 1; }
  .hero-image { order: 0; }
  .hero-image img { max-height: 350px; margin: 0 auto; }
  .trust-icons { justify-content: center; flex-wrap: wrap; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .slideshow-gallery { grid-template-columns: 1fr; }
  .sp-carousel { height: 420px; }
  .about-grid { grid-template-columns: 1fr; }
  .bonus-grid, .bonus-grid-4 { grid-template-columns: 1fr; }
  .demo-features { flex-wrap: wrap; gap: 16px; }
  .guarantee-grid { flex-direction: column; text-align: center; }
  .pricing-value { font-size: 4.5rem; }
  .pricing-trust { gap: 12px; }
  .btn-cta-large { padding: 18px 32px; font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  h2 { font-size: 1.8rem; }
  .hero h1 { font-size: 2.4rem; }
  .sp-carousel { height: 360px; }
}
