@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --brand-dark: #111827;
  --brand-navy: #0F1E3C;
  --accent: #FF6B35;
  --accent-light: #FF8C5A;
  --accent-glow: rgba(255, 107, 53, 0.15);
  --white: #FFFFFF;
  --gray-50: #F9F8F6;
  --gray-100: #F0EEE9;
  --gray-300: #C4BFB5;
  --gray-500: #857F75;
  --gray-700: #3D3830;
  --green: #22C55E;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--gray-50);
  color: var(--brand-dark);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── UTILS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(11, 17, 32, 0.97); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; color: #fff;
}
.nav-logo-name {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 15px; color: #fff; letter-spacing: -0.01em;
}

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.6); font-size: 13px; padding: 6px 14px;
  border-radius: var(--radius-sm); transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.07); }

.nav-cta {
  background: var(--accent); color: #fff; font-size: 13px; font-weight: 500;
  padding: 8px 18px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 1.5px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--brand-navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 100px 0 60px;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-orb1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  top: -100px; right: -150px; pointer-events: none;
}
.hero-bg-orb2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,60,100,0.5) 0%, transparent 70%);
  bottom: -50px; left: -80px; pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-glow); border: 0.5px solid rgba(255,107,53,0.4);
  color: #FF8C5A; padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 500; margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }

.hero h1 {
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  color: #fff; margin-bottom: 20px; letter-spacing: -0.02em;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .line2 { display: block; }

.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 440px; margin-bottom: 36px; line-height: 1.8;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--accent); color: #fff; font-size: 14px; font-weight: 500;
  padding: 13px 26px; border-radius: var(--radius-md); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }

.btn-outline {
  background: rgba(255,255,255,0.1); color: #fff; font-size: 14px; font-weight: 500;
  padding: 13px 26px; border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-outline:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 36px;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat { }
.stat-num { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* Hero right — visual mockup card */
.hero-visual {
  display: flex; flex-direction: column; gap: 16px;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-card {
  background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 20px; backdrop-filter: blur(10px);
}
.hero-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hero-card-icon {
  width: 38px; height: 38px; border-radius: 8px; background: var(--accent-glow);
  border: 0.5px solid rgba(255,107,53,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.hero-card-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: #fff; }
.hero-card-sub { font-size: 11px; color: rgba(255,255,255,0.4); }
.hero-card-bar { height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; margin-bottom: 10px; }
.hero-card-bar-fill { height: 100%; border-radius: 2px; background: var(--accent); }
.hero-card-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.hero-card-price-row {
  display: flex; align-items: center; justify-content: space-between; margin-top: 14px;
}
.hero-card-price { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--accent); }
.hero-card-btn {
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 500;
  padding: 7px 14px; border-radius: 6px; cursor: pointer; border: none;
}

@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* ── SECTION BASE ── */
.section { padding: 80px 0; }
.section-tag {
  display: inline-block; background: rgba(255,107,53,0.1); color: #CC4A1A;
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px); font-weight: 700;
  color: var(--brand-dark); letter-spacing: -0.02em; margin-bottom: 10px;
}
.section-title .accent { color: var(--accent); }
.section-sub { font-size: 15px; color: var(--gray-500); max-width: 480px; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── ACOES GRID ── */
.acoes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}

.acao-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 0.5px solid rgba(0,0,0,0.07);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.acao-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.acao-thumb {
  width: 100%; height: 190px; object-fit: cover;
  background: linear-gradient(135deg, #1A1A2E, #0F3460);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.acao-thumb img { width: 100%; height: 100%; object-fit: cover; }
.acao-thumb-placeholder {
  color: rgba(255,255,255,0.15); font-size: 13px; font-family: 'Syne', sans-serif;
}
.acao-badge-novo {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px; letter-spacing: 0.04em;
}

.acao-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }

.acao-compat {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--gray-500);
}
.compat-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

.acao-title {
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--brand-dark); line-height: 1.3;
}

.acao-desc { font-size: 13px; color: var(--gray-500); line-height: 1.7; flex: 1; }

.acao-video-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--accent); font-weight: 500;
  background: var(--accent-glow); border: 0.5px solid rgba(255,107,53,0.25);
  padding: 6px 12px; border-radius: var(--radius-sm); cursor: pointer;
  width: fit-content; transition: background 0.2s;
}
.acao-video-btn:hover { background: rgba(255,107,53,0.22); }
.play-icon { width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 9px; border-color: transparent transparent transparent var(--accent); }

.acao-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-top: 0.5px solid rgba(0,0,0,0.06);
  background: var(--gray-50);
}
.acao-price { }
.acao-price-label { font-size: 10px; color: var(--gray-500); margin-bottom: 2px; }
.acao-price-value {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--accent);
}
.btn-comprar {
  background: var(--brand-dark); color: #fff; font-size: 13px; font-weight: 500;
  padding: 10px 20px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.2s, transform 0.15s;
}
.btn-comprar:hover { background: var(--brand-navy); transform: translateY(-1px); }

/* ── VIDEO MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.85); align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-inner {
  background: #111; border-radius: var(--radius-lg); overflow: hidden;
  max-width: 800px; width: 100%; position: relative;
}
.modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 10;
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
}
.modal-inner iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--brand-navy); padding: 80px 0; position: relative; overflow: hidden;
}
.how-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.how-section .section-tag { background: rgba(255,107,53,0.15); color: #FF8C5A; }
.how-section .section-title { color: #fff; }
.how-section .section-sub { color: rgba(255,255,255,0.5); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.steps-connector {
  position: absolute; top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: rgba(255,107,53,0.25); z-index: 0;
}

.step-card {
  background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 24px 20px; text-align: center;
  position: relative; z-index: 1;
}
.step-num-wrap {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; color: #fff;
}
.step-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #E8501A 100%);
  padding: 64px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.btn-white {
  background: #fff; color: var(--accent); font-size: 14px; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius-md); border: none; cursor: pointer;
  font-family: 'Syne', sans-serif; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* ── FOOTER ── */
.footer {
  background: var(--brand-dark); padding: 48px 0 28px; color: rgba(255,255,255,0.4);
}
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-brand .nav-logo-name { font-size: 16px; margin-bottom: 8px; }
.footer-brand p { font-size: 12px; max-width: 240px; line-height: 1.7; }
.footer-links h4 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 8px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.06); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ── PÁGINA DE DETALHE ── */
.detalhe-hero {
  background: var(--brand-navy); padding: 120px 0 60px;
  position: relative; overflow: hidden;
}
.detalhe-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.detalhe-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.detalhe-hero h1 { font-size: clamp(26px, 3vw, 42px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.detalhe-hero .hero-desc { margin-bottom: 28px; }
.detalhe-thumb { border-radius: var(--radius-lg); overflow: hidden; border: 0.5px solid rgba(255,255,255,0.1); }
.detalhe-thumb img { width: 100%; }
.detalhe-thumb-placeholder {
  background: linear-gradient(135deg, #1A2540, #0F3460);
  height: 280px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 14px;
}
.detalhe-price-box {
  background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 24px;
}
.detalhe-price { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
.detalhe-price-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.detalhe-btn { width: 100%; text-align: center; justify-content: center; font-size: 15px; padding: 15px; border-radius: var(--radius-md); margin-bottom: 12px; }
.detalhe-note { font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; }
.detalhe-content { padding: 64px 0; }
.detalhe-content h2 { font-size: 22px; font-weight: 700; color: var(--brand-dark); margin-bottom: 16px; margin-top: 32px; }
.detalhe-content p { font-size: 15px; color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }
.detalhe-video { border-radius: var(--radius-lg); overflow: hidden; margin: 32px 0; background: #000; }
.detalhe-video iframe { width: 100%; aspect-ratio: 16/9; border: none; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner, .detalhe-hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-connector { display: none; }
  .nav-mobile-menu {
    display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(11,17,32,0.98); z-index: 99;
    flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a { font-size: 20px; color: rgba(255,255,255,0.8); font-family: 'Syne', sans-serif; }
  .nav-mobile-menu .nav-cta { display: block; font-size: 15px; padding: 12px 28px; }
  .acoes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
}
