/* ============================================
   NAYARA SOLIS — LANDING PAGE
   Design System: místico-leve, premium
   ============================================ */

:root {
  --bg-deep: #0e0820;
  --bg-mid: #1a0d2e;
  --bg-soft: #251743;
  --gold: #f5dca8;
  --gold-bright: #f8e3b3;
  --gold-deep: #d4a849;
  --purple-light: #c89cd9;
  --purple-mid: #9b6dc7;
  --purple-deep: #6b3a9c;
  --text-primary: #fff;
  --text-soft: #d4c4ee;
  --text-muted: #9785b8;
  --text-dim: #7a6a96;
  --border-subtle: rgba(245, 220, 168, 0.15);
  --border-mid: rgba(245, 220, 168, 0.3);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 20px 60px rgba(180, 120, 220, 0.2);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em, i {
  font-style: normal !important;
  color: var(--gold);
  font-weight: 600;
  font-size: 1.05em;
  font-family: inherit;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === TIPOGRAFIA === */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.overline-lg {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  margin-bottom: 1.5rem;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* === LOADER === */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-symbol {
  animation: loader-spin 3s linear infinite, loader-pulse 1.5s ease-in-out infinite;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }
@keyframes loader-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* === ESTRELAS DE FUNDO === */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star-layer {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
}
.star-layer-1 {
  background-image:
    radial-gradient(1px 1px at 25% 30%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 70% 50%, rgba(245,220,168,0.5), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 90% 20%, rgba(255,255,255,0.6), transparent);
  background-size: 600px 600px;
  animation: stars-drift 200s linear infinite;
}
.star-layer-2 {
  background-image:
    radial-gradient(0.8px 0.8px at 15% 60%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 60% 25%, rgba(200,156,217,0.4), transparent),
    radial-gradient(1px 1px at 80% 75%, rgba(255,255,255,0.4), transparent);
  background-size: 800px 800px;
  animation: stars-drift 300s linear infinite reverse;
}
.star-layer-3 {
  background-image:
    radial-gradient(0.5px 0.5px at 35% 45%, rgba(255,255,255,0.3), transparent),
    radial-gradient(0.5px 0.5px at 75% 65%, rgba(255,255,255,0.3), transparent);
  background-size: 1000px 1000px;
  animation: stars-twinkle 4s ease-in-out infinite, stars-drift 400s linear infinite;
}
@keyframes stars-drift {
  to { transform: translateY(-300px); }
}
@keyframes stars-twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(14, 8, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--border-subtle);
  padding: 10px 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.85; }
.logo-symbol {
  display: flex;
  align-items: center;
  filter: drop-shadow(0 0 8px rgba(245, 220, 168, 0.4));
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
.logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all var(--transition);
}
.header-cta:hover {
  background: #25D366;
  color: white;
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 80px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.hero-glow-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(155, 109, 199, 0.25), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(245, 220, 168, 0.12), transparent 50%),
    linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 580px; }
.ornament { display: block; margin-bottom: 1.5rem; }
.hero-text h1 { line-height: 1.1; letter-spacing: -0.01em; }
.subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin: 1.6rem 0 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.subtitle strong { color: var(--text-primary); font-weight: 500; }

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5c 100%);
  color: white;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45);
}
.cta-button--large { font-size: 1.1rem; padding: 20px 38px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 1.8rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.trust-list li {
  display: inline-flex;
  align-items: center;
}

/* HERO IMG */
.hero-img {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 3/4;
}
.hero-img-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-deep), 0 0 0 1px var(--border-mid);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(155, 109, 199, 0.4) 0%, transparent 60%);
  z-index: -1;
  filter: blur(50px);
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.hero-img-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.hero-img-corner-tl { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.hero-img-corner-tr { top: -8px; right: -8px; border-left: none; border-bottom: none; }
.hero-img-corner-bl { bottom: -8px; left: -8px; border-right: none; border-top: none; }
.hero-img-corner-br { bottom: -8px; right: -8px; border-left: none; border-top: none; }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 38px;
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}
.scroll-indicator span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  60%, 100% { transform: translateY(14px); opacity: 0; }
}

/* === DIVISOR === */
.divisor {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
}

/* === DIFERENCIAL === */
.diferencial {
  position: relative;
  padding: 80px 0 100px;
  background: var(--bg-mid);
  z-index: 1;
}
.diferencial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.diferencial-item {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  padding: 40px 32px 36px;
  border-radius: 4px;
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}
.diferencial-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 220, 168, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.diferencial-item:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.diferencial-item:hover::before { opacity: 1; }
.dif-icon {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(245, 220, 168, 0.4));
}
.diferencial-item h3 {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.diferencial-item p { color: var(--text-soft); font-size: 0.97rem; line-height: 1.7; }
.diferencial-item em {
  color: var(--gold);
  font-style: normal;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05em;
}

/* === PRODUTOS === */
.produtos {
  position: relative;
  padding: 90px 0 110px;
  background: var(--bg-deep);
  z-index: 1;
}
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.produto-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  overflow: hidden;
}
.produto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.produto-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(155, 109, 199, 0.18);
}
.produto-card--featured {
  border-color: rgba(245, 220, 168, 0.45);
  background: linear-gradient(180deg, rgba(245, 220, 168, 0.08) 0%, rgba(155, 109, 199, 0.03) 100%);
}
.produto-card--premium {
  border-color: rgba(245, 220, 168, 0.6);
  background: linear-gradient(180deg, rgba(245, 220, 168, 0.12) 0%, rgba(180, 120, 220, 0.08) 100%);
  box-shadow: 0 10px 40px rgba(245, 220, 168, 0.08);
}
.produto-card--premium .produto-icon { animation: crown-glow 3s ease-in-out infinite; }
@keyframes crown-glow { 0%, 100% { filter: drop-shadow(0 0 10px rgba(245, 220, 168, 0.3)); } 50% { filter: drop-shadow(0 0 20px rgba(245, 220, 168, 0.7)); } }
.produto-badge--premium { background: linear-gradient(135deg, #f8e3b3, #c89cd9, #f5dca8); }
.produto-card--featured::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.produto-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--bg-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 5px 18px;
  border-radius: 0 0 4px 4px;
  text-transform: uppercase;
}
.produto-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(245, 220, 168, 0.3));
}
.produto-card h3 {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
}
.produto-desc {
  color: var(--text-soft);
  flex: 1;
  margin-bottom: 1rem;
  font-size: 0.93rem;
  line-height: 1.7;
}
.produto-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1.5rem;
  padding: 12px 0;
  border-top: 1px dashed var(--border-subtle);
  border-bottom: 1px dashed var(--border-subtle);
}
.produto-detail span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.produto-detail span::before {
  content: '◆ ';
  color: var(--gold);
  margin-right: 4px;
  font-size: 0.6rem;
}
.produto-price { margin-bottom: 0.5rem; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.produto-price + .produto-price { margin-bottom: 1.5rem; }
.price-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
  width: 100%;
}
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.price-old {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 400;
}
.price-discount {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #f5dca8, #d4a849);
  color: var(--bg-deep);
  padding: 3px 8px;
  border-radius: 4px;
}
.produto-cta {
  display: inline-block;
  text-align: center;
  background: rgba(155, 109, 199, 0.15);
  color: var(--gold);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.produto-cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

/* === COMO FUNCIONA === */
.como-funciona {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
  z-index: 1;
}
.como-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.como-img {
  position: relative;
  max-width: 480px;
  aspect-ratio: 3/4;
}
.como-img-frame {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.como-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.como-img-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
}
.como-img-corner-tl { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.como-img-corner-br { bottom: -10px; right: -10px; border-left: none; border-top: none; }

.como-text h2 { margin-bottom: 2.5rem; }
.steps li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  counter-increment: stepNum;
}
.steps {
  counter-reset: stepNum;
}
.steps li::before {
  content: counter(stepNum);
  position: absolute;
  left: 0;
  top: -4px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 220, 168, 0.08);
  border: 1px solid var(--border-mid);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li strong {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 4px;
  letter-spacing: 0.005em;
}
.steps li span { color: var(--text-soft); font-size: 0.95rem; line-height: 1.7; }

/* === DEPOIMENTOS === */
.depoimentos {
  padding: 100px 0;
  background: var(--bg-deep);
  position: relative;
  z-index: 1;
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.depoimento {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border-subtle);
  padding: 52px 34px 28px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  position: absolute;
  top: 18px;
  left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  font-weight: 500;
}
.depoimento blockquote {
  color: var(--text-soft);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0;
  flex: 1;
}
.depoimento blockquote em {
  font-size: 1em;
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
}
.depoimento figcaption {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* === CTA FINAL === */
.cta-final {
  position: relative;
  padding: 110px 0;
  background: radial-gradient(ellipse at 50% 50%, var(--bg-soft) 0%, var(--bg-deep) 100%);
  overflow: hidden;
  z-index: 1;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 220, 168, 0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(155, 109, 199, 0.15), transparent 40%);
  pointer-events: none;
}
.cta-final-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.cta-final-img {
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 3/4;
}
.cta-final-img-frame {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.cta-final-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.ornament-mini { display: block; margin-bottom: 1.5rem; }
.cta-final-text h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}
.cta-final-text > p {
  color: var(--text-soft);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.cta-final-trust {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* === ALERTA ANTI-GOLPE === */
.alerta {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #110725 100%);
  position: relative;
  z-index: 1;
}
.alerta-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(245, 220, 168, 0.06) 0%, rgba(220, 70, 70, 0.04) 100%);
  border: 1px solid rgba(245, 220, 168, 0.25);
  border-left: 4px solid #f5dca8;
  border-radius: 4px;
  padding: 36px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.alerta-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.alerta-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.alerta-text p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.alerta-text em {
  font-style: normal;
  color: var(--gold);
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05em;
}
.alerta-sub {
  color: var(--gold) !important;
  font-style: normal !important;
  font-family: inherit !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  margin-top: 1rem !important;
  letter-spacing: 0.005em;
}

@media (max-width: 600px) {
  .alerta-card { flex-direction: column; padding: 28px 24px; gap: 16px; }
  .alerta-icon { font-size: 1.8rem; }
  .alerta-text h3 { font-size: 1.4rem; }
}

/* === FOOTER === */
footer {
  background: #07041a;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}
.footer-top {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-logo .logo-name { font-size: 1.1rem; }
.footer-logo .logo-subtitle { font-size: 0.6rem; }
.footer-info { text-align: center; }
.footer-info p { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 12px; }
.legal {
  font-size: 0.78rem;
  max-width: 700px;
  margin: 12px auto !important;
  line-height: 1.6;
}
.legal-links { margin-bottom: 16px !important; }
.legal-links a { color: var(--purple-light); transition: color var(--transition); }
.legal-links a:hover { color: var(--gold); }
.copy { color: var(--text-dim); font-size: 0.78rem; margin-top: 16px; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366, #1ebe5c);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 50;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: float-pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes float-pulse {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-text { max-width: 600px; margin: 0 auto; }
  .hero-img { order: -1; max-width: 380px; }
  .ornament { margin-left: auto; margin-right: auto; }
  .subtitle { margin-left: auto; margin-right: auto; }
  .trust-list { justify-content: center; }
  .como-container { grid-template-columns: 1fr; gap: 50px; }
  .como-img { order: 2; max-width: 380px; margin: 0 auto; }
  .cta-final-content { grid-template-columns: 1fr; gap: 40px; }
  .cta-final-img { order: 2; max-width: 320px; }
  .cta-final-text { text-align: center; }
  .cta-final-text > p { margin-left: auto; margin-right: auto; }
  .ornament-mini { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .header-cta span { display: none; }
  .header-cta { padding: 10px 14px; }
  .logo-symbol svg { width: 32px; height: 32px; }
  .logo-name { font-size: 1.1rem; }
  .logo-subtitle { font-size: 0.58rem; }

  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-img { max-width: 320px; }
  .scroll-indicator { display: none; }

  .diferencial, .produtos, .como-funciona, .depoimentos, .cta-final {
    padding: 60px 0;
  }
  .section-head { margin-bottom: 2.5rem; }

  .diferencial-item { padding: 32px 24px; }
  .produto-card { padding: 32px 24px 24px; }

  .steps li { padding-left: 60px; margin-bottom: 26px; }
  .steps li::before { width: 42px; height: 42px; font-size: 1.2rem; }

  .quote-mark { font-size: 3rem; }
  .depoimento { padding: 32px 24px 24px; }
  .depoimento blockquote { font-size: 1rem; }

  .whatsapp-float { width: 58px; height: 58px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 28px; height: 28px; }

  footer { padding: 40px 0 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .subtitle { font-size: 1rem; }
  .cta-button { padding: 16px 26px; font-size: 0.95rem; }
  .cta-button--large { padding: 18px 30px; font-size: 1rem; }
  .trust-list { gap: 10px; font-size: 0.8rem; flex-direction: column; }
  .hero-img-corner { width: 22px; height: 22px; }
  .price { font-size: 1.8rem; }
  .produto-icon { font-size: 2rem; }
}
