/* =========================================
   QR LOVE — INICIO.CSS
   ========================================= */

:root {
  --rose:      #c94b72;
  --rose-lt:   #e8708a;
  --rose-glow: rgba(201,75,114,0.35);
  --gold-lt:   #e5b95c;
  --bg:        #0c0708;
  --text:      #f5ede8;
  --muted:     rgba(245,237,232,0.55);
  --glass:     rgba(255,255,255,0.055);
  --glass-hi:  rgba(255,255,255,0.095);
  --glass-bd:  rgba(255,255,255,0.10);
  --container: 1100px;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Poppins', sans-serif; font-weight: 300;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
strong { font-weight: 600; }

/* ─── UTILITÁRIOS ─────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
}

/* ─── FUNDO ───────────────────────────────── */
.site-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.14;
}
.g1 { width:600px; height:600px; top:-200px; left:-150px; background:var(--rose); animation:drift1 16s ease-in-out infinite alternate; }
.g2 { width:500px; height:500px; bottom:-150px; right:-100px; background:#7b2f5a; animation:drift2 20s ease-in-out infinite alternate; }
.g3 { width:300px; height:300px; top:50%; left:50%; transform:translate(-50%,-50%); background:var(--rose); animation:drift3 12s ease-in-out infinite alternate; }

@keyframes drift1 { to { transform:translate(80px,100px); } }
@keyframes drift2 { to { transform:translate(-60px,-80px); } }
@keyframes drift3 { to { transform:translate(-40%, -60%) scale(1.3); opacity:0.08; } }

/* Hearts background */
#hearts-bg {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}
.lp-heart {
  position: absolute; bottom: -30px; opacity: 0;
  font-size: var(--sz, 12px); color: var(--rose-lt);
  animation: floatUp var(--dur, 10s) var(--del, 0s) ease-in forwards;
  user-select: none;
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(var(--r0,-10deg)); opacity: 0.45; }
  80%  { opacity: 0.12; }
  100% { transform: translateY(-110vh) rotate(var(--r1, 10deg)); opacity: 0; }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-reveal].is-visible {
  opacity: 1; transform: translateY(0);
}

/* ─── BOTÕES ──────────────────────────────── */
.btn-hero {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 36px;
  background: var(--rose); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.03em; border-radius: 50px;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  box-shadow: 0 6px 30px var(--rose-glow);
  cursor: pointer; border: none;
}
.btn-hero:hover {
  background: var(--rose-lt); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,75,114,0.45);
}
.btn-hero--lg { font-size: 1.15rem; padding: 20px 44px; }

.btn-secondary {
  display: inline-flex; align-items: center;
  padding: 14px 28px;
  border: 1.5px solid var(--rose); border-radius: 50px;
  color: var(--rose-lt); font-weight: 500; font-size: 0.95rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-secondary:hover {
  background: var(--rose); color: #fff;
  box-shadow: 0 6px 24px var(--rose-glow);
}

.btn-header-cta {
  padding: 10px 22px;
  background: var(--rose); color: #fff;
  border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px var(--rose-glow);
}
.btn-header-cta:hover { background: var(--rose-lt); transform: translateY(-1px); }

/* ─── HEADER ──────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  padding: 16px 0;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12,7,8,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--glass-bd);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.header-logo img { height: 26px; opacity: 0.80; transition: opacity 0.3s; }
.header-logo:hover img { opacity: 1; }

.header-nav {
  display: flex; gap: 28px;
}
.header-nav a {
  font-size: 0.88rem; color: var(--muted);
  transition: color 0.25s;
}
.header-nav a:hover { color: var(--text); }

@media (max-width: 720px) {
  .header-nav { display: none; }
}

/* ─── HERO ────────────────────────────────── */
.hero {
  position: relative; z-index: 10;
  padding: 80px 0 100px;
  min-height: 88vh;
  display: flex; align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(201,75,114,0.12);
  border: 1px solid rgba(201,75,114,0.3);
  border-radius: 50px;
  font-size: 0.80rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--rose-lt); margin-bottom: 24px;
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose-lt);
  animation: badgePulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgePulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.18;
  margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero-h1 em { font-style: italic; color: var(--rose-lt); }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--muted); line-height: 1.75;
  margin-bottom: 36px; max-width: 520px;
}
.hero-sub strong { color: var(--text); }

.hero-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.hero-speed { font-size: 0.80rem; color: var(--muted); letter-spacing: 0.03em; }

.hero-proof {
  display: flex; align-items: center; gap: 10px; margin-top: 28px;
  font-size: 0.85rem; color: var(--muted);
}
.proof-stars { letter-spacing: 2px; font-size: 1rem; }
.hero-proof strong { color: var(--text); font-weight: 600; }

/* ─── PHONE MOCKUP ────────────────────────── */
.hero-visual { display: flex; justify-content: center; }

.phone-wrap {
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.65));
}

.phone {
  width: 270px; height: 550px;
  background: #0e0e0e;
  border-radius: 44px;
  border: 2px solid #2a2a2a;
  position: relative; overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.3);
}

.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #0e0e0e; border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  top: 10px; bottom: 10px; left: 8px; right: 8px;
  border-radius: 36px; overflow: hidden;
  background: var(--bg);
}

/* Vídeo demo dentro da moldura do telefone */
.phone-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Large phone (demo section) */
.phone--lg       { width: 300px; height: 610px; }
.phone-wrap--lg  { filter: drop-shadow(0 50px 100px rgba(0,0,0,0.7)); }

/* QR Badge flutuante */
.qr-badge {
  position: absolute;
  bottom: -16px; right: -24px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(12,7,8,0.90);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-bd); border-radius: 16px;
  color: var(--text); font-size: 0.72rem; font-weight: 500;
  line-height: 1.4;
  animation: qrFloat 4s ease-in-out infinite;
}
.qr-icon { flex-shrink: 0; }

@keyframes qrFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ─── SECTIONS SHARED ─────────────────────── */
.section {
  position: relative; z-index: 10;
  padding: 100px 0;
}

.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-label {
  font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--rose-lt); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem; color: var(--muted);
  max-width: 500px; margin: 0 auto; line-height: 1.7;
}

/* ─── HOW IT WORKS ────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-bd); border-radius: 22px;
  padding: 36px 28px; text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--rose); color: #fff;
  font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-icon { font-size: 2.4rem; margin-bottom: 16px; }
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 10px;
}
.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ─── DEMO SECTION ────────────────────────── */
.demo-section {
  position: relative; z-index: 10;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(201,75,114,0.04) 50%, transparent 100%);
}
.demo-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 80px; align-items: center;
}

.demo-text .section-title { text-align: left; }
.demo-text .section-label { text-align: left; }
.demo-desc { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

.demo-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.demo-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.demo-check {
  color: var(--rose-lt); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}

/* ─── FEATURES GRID ───────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd); border-radius: 20px;
  padding: 30px 24px;
  transition: transform 0.3s, background 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  background: var(--glass-hi);
}
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
}
.feature-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ────────────────────────── */
.testimonials-section {
  background: linear-gradient(180deg, transparent, rgba(201,75,114,0.03) 50%, transparent);
}

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd); border-radius: 22px;
  padding: 30px 26px; display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }

.t-stars { font-size: 1.1rem; letter-spacing: 2px; }
.t-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.96rem; line-height: 1.7; color: rgba(245,237,232,0.88);
  flex: 1;
}
.t-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--rose); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.88rem; font-weight: 600; }
.t-author span { font-size: 0.75rem; color: var(--muted); }

/* ─── PRICING ─────────────────────────────── */
.pricing-section { background: linear-gradient(180deg, transparent, rgba(201,75,114,0.05) 50%, transparent); }

.price-card {
  max-width: 500px; margin: 0 auto 48px;
  background: var(--glass);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(201,75,114,0.3); border-radius: 28px;
  padding: 44px 44px;
  text-align: center;
  box-shadow: 0 0 80px rgba(201,75,114,0.12), 0 20px 60px rgba(0,0,0,0.35);
}

.price-original {
  font-size: 1rem; color: var(--muted);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.price-original s {
  text-decoration: line-through;
  text-decoration-color: var(--rose);
  color: rgba(245,237,232,0.55);
}

.price-badge {
  display: inline-block; margin-bottom: 24px;
  padding: 6px 18px; border-radius: 50px;
  background: rgba(201,75,114,0.18); border: 1px solid rgba(201,75,114,0.35);
  font-size: 0.80rem; font-weight: 500; letter-spacing: 0.05em; color: var(--rose-lt);
}

.price-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 4px 0 20px;
  line-height: 1;
}
.price-currency {
  font-size: 1.6rem; font-weight: 600;
  color: var(--text); align-self: center;
}
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 5.2rem; font-weight: 700;
  color: var(--text); line-height: 1;
}

.price-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 32px; }

.price-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  text-align: left; margin-bottom: 36px;
}
.price-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.90rem; color: rgba(245,237,232,0.85);
}
.price-features li span { color: var(--rose-lt); font-weight: 700; flex-shrink: 0; }

.btn-price {
  display: block; width: 100%;
  padding: 18px; margin-bottom: 14px;
  background: var(--rose); color: #fff; border-radius: 14px;
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.03em; text-align: center;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  box-shadow: 0 6px 30px var(--rose-glow);
  cursor: pointer; border: none;
}
.btn-price:hover {
  background: var(--rose-lt); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,75,114,0.45);
}

.price-note { font-size: 0.78rem; color: var(--muted); }

/* ─── COUNTDOWN REDESIGN ──────────────────── */
.urgency-bar {
  max-width: 740px; margin: 0 auto;
  padding: 48px 44px;
  background: rgba(201,75,114,0.05);
  border: 1px solid rgba(201,75,114,0.22);
  border-radius: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
  text-align: center;
  box-shadow:
    0 0 100px rgba(201,75,114,0.10),
    0 20px 60px rgba(0,0,0,0.28);
  position: relative; overflow: hidden;
}

/* Glow decorativo no topo do card */
.urgency-bar::before {
  content: '';
  position: absolute;
  top: -50px; left: 50%; transform: translateX(-50%);
  width: 260px; height: 100px;
  background: radial-gradient(ellipse, rgba(201,75,114,0.22), transparent 70%);
  pointer-events: none;
}

/* Header */
.urgency-header {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  position: relative; z-index: 1;
}

.urgency-icon { font-size: 2.2rem; line-height: 1; }

.urgency-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700; font-style: italic;
  color: var(--text);
  line-height: 1.2;
}

.urgency-subtitle {
  font-size: 0.92rem; color: var(--muted); line-height: 1.6;
}
.urgency-subtitle strong { color: var(--rose-lt); font-weight: 600; font-style: normal; }

/* Blocos dos números */
.countdown-wrap {
  display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 1;
}

.countdown-block {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  min-width: 96px; padding: 24px 16px 18px;
  background: rgba(201,75,114,0.07);
  border: 1px solid rgba(201,75,114,0.28);
  border-radius: 20px;
  box-shadow:
    0 4px 32px rgba(201,75,114,0.14),
    inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
}

/* Linha de brilho no topo de cada bloco */
.countdown-block::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,75,114,0.7), transparent);
}

/* Números em gradiente */
.countdown-block span {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700; line-height: 1;
  background: linear-gradient(140deg, var(--text) 20%, var(--rose-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Labels */
.countdown-block small {
  font-size: 0.70rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--rose-lt); opacity: 0.85;
}

/* Separador piscante */
.cd-sep {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem; font-weight: 300;
  color: var(--rose-lt); opacity: 0.50;
  align-self: flex-start; margin-top: 18px;
  animation: cdBlink 1s step-end infinite;
  flex-shrink: 0;
}
@keyframes cdBlink {
  0%, 100% { opacity: 0.50; }
  50%       { opacity: 0.10; }
}

/* ─── FAQ ─────────────────────────────────── */
.faq-inner { max-width: 720px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-bd); border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(201,75,114,0.3); }

.faq-q {
  list-style: none; padding: 20px 24px;
  font-size: 0.96rem; font-weight: 500; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  user-select: none;
  transition: color 0.25s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--rose);
  flex-shrink: 0; transition: transform 0.3s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
details[open] .faq-q { color: var(--rose-lt); }

.faq-a {
  padding: 0 24px 20px;
  font-size: 0.90rem; color: var(--muted); line-height: 1.70;
}

/* ─── FINAL CTA ───────────────────────────── */
.final-cta-section {
  position: relative; z-index: 10;
  padding: 100px 0;
  background: radial-gradient(ellipse at center, rgba(201,75,114,0.12) 0%, transparent 70%);
  text-align: center;
}
.final-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }

.final-hearts {
  font-size: 1.8rem; letter-spacing: 12px; color: var(--rose);
  opacity: 0.55; animation: heartBeat 2.4s ease-in-out infinite;
}
@keyframes heartBeat { 0%,100%{transform:scale(1)} 14%{transform:scale(1.15)} 42%{transform:scale(1.08)} }

.final-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2;
  max-width: 600px;
}
.final-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 480px; line-height: 1.7;
}
.final-note { font-size: 0.80rem; color: var(--muted); }

/* ─── FOOTER ──────────────────────────────── */
.site-footer {
  position: relative; z-index: 10;
  padding: 32px 0;
  border-top: 1px solid var(--glass-bd);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
}
.footer-logo img { height: 22px; opacity: 0.40; }
.footer-copy, .footer-love, .footer-company { font-size: 0.80rem; color: var(--muted); }
.footer-love    { color: rgba(201,75,114,0.6); }
.footer-company { color: rgba(245,237,232,0.28); font-size: 0.72rem; }
.footer-terms {
  font-size: 0.75rem; color: rgba(245,237,232,0.30);
  text-decoration: none; border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.footer-terms:hover { color: var(--rose-lt); border-bottom-color: var(--rose-lt); }

/* ─── RESPONSIVE ──────────────────────────── */

/* Tablet */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { align-items: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-proof { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 32px; }
  .hero-badge { margin: 0 auto 24px; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }

  .steps-grid        { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .demo-section { padding: 60px 0 80px; }
  .demo-inner   { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .demo-phone   { display: flex; justify-content: center; }
  .demo-text .section-title,
  .demo-text .section-label { text-align: center; }
  /* items ficam à esquerda mesmo em layout centrado */
  .demo-list { display: inline-flex; flex-direction: column; text-align: left; margin-bottom: 28px; }
}

/* Mobile */
@media (max-width: 600px) {
  .container { padding: 0 20px; }

  /* Hero */
  .hero { padding: 22px 0 30px; min-height: auto; }
  .hero-h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .hero-sub { font-size: 0.92rem; margin-bottom: 24px; }
  .hero-visual { margin-bottom: 16px; }
  /* Stars centralizadas acima do texto */
  .hero-proof { flex-direction: column; gap: 4px; align-items: center; margin-top: 20px; }

  /* Phone menor — não domina a tela */
  .phone         { width: 210px; height: 430px; border-radius: 36px; }
  .phone--lg     { width: 210px; height: 430px; }
  .phone-screen  { top: 8px; bottom: 8px; left: 6px; right: 6px; border-radius: 28px; }
  .phone-notch   { width: 80px; height: 20px; }

  /* Badge reposicionado para não transbordar */
  .qr-badge      { right: -10px; bottom: -12px; padding: 9px 12px; gap: 8px; font-size: 0.66rem; }
  .qr-icon svg   { width: 24px; height: 24px; }

  /* Seções — espaçamento 50% menor no mobile */
  .section           { padding: 28px 0; }
  .section-header    { margin-bottom: 18px; }
  .final-cta-section { padding: 32px 0; }

  /* Grids */
  .features-grid { grid-template-columns: 1fr; max-width: none; }
  .steps-grid    { max-width: none; }

  /* Preço */
  .price-card   { padding: 28px 20px; }
  .price-value  { font-size: 4.2rem; }

  /* CTA grande — texto em uma linha só, sem quebra */
  .btn-hero--lg { font-size: 0.98rem; padding: 16px 24px; white-space: nowrap; }
  .final-title  { font-size: clamp(1.55rem, 6.5vw, 2rem); }
  .final-sub    { font-size: 0.92rem; }

  /* Countdown — grid 2×2 no mobile */
  .urgency-bar    { padding: 28px 20px; gap: 24px; }
  .urgency-title  { font-size: clamp(1.2rem, 5vw, 1.5rem); }
  .countdown-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 300px;
  }
  .cd-sep         { display: none; } /* sem separadores no grid */
  .countdown-block {
    min-width: auto; width: 100%;
    padding: 18px 12px 14px;
  }
  .countdown-block span { font-size: clamp(2.4rem, 10vw, 3.2rem); }

  /* FAQ */
  .faq-q { font-size: 0.88rem; padding: 16px 18px; gap: 12px; }
  .faq-a { padding: 0 18px 16px; font-size: 0.86rem; }
}

/* Telas muito pequenas (< 380px) */
@media (max-width: 380px) {
  .phone       { width: 190px; height: 390px; border-radius: 32px; }
  .phone--lg   { width: 190px; height: 390px; }
  .qr-badge    { display: none; } /* evita overflow em telas minúsculas */
  .hero-badge  { font-size: 0.70rem; padding: 7px 14px; }
  .btn-hero    { font-size: 0.92rem; padding: 15px 22px; }
}
