* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root {
  --bg: #0a0a0a;
  --bg-card: #121212;
  --border: #222;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --accent: #f472b6;
  --accent-hover: #f9a8d4;
  --radius: 12px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header colado às bordas */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244, 114, 182, 0.45);
}

.logo-text { font-weight: 700; font-size: 1.15rem; }

.btn-more {
  background: rgba(244, 114, 182, 0.15);
  color: #f9a8d4;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
  white-space: nowrap;
}
.btn-more:hover { background: var(--accent); color: #1a0a14; }

/* Hero */
.hero {
  padding: 90px 0 70px;
  text-align: center;
  background: radial-gradient(ellipse at top, #1a0a14 0%, var(--bg) 70%);
}

.badge {
  display: inline-block;
  background: rgba(244, 114, 182, 0.15);
  color: #f9a8d4;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(244, 114, 182, 0.3);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(244, 114, 182, 0.25); }
  50% { box-shadow: 0 0 22px rgba(244, 114, 182, 0.5); }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(244, 114, 182, 0.25);
}
.hero h1 span { color: var(--accent); }

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #1a0a14;
  box-shadow: 0 0 20px rgba(244, 114, 182, 0.45);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(244, 114, 182, 0.7);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid #333;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Benefits */
.benefits { padding: 80px 0; }
.benefits h2, .preview h2, .pricing h2, .how h2, .faq h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 40px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: 0.25s;
}
.benefit-card:hover {
  border-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(244, 114, 182, 0.15);
}
.benefit-icon { font-size: 1.8rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Preview - versão que já estava boa */
.preview { padding: 80px 0; background: #0d0d0d; }

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  touch-action: pan-y;
  flex: 1;
}
.carousel-track { display: flex; transition: transform 0.35s ease; }
.carousel-slide { min-width: 100%; display: flex; justify-content: center; }

.preview-video {
  width: 100%;
  aspect-ratio: 9/13;
  max-height: 520px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.preview-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mute-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 5;
  transition: 0.2s;
}
.mute-btn:hover { background: rgba(244, 114, 182, 0.85); }

.carousel-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s;
}
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: #1a0a14; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #333; border: none; cursor: pointer; padding: 0;
}
.dot.active { background: var(--accent); }

/* Pricing */
.pricing { padding: 80px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: 0.25s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(244, 114, 182, 0.25);
  border-color: #333;
}
.price-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 40px rgba(244, 114, 182, 0.25);
}
.price-card.popular:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px var(--accent), 0 0 60px rgba(244, 114, 182, 0.5);
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #1a0a14;
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
}
.price-header { text-align: center; margin-bottom: 28px; }
.price-header h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-muted); }
.price { font-size: 2.6rem; font-weight: 800; }
.price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li { padding: 8px 0; color: var(--text-muted); font-size: 0.95rem; }
.price-card .btn { width: 100%; }

.trust-badges {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 16px; margin-top: 40px;
}
.trust-badge {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 18px;
  font-size: 0.9rem; color: var(--text-muted); transition: 0.2s;
}
.trust-badge:hover {
  border-color: var(--accent); color: var(--text);
  box-shadow: 0 0 15px rgba(244, 114, 182, 0.2);
}

/* How it works */
.how { padding: 80px 0; background: #0d0d0d; }
.steps {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 48px; flex-wrap: wrap;
}
.step {
  text-align: center; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 24px; flex: 1; min-width: 200px; max-width: 280px;
  transition: 0.25s;
}
.step:hover {
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(244, 114, 182, 0.2);
  transform: translateY(-4px);
}
.step-icon { font-size: 2rem; margin-bottom: 8px; }
.step-num { font-size: 0.85rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 10px; }
.step h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; }
.step-arrow { color: var(--accent); font-size: 1.5rem; font-weight: 700; opacity: 0.7; }

/* More */
.more { padding: 80px 0; }
.more-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.more-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px; text-align: center;
}
.more-card-link { text-decoration: none; color: inherit; display: block; transition: 0.25s; }
.more-card-link:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(244, 114, 182, 0.2);
  transform: translateY(-4px);
}
.more-img-photo {
  width: 100%; height: 140px; object-fit: cover;
  border-radius: 12px; margin-bottom: 18px; display: block;
}
.more-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.more-card p { color: var(--text-muted); margin-bottom: 14px; font-size: 0.95rem; }
.more-cta { color: var(--accent); font-weight: 600; font-size: 0.95rem; }

/* FAQ */
.faq { padding: 80px 0; background: #0d0d0d; }
.faq-list { max-width: 700px; margin: 40px auto 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 12px; background: var(--bg-card); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--text); font-size: 1rem; font-weight: 600;
  padding: 18px 20px; cursor: pointer;
}
.faq-question::after { content: '+'; float: right; color: var(--text-muted); }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; }
.faq-item.active .faq-answer { max-height: 220px; }
.faq-answer p { padding: 0 20px 18px; color: var(--text-muted); }
.faq-answer a { color: var(--accent); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 50px 0 30px; }
.footer-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 30px; margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  text-align: center; padding-top: 20px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem;
}
.policy-links {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.policy-btn {
  background: none; border: none; color: var(--text-muted);
  font-size: 0.85rem; cursor: pointer; padding: 4px 6px;
}
.policy-btn:hover { color: var(--text); text-decoration: underline; }
.policy-sep { color: #444; }

.policy-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.75); z-index: 200;
  align-items: center; justify-content: center; padding: 20px;
}
.policy-modal.open { display: flex; }
.policy-modal-content {
  background: #151515; border: 1px solid #333; border-radius: 16px;
  padding: 32px; max-width: 480px; width: 100%; position: relative;
}
.policy-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer;
}
.policy-modal-content h3 { margin-bottom: 12px; }
.policy-modal-content p { color: var(--text-muted); font-size: 0.95rem; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .more-grid { grid-template-columns: 1fr; }
  .carousel { max-width: 340px; gap: 10px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.4rem; }
  .preview-video { max-height: 460px; aspect-ratio: 9/14; }
}