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

:root {
  --bg:      #f5f5f7;
  --bg2:     #ffffff;
  --card:    #ffffff;
  --border:  #e8eaed;
  --red:     #EF5037;
  --red-d:   #d63e25;
  --red-bg:  rgba(239,80,55,0.07);
  --text:    #1a1a2e;
  --muted:   #6b7280;
  --shadow:  0 2px 16px rgba(0,0,0,0.07);
  --shadow-h:0 8px 32px rgba(0,0,0,0.11);
  --radius:  16px;
  --font:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.6; overflow-x: hidden; }

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

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── SHARED ─────────────────────────────────────────────── */
.grad-text { color: var(--red); }
.section-label { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 48px; color: var(--text); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; color: var(--text); }
.brand-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); animation: pulse 2.5s ease-in-out infinite; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav { background: var(--red) !important; color: #fff !important; padding: 8px 20px; border-radius: 8px; font-weight: 600 !important; transition: opacity .2s !important; }
.btn-nav:hover { opacity: .88 !important; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; overflow: hidden; background: var(--bg2); }
.hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 65% 55% at 50% 40%, rgba(239,80,55,.06) 0%, transparent 70%); pointer-events:none; }
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red-bg); border: 1px solid rgba(239,80,55,.25); color: var(--red); font-size: .8rem; font-weight: 600; padding: 6px 16px; border-radius: 999px; margin-bottom: 28px; }
.hero-title { font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; color: var(--text); }
.hero-sub { font-size: clamp(.95rem, 1.8vw, 1.1rem); color: var(--muted); max-width: 620px; margin: 0 auto 36px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary { background: var(--red); color: #fff; text-decoration: none; padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: .95rem; box-shadow: 0 4px 20px rgba(239,80,55,.3); transition: transform .2s, box-shadow .2s, opacity .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(239,80,55,.4); opacity: .92; }
.btn-ghost { background: #fff; border: 1.5px solid var(--border); color: var(--text); text-decoration: none; padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: .95rem; transition: border-color .2s, box-shadow .2s; box-shadow: var(--shadow); }
.btn-ghost:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(239,80,55,.12); }
.hero-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pill { background: var(--bg); border: 1px solid var(--border); color: var(--muted); font-size: .8rem; padding: 6px 14px; border-radius: 999px; font-weight: 500; }

/* ── ORBS ────────────────────────────────────────────────── */
.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.orb-1 { width: 500px; height: 500px; background: rgba(239,80,55,.09); top: -120px; left: -150px; animation: float1 14s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: rgba(239,80,55,.06); bottom: -80px; right: -120px; animation: float2 16s ease-in-out infinite; }
.orb-3 { width: 280px; height: 280px; background: rgba(239,80,55,.05); top: 35%; left: 62%; animation: float3 11s ease-in-out infinite; }
.orb-cta-1 { width: 400px; height: 400px; background: rgba(239,80,55,.1); top: -100px; left: -100px; animation: float1 14s ease-in-out infinite; }
.orb-cta-2 { width: 300px; height: 300px; background: rgba(239,80,55,.07); bottom: -80px; right: -80px; animation: float2 16s ease-in-out infinite; }

@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(28px,-36px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-22px,28px)} }
@keyframes float3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(14px,-18px)} }
@keyframes pulse  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(.8)} }

/* ── WHY SECTION ──────────────────────────────────────────── */
.why { padding: 96px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); transition: border-color .3s, transform .3s, box-shadow .3s; }
.why-card:hover { border-color: rgba(239,80,55,.3); transform: translateY(-4px); box-shadow: var(--shadow-h); }
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── MODULES SECTION ─────────────────────────────────────── */
.modulos { padding: 96px 0; background: var(--bg2); }

/* Module 01 — Core (full width) */
.mod-core { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; background: var(--card); border: 1.5px solid rgba(239,80,55,.22); border-radius: 20px; padding: 48px; margin-bottom: 28px; position: relative; overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .3s; }
.mod-core::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 55% 80% at 0% 50%, rgba(239,80,55,.04) 0%, transparent 70%); pointer-events:none; }
.mod-core:hover { box-shadow: 0 8px 40px rgba(239,80,55,.1); }
.mod-num { font-size: 5rem; font-weight: 900; color: rgba(239,80,55,.12); line-height: 1; margin-bottom: 8px; }
.mod-num-sm { font-size: 2.5rem; font-weight: 900; color: rgba(239,80,55,.1); line-height: 1; margin-bottom: 8px; }
.mod-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 700; letter-spacing: .05em; padding: 4px 12px; border-radius: 999px; margin-bottom: 16px; }
.mod-badge.required { background: rgba(239,80,55,.1); border: 1px solid rgba(239,80,55,.3); color: var(--red); }
.mod-badge.addon    { background: var(--bg); border: 1px solid var(--border); color: var(--muted); }
.mod-badge.popular  { background: rgba(239,80,55,.08); border: 1px solid rgba(239,80,55,.25); color: var(--red); }
.mod-icon-big { font-size: 3rem; margin-bottom: 12px; }
.mod-title { font-size: 1.55rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.mod-sub   { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.mod-price { font-size: 1.8rem; font-weight: 900; color: var(--red); margin-bottom: 16px; }
.mod-desc  { color: var(--muted); font-size: .92rem; line-height: 1.7; margin-bottom: 20px; }
.mod-alert { background: rgba(239,80,55,.07); border: 1px solid rgba(239,80,55,.2); border-radius: 8px; padding: 10px 16px; font-size: .82rem; color: var(--red); }
.mod-core-right { display: flex; align-items: center; }

.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-size: .88rem; padding: 12px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; }

.feat-list-sm { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.feat-list-sm .feat { padding: 8px 12px; font-size: .84rem; }

/* Module Grid (02-04) */
.mod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.mod-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); transition: border-color .3s, transform .3s, box-shadow .3s; position: relative; }
.mod-card:hover { border-color: rgba(239,80,55,.3); transform: translateY(-4px); box-shadow: var(--shadow-h); }
.mod-highlight { border-color: rgba(239,80,55,.2) !important; }
.mod-highlight:hover { border-color: var(--red) !important; }
.mod-icon { font-size: 2.2rem; margin-bottom: 12px; }

/* ── PACKAGE SECTION ─────────────────────────────────────── */
.pacote { padding: 96px 0; background: var(--bg); }
.pkg-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--card); border: 1.5px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-h); }
.pkg-left { padding: 48px; border-right: 1px solid var(--border); }
.pkg-left-title { font-size: .78rem; font-weight: 700; margin-bottom: 28px; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.pkg-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.pkg-row:last-child { border-bottom: none; }
.pkg-icon { font-size: 1.3rem; }
.pkg-name { flex: 1; font-size: .92rem; color: var(--text); font-weight: 500; }
.pkg-val { font-size: .9rem; font-weight: 700; color: var(--muted); }
.pkg-divider { border-top: 1.5px solid var(--border); margin: 8px 0; }
.pkg-total-row .pkg-name { font-weight: 700; color: var(--text); }
.strike { text-decoration: line-through; opacity: .45; }
.pkg-right { padding: 48px; background: var(--red-bg); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.deal-label-tag { display: inline-block; background: rgba(239,80,55,.12); border: 1px solid rgba(239,80,55,.3); color: var(--red); font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; letter-spacing: .05em; }
.deal-price { font-size: 3.2rem; font-weight: 900; color: var(--red); margin-bottom: 8px; }
.deal-economy { color: #15803d; font-size: .88rem; font-weight: 600; margin-bottom: 28px; background: rgba(21,128,61,.1); border: 1px solid rgba(21,128,61,.2); padding: 4px 14px; border-radius: 999px; display: inline-block; }
.deal-feats { text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; width: 100%; }
.deal-feat { font-size: .88rem; color: var(--text); }
.btn-deal { display: block; width: 100%; background: var(--red); color: #fff; text-decoration: none; padding: 16px; border-radius: 12px; font-weight: 700; text-align: center; font-size: 1rem; box-shadow: 0 4px 20px rgba(239,80,55,.3); transition: transform .2s, box-shadow .2s, opacity .2s; }
.btn-deal:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(239,80,55,.4); opacity: .92; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-section { position: relative; padding: 120px 0; text-align: center; overflow: hidden; background: var(--text); }
.cta-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(239,80,55,.14) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; color: #fff; }
.cta-content p { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 36px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { padding: 28px 0; border-top: 1px solid var(--border); text-align: center; background: var(--bg2); }
.footer p { color: var(--muted); font-size: .84rem; }

/* ── SCREENSHOTS / CAROUSEL ─────────────────────────────── */
.screenshots-section { padding: 96px 0; background: var(--bg); }
.car-outer { position: relative; display: flex; align-items: center; padding: 0 56px; margin-top: 8px; }
.car-viewport { overflow: hidden; width: 100%; }
.car-track { display: flex; gap: 16px; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.car-slide { min-width: calc(33.333% - 11px); flex-shrink: 0; cursor: zoom-in; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.car-slide:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--shadow-h); }
.car-slide img { width: 100%; height: 210px; object-fit: cover; object-position: top; display: block; }
.car-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--card); color: var(--text); font-size: 1rem; cursor: pointer; box-shadow: var(--shadow); transition: background .2s, border-color .2s, color .2s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.car-btn:hover:not(:disabled) { background: var(--red); border-color: var(--red); color: #fff; }
.car-btn:disabled { opacity: .3; cursor: default; }
.car-prev { left: 8px; }
.car-next { right: 8px; }
.car-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.car-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background .2s, transform .2s; border: none; padding: 0; flex-shrink: 0; }
.car-dot.active { background: var(--red); transform: scale(1.4); }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(10,10,15,.93); backdrop-filter: blur(10px); }
.lb-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; max-width: 90vw; max-height: 85vh; }
.lb-content img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: 10px; box-shadow: 0 32px 80px rgba(0,0,0,.6); display: block; transition: opacity .2s; }
.lb-close { position: fixed; top: 20px; right: 24px; z-index: 10; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-close:hover { background: var(--red); border-color: var(--red); }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.lb-nav:hover:not(:disabled) { background: var(--red); border-color: var(--red); }
.lb-nav:disabled { opacity: .25; cursor: default; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-counter { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 10; color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 500; background: rgba(0,0,0,.45); padding: 5px 16px; border-radius: 999px; white-space: nowrap; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links a:not(.btn-nav) { display: none; }
  .mod-core { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .pkg-card { grid-template-columns: 1fr; }
  .pkg-left { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .pkg-right { padding: 32px 24px; }
  .mod-grid { grid-template-columns: 1fr; }
  .car-slide { min-width: calc(100% - 0px); }
  .car-outer { padding: 0 44px; }
  .lb-nav { width: 38px; height: 38px; font-size: 1rem; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
