/* ==========================================================================
   VANTIQ LANDING PAGE — SVG Icons & 3-Column Plan System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,800&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-main: #f8fafc;
  --bg-gradient-main: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  --bg-surface: #ffffff;
  --bg-soft: #f1f5f9;
  --bg-dark-card: #0f172a;
  --bg-dark-mesh: linear-gradient(135deg, #090d16 0%, #1e1b4b 50%, #450a0a 100%);

  --border-light: rgba(15, 23, 42, 0.08);
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-crimson: rgba(220, 38, 38, 0.25);
  --border-crimson-solid: #dc2626;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-white: #ffffff;

  --accent-crimson: #dc2626;
  --accent-crimson-dark: #b91c1c;
  --accent-crimson-light: #fef2f2;
  --accent-black: #0f172a;
  --accent-amber: #d97706;
  --accent-green: #059669;

  --gradient-crimson: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  --gradient-black: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-light-card: 0 10px 30px rgba(15, 23, 42, 0.05);
  --shadow-light-card-hover: 0 20px 45px rgba(220, 38, 38, 0.12);
  --shadow-dark-card: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-crimson-btn: 0 8px 25px rgba(220, 38, 38, 0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-gradient-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-wrapper {
  position: relative;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 80px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* SVG Vector Icons Styling */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svg-icon svg {
  width: 100%;
  height: 100%;
}

/* Light Background Mesh Glow Orbs */
.light-mesh-decorations {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}

.orb-crimson-light {
  top: -10%; left: -5%;
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
}

.orb-slate-light {
  top: 40%; right: -10%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.06) 0%, transparent 70%);
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  white-space: nowrap;
}

.btn-crimson {
  background: var(--gradient-crimson);
  color: #ffffff;
  box-shadow: var(--shadow-crimson-btn);
  position: relative;
  overflow: hidden;
}

.btn-crimson::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-crimson:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
}
.btn-crimson:hover::before { opacity: 1; }

.btn-black {
  background: var(--accent-black);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}
.btn-black:hover {
  background: var(--gradient-crimson);
  transform: translateY(-2px);
  box-shadow: var(--shadow-crimson-btn);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}
.btn-outline-dark:hover {
  background: var(--bg-soft);
  border-color: var(--accent-black);
  transform: translateY(-2px);
}

.btn-glass-white {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
}
.btn-glass-white:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ── 1. HEADER ─────────────────────────────────────────────────── */
.header-wrapper {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 8px 16px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--accent-crimson);
}

.nav-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  padding: 7px 18px;
  border-radius: 100px;
  width: 260px;
}

.nav-search-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.nav-search-input {
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  color: var(--text-primary);
  width: 100%;
  font-family: inherit;
}

.nav-search-input::placeholder {
  color: var(--text-muted);
}

/* ── 2. HERO CARD SECTION ──────────────────────────────────────── */
.hero-section {
  margin-top: 15px;
  margin-bottom: 70px;
}

.hero-banner-card {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 48px;
}

.hero-video-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.8) 55%, rgba(15, 23, 42, 0.95) 100%);
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-giant-title {
  font-family: var(--font-heading);
  font-size: 105px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 18px;
  color: #e2e8f0;
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── 3. WHY VANTIQ SECTION ─────────────────────────────────────── */
.why-section {
  padding: 70px 0;
}

.why-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-main-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.why-description {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
}

.why-social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.25s;
}
.social-icon-btn svg {
  width: 18px; height: 18px;
}
.social-icon-btn:hover {
  background: var(--accent-crimson);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-crimson-btn);
}

.why-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 20px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light-card);
}

.stat-circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-crimson-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--accent-crimson);
}
.stat-circle-icon svg {
  width: 22px; height: 22px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
}

.stat-text-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

.why-stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.horizontal-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-light-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
}

.horizontal-feature-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.horizontal-feature-card:hover {
  border-color: var(--border-crimson);
  transform: translateY(-4px);
  box-shadow: var(--shadow-light-card-hover);
}

.feature-box-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--gradient-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: var(--shadow-crimson-btn);
}
.feature-box-icon svg {
  width: 26px; height: 26px;
}

.feature-info-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.feature-info-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 4. SHOWCASE DE IMAGENS AMPLIADO ───────────────────────────── */
.showcase-section {
  padding: 50px 0 90px;
}

.showcase-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-crimson);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-light-card);
}

.showcase-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 44px;
}

.showcase-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-crimson);
  background: var(--accent-crimson-light);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.showcase-subtitle {
  font-size: 15.5px;
  color: var(--text-secondary);
}

.showcase-large-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.showcase-big-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.showcase-big-card.reverse {
  grid-template-columns: 0.75fr 1.25fr;
}

.showcase-big-card:hover {
  border-color: var(--border-crimson);
  box-shadow: var(--shadow-light-card-hover);
}

.showcase-img-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  position: relative;
  background: #0f172a;
}

.showcase-img-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-big-card:hover .showcase-img-container img {
  transform: scale(1.03);
}

.showcase-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  background: var(--gradient-crimson);
  color: #fff;
  margin-bottom: 16px;
  box-shadow: var(--shadow-crimson-btn);
}

.showcase-card-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.showcase-card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.showcase-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-feature-list li {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-feature-list li svg {
  width: 16px; height: 16px;
  color: var(--accent-crimson);
  flex-shrink: 0;
}

/* ── 5. PLANOS & ASSINATURAS (Clean 3-Column Grid) ─────────────── */
.packages-section {
  padding: 60px 0 90px;
}

.coupon-bar-centered {
  max-width: 460px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.coupon-inner-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light-card);
  border-radius: 100px;
  padding: 6px 6px 6px 18px;
}

.coupon-input-field {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  color: var(--text-primary);
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coupon-input-field::placeholder {
  color: var(--text-muted);
  text-transform: none;
}

.packages-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-item-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-light-card);
  transition: all 0.3s ease;
  position: relative;
}

.package-item-card.featured {
  border-color: var(--accent-crimson);
  box-shadow: var(--shadow-light-card-hover);
  transform: translateY(-4px);
}

.package-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-light-card-hover);
}

.package-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-crimson);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-crimson-btn);
}

.package-item-header {
  margin-bottom: 24px;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: block;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.package-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-secondary);
}

.package-amount {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  color: var(--text-primary);
}

.package-period {
  font-size: 13px;
  color: var(--text-secondary);
}

.package-save {
  font-size: 12px;
  color: var(--accent-crimson);
  font-weight: 700;
  display: inline-block;
  margin-top: 2px;
}

.package-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.package-features-list li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features-list li svg {
  width: 16px; height: 16px;
  color: var(--accent-crimson);
  flex-shrink: 0;
}

/* ── 6. STEPS SECTION ──────────────────────────────────────────── */
.steps-easy-section {
  padding: 70px 0 90px;
  text-align: center;
}

.steps-easy-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.steps-easy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-easy-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-light-card);
  transition: all 0.3s;
}

.step-easy-card:hover {
  border-color: var(--border-crimson);
  transform: translateY(-4px);
  box-shadow: var(--shadow-light-card-hover);
}

.step-easy-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-crimson-light);
  border: 1px solid rgba(220, 38, 38, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-crimson);
}
.step-easy-icon svg {
  width: 28px; height: 28px;
}

.step-easy-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-easy-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── VIDEO MODAL ───────────────────────────────────────────────── */
.video-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-player {
  width: 100%;
  max-height: 520px;
  display: block;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* ── RESPONSIVE MEDIA QUERIES ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-giant-title { font-size: 72px; }
  .why-grid-layout { grid-template-columns: 1fr; gap: 40px; }
  .showcase-big-card, .showcase-big-card.reverse { grid-template-columns: 1fr; }
  .packages-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 8px 16px; }
  .nav-menu, .nav-search-bar { display: none; }

  .hero-banner-card { height: 440px; padding: 30px 24px; }
  .hero-giant-title { font-size: 46px; }
  .why-stats-row { grid-template-columns: 1fr; }

  .steps-easy-grid { grid-template-columns: 1fr; }
  .showcase-box { padding: 24px; }
}
