/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: #0a0a0a;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── CSS VARIABLES ── */
:root {
  --gold: #D4AF37;
  --gold-light: #F4E5B0;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-subtle: rgba(212, 175, 55, 0.08);
  --black: #0a0a0a;
  --black-card: #141414;
  --black-light: #1a1a1a;
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --green-whatsapp: #25D366;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --radius-hero: 0 0 0 200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── TYPOGRAPHY ── */
h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 8vw, 96px); letter-spacing: 2px; line-height: 0.95; }
h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 64px); letter-spacing: 1px; }
h3 { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 600; }
p  { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.7; }
a  { text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
.section { padding: var(--space-2xl) 0; }

.text-gold {
  background: linear-gradient(90deg, #D4AF37, #F4E5B0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-title { color: var(--white); margin-bottom: 16px; }
.section-subtitle { color: var(--white-70); font-size: 16px; max-width: 560px; margin-bottom: 60px; }

/* ── GLASS CARD ── */
.glass-card {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  padding: 13px 28px;
  font-size: 15px;
}
.btn-large { padding: 16px 36px; font-size: 15px; }
.btn-xl { padding: 18px 42px; font-size: 16px; font-weight: 600; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #F4E5B0 50%, #D4AF37 100%);
  background-size: 200% 100%;
  color: #0a0a0a;
  font-weight: 600;
}
.btn-primary:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,175,55,0.4); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--white-20); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── HEADER ── */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: var(--transition); }
.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 14px 0;
}
.scroll-progress { position: absolute; top: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); width: 0%; transition: width 0.1s linear; z-index: 1001; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px; color: var(--white); letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-link { color: var(--white-70); text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400; transition: var(--transition); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: var(--transition); }
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(212,175,55,0.15); padding: 24px var(--space-lg); flex-direction: column; gap: 16px; }
.mobile-menu.active { display: flex; }
.mobile-link { color: var(--white-70); font-size: 16px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--white-10); display: block; transition: var(--transition); }
.mobile-link:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 8px; }

/* ── HERO ── */
.hero { min-height: 100vh; padding-top: 120px; background: var(--black); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%); top: -200px; right: -100px; }
.glow-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%); bottom: -100px; left: -100px; }
.hero-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; padding: 60px 0 40px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius-pill); padding: 8px 16px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; color: var(--gold); letter-spacing: 0.5px; margin-bottom: 28px; }
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 9vw, 110px); line-height: 0.96; letter-spacing: 3px; color: var(--white); margin-bottom: 28px; display: block; padding-top: 0.08em; }
.title-line { display: block; overflow: visible; }
.title-gold { background: linear-gradient(90deg, #D4AF37, #F4E5B0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { color: var(--white-70); font-size: 16px; line-height: 1.7; max-width: 480px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof { display: flex; align-items: center; gap: 14px; }
.proof-avatars { display: flex; }
.avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--black); background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(212,175,55,0.1)); margin-left: -10px; }
.avatar:first-child { margin-left: 0; }
.proof-text { font-size: 14px; color: var(--white-70); margin: 0; }
.hero-visual { position: relative; height: 580px; }
.hero-image-container { position: absolute; top: 0; right: 0; width: 100%; height: 520px; border-radius: var(--radius-hero); overflow: hidden; border: 1px solid rgba(212,175,55,0.15); }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: contrast(1.05) brightness(0.9); transition: transform 0.6s ease; }
.hero-image-container:hover .hero-image { transform: scale(1.03); }
.hero-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, var(--black) 0%, transparent 100%); }

/* Floating badges */
.floating-badge { position: absolute; background: rgba(10,10,10,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: var(--radius-lg); padding: 14px 18px; z-index: 10; }
.badge-top-right { top: 24px; right: -20px; border: 1px solid rgba(212,175,55,0.25); display: flex; flex-direction: column; gap: 2px; }
.floating-badge-line { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 1px; color: var(--gold); line-height: 1.2; }
.badge-bottom-left { bottom: 80px; left: -20px; background: rgba(255,255,255,0.95); border: none; display: flex; align-items: center; gap: 10px; }
.badge-bottom-left span { color: var(--black); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; }
.badge-bottom-right { bottom: 20px; right: 20px; border: 1px solid rgba(212,175,55,0.2); display: flex; align-items: center; gap: 8px; }
.badge-bottom-right span { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 13px; }
.badge-icon { width: 28px; height: 28px; background: rgba(212,175,55,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.hero-seal { position: absolute; bottom: 140px; left: 30px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 48px; padding: 40px 0; border-top: 1px solid var(--white-10); margin-top: 40px; position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--gold); letter-spacing: 2px; line-height: 1; display: inline; }
.stat-suffix { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--gold); }
.stat-label { display: block; font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--white-50); margin-top: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 48px; background: var(--white-10); }

/* ── SOBRE ── */
.sobre { background: var(--black-light); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-visual { position: relative; }
.sobre-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.sobre-image { width: 100%; height: 500px; object-fit: cover; filter: brightness(0.9); }
.sobre-image-border { position: absolute; inset: 0; border: 2px solid rgba(212,175,55,0.2); border-radius: var(--radius-lg); pointer-events: none; }
.sobre-card { position: absolute; bottom: -24px; right: -24px; display: flex; align-items: center; gap: 12px; padding: 16px 20px; }
.sobre-card-icon { font-size: 24px; }
.sobre-card strong { display: block; color: var(--white); font-size: 14px; }
.sobre-card p { color: var(--white-50); font-size: 12px; margin: 0; }
.sobre-content h2 { margin-bottom: 8px; }
.sobre-role { color: var(--gold); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; font-weight: 500; }
.sobre-desc { color: var(--white-70); margin-bottom: 20px; }
.sobre-list { margin: 28px 0; display: flex; flex-direction: column; gap: 20px; }
.sobre-list li { display: flex; gap: 16px; align-items: flex-start; }
.list-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.sobre-list strong { display: block; color: var(--white); margin-bottom: 4px; font-size: 15px; }
.sobre-list p { color: var(--white-50); font-size: 14px; margin: 0; }

/* ── METODOLOGIA ── */
.metodologia { background: var(--black); }
.metodologia-split { display: flex; gap: 32px; align-items: stretch; margin-bottom: 60px; }
.metodo-card { flex: 1; padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.metodo-icon { width: 64px; height: 64px; background: rgba(212,175,55,0.08); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.metodo-card h3 { color: var(--white); font-size: 22px; }
.metodo-card p { color: var(--white-70); font-size: 15px; }
.metodo-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; flex: 1; }
.metodo-list li { color: var(--white-70); font-size: 14px; display: flex; gap: 8px; }
.metodo-list li span { color: var(--gold); }
.metodo-price { color: var(--gold); font-size: 14px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--white-10); }
.metodo-price strong { font-size: 18px; }
.metodo-divider { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; flex-shrink: 0; width: 60px; }
.divider-line { flex: 1; width: 1px; background: rgba(212,175,55,0.2); }
.divider-circle { width: 48px; height: 48px; border-radius: 50%; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 1px; flex-shrink: 0; }
.metodo-combo { background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05)); border: 1px solid rgba(212,175,55,0.3); border-radius: var(--radius-lg); padding: 40px; text-align: center; position: relative; }
.combo-badge { display: inline-flex; background: var(--gold); color: var(--black); font-size: 11px; font-weight: 700; letter-spacing: 2px; padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 16px; }
.metodo-combo h3 { color: var(--white); margin-bottom: 12px; }
.metodo-combo p { color: var(--white-70); max-width: 480px; margin: 0 auto 24px; }

/* ── JORNADA ── */
.jornada { background: var(--black-light); }
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.timeline-step { display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: flex-start; position: relative; }
.step-number { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: rgba(212,175,55,0.2); line-height: 1; padding-top: 28px; text-align: center; }
.step-content { padding: 28px; margin-bottom: 0; }
.step-icon { font-size: 28px; margin-bottom: 10px; }
.step-content h3 { color: var(--white); margin-bottom: 8px; }
.step-content p { color: var(--white-70); font-size: 14px; margin-bottom: 12px; }
.step-tag { display: inline-flex; background: rgba(212,175,55,0.1); color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 1px; padding: 3px 10px; border-radius: var(--radius-pill); text-transform: uppercase; }
.gold-tag { background: var(--gold); color: var(--black); }
.highlight-step { border-color: rgba(212,175,55,0.4); background: rgba(212,175,55,0.05); }
.timeline-connector { position: absolute; left: 32px; top: 88px; width: 2px; height: calc(100% - 60px); background: linear-gradient(to bottom, rgba(212,175,55,0.3), rgba(212,175,55,0.05)); transform-origin: top; }

/* ── PLANOS ── */
.planos { background: var(--black); }
.plans-toggle { display: flex; gap: 8px; margin-bottom: 48px; background: var(--black-light); border-radius: var(--radius-pill); padding: 4px; width: fit-content; }
.toggle-btn { background: transparent; border: none; color: var(--white-70); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; padding: 10px 24px; border-radius: var(--radius-pill); cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.toggle-btn.active { background: var(--gold); color: var(--black); }
.toggle-badge { background: rgba(212,175,55,0.15); color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 2px 8px; border-radius: var(--radius-pill); }
.toggle-btn.active .toggle-badge { background: rgba(0,0,0,0.15); color: var(--black); }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.plan-card { padding: 28px; display: flex; flex-direction: column; gap: 16px; position: relative; transform-style: preserve-3d; }
.plan-badge-top { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--black-light); color: var(--white-70); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; padding: 4px 14px; border-radius: var(--radius-pill); border: 1px solid var(--white-20); white-space: nowrap; }
.gold-badge { background: var(--gold); color: var(--black); border-color: var(--gold); }
.plan-featured { border-color: rgba(212,175,55,0.4); background: rgba(20,20,20,0.9); box-shadow: 0 0 40px rgba(212,175,55,0.1); }
.plan-misto { border-color: rgba(212,175,55,0.3); }
.plan-header .plan-icon { font-size: 32px; margin-bottom: 10px; }
.plan-header h3 { color: var(--white); font-size: 18px; margin-bottom: 6px; }
.plan-desc { color: var(--white-50); font-size: 13px; line-height: 1.5; margin: 0; }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.price-currency { color: var(--gold); font-size: 18px; font-weight: 600; }
.price-value { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--gold); letter-spacing: 2px; line-height: 1; }
.price-period { color: var(--white-50); font-size: 14px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { display: flex; gap: 8px; align-items: flex-start; color: var(--white-70); font-size: 13px; }
.feature-check { color: var(--gold); font-size: 14px; flex-shrink: 0; }
.feature-no { color: var(--white-50); text-decoration: line-through; opacity: 0.5; }
.plan-offer { background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.15); border-radius: var(--radius-md); padding: 12px; text-align: center; }
.plan-offer span { display: block; color: var(--white-70); font-size: 12px; margin-bottom: 4px; }
.plan-offer strong { color: var(--gold); font-size: 20px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
.avulsa-card { background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.15); border-radius: var(--radius-lg); padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.avulsa-card p { color: var(--white-70); margin: 0; }
.avulsa-card strong { color: var(--gold); }

/* ── DEPOIMENTOS ── */
.depoimentos { background: var(--black-light); }
.depo-swiper { padding-bottom: 48px !important; }
.depo-card { padding: 28px; height: 100%; display: flex; flex-direction: column; gap: 16px; }
.depo-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.depo-text { color: var(--white-70); font-size: 15px; line-height: 1.7; flex: 1; font-style: italic; }
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(212,175,55,0.1)); flex-shrink: 0; }
.depo-author strong { display: block; color: var(--white); font-size: 14px; }
.depo-author span { color: var(--white-50); font-size: 12px; }
.depo-coming { text-align: center; margin-top: 24px; }
.depo-coming p { color: var(--white-50); font-size: 14px; }
.swiper-pagination-bullet { background: var(--white-30) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-prev, .swiper-button-next { color: var(--gold) !important; }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 18px !important; }

/* ── FAQ ── */
.faq { background: var(--black); }
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--white-10); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; background: transparent; border: none; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500; cursor: pointer; text-align: left; transition: var(--transition); }
.faq-question:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 24px; line-height: 1; min-width: 24px; transition: var(--transition); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer p { padding: 0 0 22px; color: var(--white-70); font-size: 15px; }

/* ── CTA FINAL ── */
.cta-final { background: var(--black-light); position: relative; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%); border-radius: 50%; }
.cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-title { color: var(--white); margin-bottom: 16px; }
.cta-desc { color: var(--white-70); font-size: 16px; margin-bottom: 32px; }
.cta-urgencia { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius-pill); padding: 10px 20px; margin-bottom: 36px; color: var(--gold); font-size: 14px; }
.urgencia-dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; flex-shrink: 0; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-footer-text { color: var(--white-50); font-size: 13px; }

/* ── FOOTER ── */
.footer { background: var(--black); border-top: 1px solid var(--white-10); padding: 60px 0 0; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 48px; }
.footer-brand p { color: var(--white-50); font-size: 14px; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--white-10); display: flex; align-items: center; justify-content: center; color: var(--white-70); transition: var(--transition); }
.footer-social a:hover { background: rgba(212,175,55,0.2); color: var(--gold); }
.footer-links h4, .footer-contact h4 { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a { color: var(--white-50); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { color: var(--white-50); font-size: 14px; }
.footer-bottom { border-top: 1px solid var(--white-10); padding: 20px var(--space-lg); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer-bottom p { color: var(--white-50); font-size: 12px; text-align: center; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; background: var(--green-whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: var(--green-whatsapp); }
.whatsapp-tooltip { position: absolute; right: 68px; background: rgba(10,10,10,0.9); color: white; padding: 8px 14px; border-radius: 8px; font-size: 13px; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: var(--transition); pointer-events: none; font-family: 'DM Sans', sans-serif; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ── VÍDEOS DE DEPOIMENTOS ── */
.depo-videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.depo-video-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.depo-video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.depo-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.depo-video-info { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.depo-video-titulo { color: var(--white-70); font-size: 15px; font-style: italic; line-height: 1.5; }
.depo-coming { text-align: center; margin-top: 32px; }
.depo-coming p { color: var(--white-50); font-size: 14px; background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.1); border-radius: var(--radius-pill); display: inline-block; padding: 10px 24px; }

/* ── PRA QUEM É ── */
.pra-quem-section { background: var(--black); }
.pra-quem-content { max-width: 800px; margin: 0 auto; }
.pra-quem-intro { padding: 32px; text-align: center; margin-bottom: 40px; }
.pra-quem-intro h3 { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 600; margin: 0; }
.pra-quem-grid { display: flex; flex-direction: column; gap: 16px; margin-bottom: 60px; }
.pra-quem-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: var(--transition);
}
.pra-quem-item:hover { background: rgba(212, 175, 55, 0.1); transform: translateX(8px); border-left-width: 4px; }
.item-bullet { color: var(--gold); font-size: 24px; font-weight: 700; line-height: 1; min-width: 12px; flex-shrink: 0; }
.pra-quem-item span:last-child { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 400; line-height: 1.4; }
.pra-quem-footer {
  text-align: center;
  padding: 40px 32px;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.pra-quem-footer p { color: var(--white-70); font-size: 16px; margin-bottom: 24px; }
.pra-quem-footer strong { color: var(--white); }

/* ── FEEDBACKS E CONQUISTAS ── */
.feedbacks-section { background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%); }
.feedbacks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.feedback-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); transition: var(--transition); }
.feedback-card:hover { transform: translateY(-8px); }
.feedback-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(212,175,55,0.06) 0%, var(--black-card) 65%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.smartphone-card { justify-self: center; max-width: 360px; width: 100%; }
.smartphone-frame {
  aspect-ratio: 9/19.5;
  border-radius: 24px;
  border: 8px solid #1a1a1a;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3), 0 20px 60px rgba(0,0,0,0.5);
}
.feedback-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.feedback-card:hover .feedback-image-wrapper img { transform: scale(1.08); }
.feedback-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feedback-card:hover .feedback-overlay { opacity: 1; }
.feedback-label { color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.feedbacks-cta {
  text-align: center;
  padding: 48px 32px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.feedbacks-cta p { color: var(--white); font-size: 20px; font-weight: 500; margin-bottom: 24px; }

/* Feedbacks subsections */
.feedbacks-subsection { margin-bottom: 56px; }
.feedbacks-subsection .feedbacks-grid { margin-bottom: 0; }
.feedbacks-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-pill);
}

/* WhatsApp cards — conteúdo completo visível */
.feedbacks-grid-depo { grid-template-columns: repeat(3, 1fr); }
.whatsapp-wrapper {
  aspect-ratio: 9/16;
  background: #f0f2f5;
  border-color: rgba(212, 175, 55, 0.2);
}
.whatsapp-wrapper img { object-fit: contain; }

@media (max-width: 1024px) {
  .feedbacks-grid-depo { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .feedbacks-grid-depo { grid-template-columns: 1fr; }
  .feedbacks-subtitle { font-size: 14px; padding: 8px 16px; }
  .feedbacks-subsection { margin-bottom: 40px; }
}

/* ── SOBRE SAÚDE ── */
.sobre-saude {
  background: rgba(212, 175, 55, 0.05);
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 24px;
}
.sobre-saude strong { color: var(--gold); }

@media (max-width: 768px) {
  .pra-quem-item { padding: 16px 20px; }
  .pra-quem-item span:last-child { font-size: 15px; }
  .pra-quem-footer { padding: 32px 24px; }
  .feedbacks-grid { grid-template-columns: 1fr; gap: 20px; }
  .smartphone-card { max-width: 300px; }
  .feedbacks-cta { padding: 40px 24px; }
  .feedbacks-cta p { font-size: 18px; }
}
