/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e00000;
  --red-dark: #b00000;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --muted: #999;
  --blue: #00aaff;
  --green: #00cc44;
  --purple: #9933ff;
  --orange: #ff8800;
  --gold: #ffcc00;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

.red { color: var(--red); }
.blue { color: var(--blue); }
.green { color: var(--green); }
.purple { color: var(--purple); }
.orange { color: var(--orange); }
.gold { color: var(--gold); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-alt { background: var(--bg2); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { color: var(--muted); font-size: 1.05rem; }
.divider { width: 60px; height: 3px; background: var(--red); margin: 12px auto 0; border-radius: 2px; }

/* ===== LOGO SVG ===== */
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; display: block; }

@media (max-width: 768px) {
  .logo-img { height: 38px; }
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .cine { font-size: 1.3rem; font-weight: 900; color: var(--white); letter-spacing: 1px; }
.logo-text .pulse { font-size: 1.3rem; font-weight: 900; color: var(--red); letter-spacing: 1px; }
.logo-text .tagline { font-size: 0.55rem; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 1px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  padding: 7px 14px; border-radius: 6px; font-size: 0.88rem; font-weight: 500;
  color: var(--text); transition: all 0.2s;
}
.nav-links a:hover { background: var(--bg3); color: var(--red); }
.nav-links .nav-cta a {
  background: var(--red); color: var(--white); font-weight: 700;
}
.nav-links .nav-cta a:hover { background: var(--red-dark); color: var(--white); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px; font-weight: 700;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: all 0.2s; text-align: center; white-space: nowrap;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(220,0,0,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--bg); }
.btn-green { background: #25d366; color: var(--white); }
.btn-green:hover { background: #1ebe5a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
  display: flex; align-items: center;
  padding-top: 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(220,0,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(220,0,0,0.15); border: 1px solid rgba(220,0,0,0.3);
  color: var(--red); padding: 6px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { margin-bottom: 16px; }
.hero p { color: var(--muted); font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 340px; width: 100%;
}
.hero-card .pulse-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
}
.hero-card h3 { margin-bottom: 8px; }
.hero-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-box {
  background: var(--bg2); border-radius: 8px; padding: 14px 10px; text-align: center;
}
.stat-box .num { font-size: 1.4rem; font-weight: 800; color: var(--red); }
.stat-box .lbl { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== WHY SECTION ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: var(--red); transform: translateY(-3px); }
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h3 { margin-bottom: 8px; font-size: 1rem; }
.why-card p { color: var(--muted); font-size: 0.88rem; }

/* ===== PLANS OVERVIEW ===== */
.plans-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.plan-tab {
  padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; border: 2px solid var(--border); background: var(--bg3);
  color: var(--muted); transition: all 0.2s;
}
.plan-tab:hover, .plan-tab.active { border-color: var(--red); color: var(--white); background: rgba(220,0,0,0.1); }

.plans-cta { text-align: center; margin-top: 40px; }
.plans-cta p { color: var(--muted); margin-bottom: 16px; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.cards-grid-5 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.plan-card {
  background: var(--bg3); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center; position: relative;
  transition: all 0.25s; display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.plan-card.featured { border-color: var(--gold); }
.plan-card.featured::before {
  content: 'MAIS LUCRATIVO';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000; font-size: 0.65rem; font-weight: 800;
  padding: 3px 12px; border-radius: 20px; letter-spacing: 1px; white-space: nowrap;
}

.card-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 14px;
}
.badge-blue { background: rgba(0,170,255,0.15); color: var(--blue); border: 1px solid rgba(0,170,255,0.3); }
.badge-green { background: rgba(0,204,68,0.15); color: var(--green); border: 1px solid rgba(0,204,68,0.3); }
.badge-purple { background: rgba(153,51,255,0.15); color: var(--purple); border: 1px solid rgba(153,51,255,0.3); }
.badge-orange { background: rgba(255,136,0,0.15); color: var(--orange); border: 1px solid rgba(255,136,0,0.3); }
.badge-gold { background: rgba(255,204,0,0.15); color: var(--gold); border: 1px solid rgba(255,204,0,0.3); }
.badge-red { background: rgba(220,0,0,0.15); color: var(--red); border: 1px solid rgba(220,0,0,0.3); }

.card-icon { font-size: 2rem; margin-bottom: 10px; }
.card-credits { font-size: 2.8rem; font-weight: 900; line-height: 1; word-break: break-word; overflow-wrap: break-word; }
.card-credits.text-fit { font-size: clamp(1.2rem, 3.5vw, 2.2rem); }
.card-credits-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.card-price-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.card-price { font-size: 2rem; font-weight: 900; margin: 4px 0; }
.card-sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; }
.card-validity {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg2); border-radius: 6px; padding: 5px 10px;
  font-size: 0.78rem; color: var(--muted); margin: 8px 0 16px;
}
.card-tip {
  font-size: 0.78rem; color: var(--muted); font-style: italic;
  margin-bottom: 16px; flex: 1;
}
.card-cta { margin-top: auto; }

/* ===== BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.benefit-icon { font-size: 1.8rem; flex-shrink: 0; }
.benefit-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.benefit-item p { color: var(--muted); font-size: 0.85rem; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #1a0000, #0a0a0a);
  border-top: 1px solid var(--border);
  text-align: center; padding: 80px 0;
}
.cta-final h2 { margin-bottom: 14px; }
.cta-final p { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 60%, #0a0a0a 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(220,0,0,0.1) 0%, transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 20px; }
.page-hero .badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.page-hero .badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg3); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; color: var(--muted);
}

/* ===== INFO BANNER ===== */
.info-banner {
  background: linear-gradient(90deg, rgba(220,0,0,0.1), rgba(220,0,0,0.05));
  border: 1px solid rgba(220,0,0,0.2);
  border-radius: var(--radius); padding: 20px 28px;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.info-banner .icon { font-size: 1.8rem; flex-shrink: 0; }
.info-banner p { color: var(--text); font-size: 0.95rem; }
.info-banner strong { color: var(--red); }

/* ===== FEATURES ROW ===== */
.features-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--border);
}
.feature-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 18px;
}
.feature-pill .icon { font-size: 1.3rem; }
.feature-pill span { font-size: 0.85rem; color: var(--muted); }
.feature-pill strong { display: block; font-size: 0.9rem; color: var(--text); }

/* ===== FORM ===== */
.form-section { max-width: 640px; margin: 0 auto; }
.form-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
}
.form-card h3 { margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin-bottom: 28px; font-size: 0.95rem; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px; color: var(--text);
  font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg2); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.7); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8); }
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 40px 0 20px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; color: var(--muted); font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.98); border-bottom: 1px solid var(--border);
    padding: 16px 20px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; border-radius: 6px; }
  .hamburger { display: flex; }
  .navbar .container { position: relative; }
  .cards-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .cards-grid-5 { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}
