/* =========================================================
   XCONNECT DIGITAL EXPERIENCE — ULTRA MODERN DESIGN SYSTEM
   High-Converting, Futuristic SaaS Aesthetic (Linear/Stripe/Vercel)
   ========================================================= */

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

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

:root {
  /* Color Palette - Dark Mode (Default) */
  --bg: #030712;
  --bg-secondary: #080f21;
  --bg-alt: #0c1429;
  --surface: rgba(15, 23, 42, 0.65);
  --surface-hover: rgba(22, 36, 66, 0.85);
  --card: rgba(15, 23, 42, 0.72);
  --card-hover: rgba(26, 41, 74, 0.85);

  /* Accents */
  --cyan: #00f0ff;
  --cyan-glow: rgba(0, 240, 255, 0.35);
  --cyan-soft: rgba(0, 240, 255, 0.12);
  --blue: #2563eb;
  --blue-light: #38bdf8;
  --blue-dark: #1d4ed8;
  --purple: #8b5cf6;
  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.35);
  --orange: #f97316;
  --red: #ef4444;

  /* Typography */
  --text: #f8fafc;
  --text-secondary: #cbd5e1;
  --muted: #94a3b8;
  --dim: #64748b;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Borders & Shadows */
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 240, 255, 0.3);
  --border-hover: rgba(0, 240, 255, 0.5);
  --glow: 0 0 25px rgba(0, 240, 255, 0.3);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 24px -4px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 10px 40px -10px rgba(0, 240, 255, 0.25);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-alt: #e2e8f0;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-hover: #ffffff;
  --card: rgba(255, 255, 255, 0.92);
  --card-hover: #ffffff;

  --cyan: #0284c7;
  --cyan-glow: rgba(2, 132, 199, 0.25);
  --cyan-soft: rgba(2, 132, 199, 0.08);
  --blue: #2563eb;
  --blue-light: #0284c7;
  --blue-dark: #1e40af;

  --text: #0f172a;
  --text-secondary: #334155;
  --muted: #64748b;
  --dim: #94a3b8;

  --border: rgba(15, 23, 42, 0.09);
  --border-glow: rgba(2, 132, 199, 0.35);
  --border-hover: rgba(2, 132, 199, 0.6);
  --glow: 0 0 25px rgba(2, 132, 199, 0.2);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 30px -5px rgba(2, 132, 199, 0.15);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background-color: var(--bg);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 240, 255, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 60%, rgba(59, 130, 246, 0.05), transparent 60%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(139, 92, 246, 0.04), transparent 50%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 0.4s ease;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

::selection {
  background: rgba(0, 240, 255, 0.3);
  color: #fff;
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.25);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

/* ===== UTILITIES & BASE TYPOGRAPHY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.text-center {
  text-align: center;
}

/* Status Dot Indicator */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 16px 0;
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text);
}

.nav__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid var(--border-glow);
  color: var(--cyan);
  font-size: 16px;
  box-shadow: 0 0 15px var(--cyan-glow);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Modern Theme Toggle Button */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* Mobile Toggle Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: var(--transition);
}

.nav__toggle span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 800px at 50% -100px, rgba(0, 240, 255, 0.15), transparent 70%),
    radial-gradient(circle 600px at 90% 40%, rgba(59, 130, 246, 0.1), transparent 60%),
    radial-gradient(circle 500px at 10% 80%, rgba(139, 92, 246, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.hero__text {
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glow);
  background: rgba(0, 240, 255, 0.06);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.1);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero__subtitle {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.social-proof-avatars {
  display: flex;
  align-items: center;
}

.social-proof-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  margin-left: -8px;
}
.social-proof-avatars span:first-child { margin-left: 0; }

.social-proof-text {
  font-size: 13px;
  color: var(--text-secondary);
}
.social-proof-text strong {
  color: var(--text);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__mascot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__mascot::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.25), transparent 70%);
  filter: blur(50px);
  z-index: 0;
  animation: auraPulse 4s infinite alternate ease-in-out;
}

@keyframes auraPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

.hero__mascot .mascot {
  position: relative;
  z-index: 1;
  max-height: 460px;
  filter: drop-shadow(0 15px 35px rgba(0, 240, 255, 0.3));
}

/* ===== MASCOT COMPONENT ===== */
.mascot {
  animation: floatMascot 4s ease-in-out infinite;
}

.mascot--glow {
  filter: drop-shadow(0 10px 25px rgba(0, 240, 255, 0.35));
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.mascot-row {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.mascot-row::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.mascot--section {
  max-height: 180px;
  flex-shrink: 0;
}

.mascot-speech {
  flex: 1;
}

.mascot-speech__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mascot-speech__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.mascot-speech__highlight {
  color: var(--text);
  font-weight: 700;
  background: linear-gradient(120deg, rgba(0, 240, 255, 0.15), transparent);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn--primary {
  color: #030712;
  background: linear-gradient(135deg, #00f0ff 0%, #38bdf8 100%);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4), 0 10px 25px -5px rgba(56, 189, 248, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), 0 15px 35px -5px rgba(56, 189, 248, 0.4);
  color: #000;
}

.btn--secondary {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.btn--secondary:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  color: var(--cyan);
}

.btn--whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn--whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.55);
}

.btn--large {
  padding: 16px 36px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}

.btn--full {
  width: 100%;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section--alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid var(--border-glow);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section__title strong {
  background: linear-gradient(135deg, var(--cyan) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  max-width: 680px;
  margin: 0 auto 50px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* ===== STATS DOCK ===== */
.stats {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
}

.stats__item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.stats__item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.stats__item:last-child {
  border-right: none;
}

.stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px var(--cyan-glow);
}

.stats__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ===== PRODUCT CARDS & GRID ===== */
.grid {
  display: grid;
  gap: 28px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.badge--hot {
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #ffffff;
}

.badge--new {
  background: linear-gradient(135deg, #00f0ff, #3b82f6);
  color: #030712;
}

.badge--sale {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #ffffff;
}

.card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0b1329;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card__image {
  transform: scale(1.06);
}

.card__content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.card__description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card__price-box {
  margin: 16px 0 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.card__price--original {
  font-size: 13px;
  color: var(--dim);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.card__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.card__price small {
  font-size: 16px;
  color: var(--cyan);
}

.card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card__features li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card__features li::before {
  content: '✓';
  color: #10b981;
  font-weight: 900;
}

.card__actions {
  padding: 0 28px 28px;
}

/* ===== SERVICES / BENTO CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.service-card__icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.12), rgba(59, 130, 246, 0.12));
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.service-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-card__description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.testimonial-card__stars {
  color: #fbbf24;
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-card__verified {
  font-size: 11px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.testimonial-card__text {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #030712;
  box-shadow: 0 0 15px var(--cyan-glow);
}

.testimonial-card__name {
  font-weight: 800;
  font-size: 15px;
}

.testimonial-card__role {
  color: var(--muted);
  font-size: 12px;
}

/* ===== FAQ SECTION ===== */
.faq-trigger-wrapper {
  margin: 20px auto 36px;
  text-align: center;
}

.faq-reveal-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.15);
  transition: var(--transition);
}

.faq-reveal-btn:hover {
  background: var(--surface-hover);
  border-color: var(--cyan);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
  color: var(--cyan);
}

.faq-reveal-icon {
  font-size: 20px;
}

.faq-reveal-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.12);
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.faq-reveal-btn[aria-expanded="true"] .faq-reveal-chevron {
  transform: rotate(180deg);
  background: var(--cyan);
  color: #030712;
}

.faq-collapsible {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.faq-collapsible.open {
  max-height: 2400px;
  opacity: 1;
}

.faq {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item:hover {
  border-color: var(--border-hover);
}

.faq__item.active {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
  background: var(--surface-hover);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  transition: var(--transition-fast);
}

.faq__question:hover {
  color: var(--cyan);
}

.faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
  background: var(--cyan);
  color: #030712;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14.5px;
  padding: 0 28px;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

/* ===== CONTACT SECTION ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: start;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font);
  font-size: 14.5px;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.02);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #0b1329;
  color: #fff;
}

.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--cyan);
}

.contact-info__item h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
}

.contact-info__item p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer__brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  transition: var(--transition-fast);
}

.footer__social a:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  color: var(--cyan);
  transform: translateY(-2px);
}

.footer__section h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.footer__section a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.footer__section a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dim);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__security-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  transition: var(--transition);
  animation: floatPulse 3s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 14px rgba(16, 185, 129, 0); }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

/* ===============================================
   PRODUCT 1: CRIO SUA LOJA — HIGH IMPACT STYLES
   =============================================== */
.xconnect-product {
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle 800px at 50% -100px, rgba(0, 240, 255, 0.18), transparent 70%),
    var(--bg);
  color: var(--text);
}

.x-hero {
  max-width: 1000px;
  margin: 0 auto 50px;
  text-align: center;
}

.x-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glow);
  background: rgba(0, 240, 255, 0.08);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.x-hero h1 {
  margin: 24px 0 20px;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.x-hero h1 span {
  background: linear-gradient(135deg, var(--cyan) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.x-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.x-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.x-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.x-stats {
  max-width: 960px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(16px);
}

.x-stat {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.x-stat:last-child { border-right: none; }
.x-stat strong { display: block; font-size: 32px; font-weight: 900; color: var(--cyan); margin-bottom: 6px; }
.x-stat span { color: var(--muted); font-size: 12px; font-weight: 600; }

.x-intro {
  max-width: 800px;
  margin: 80px auto 40px;
  text-align: center;
}
.x-mini-title { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: 1.5px; }
.x-intro h2 { font-size: clamp(28px, 4.5vw, 48px); line-height: 1.1; margin: 16px 0; }
.x-intro h2 span { color: var(--cyan); }
.x-intro p { color: var(--muted); line-height: 1.7; font-size: 16px; }

.x-features {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.x-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  overflow: hidden;
}

.x-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.x-icon { font-size: 34px; margin-bottom: 20px; }
.x-number { position: absolute; top: 24px; right: 24px; color: rgba(0, 240, 255, 0.2); font-size: 26px; font-weight: 900; }
.x-card h3 { font-size: 17px; font-weight: 800; margin: 0 0 10px; }
.x-card p { color: var(--muted); line-height: 1.6; font-size: 14px; }
.x-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width 0.4s ease;
}
.x-card:hover .x-line { width: 100%; }

.x-experience {
  position: relative;
  max-width: 1060px;
  margin: 90px auto;
  padding: 70px 40px;
  text-align: center;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(8, 15, 33, 0.95));
  box-shadow: var(--shadow-glow);
}

.x-experience > span { color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: 2px; }
.x-experience h2 { font-size: clamp(30px, 5vw, 50px); margin: 16px 0; font-weight: 900; }
.x-experience h2 strong { color: var(--cyan); }
.x-experience p { max-width: 680px; margin: 0 auto; color: var(--muted); line-height: 1.7; font-size: 16px; }

.x-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.x-pills span {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.x-included { max-width: 1060px; margin: 90px auto; }
.x-section-heading { text-align: center; margin-bottom: 40px; }
.x-section-heading > span { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: 1.5px; }
.x-section-heading h2 { font-size: clamp(28px, 4.5vw, 46px); margin: 12px 0; font-weight: 900; }
.x-section-heading strong { color: var(--cyan); }

.x-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.x-checklist div {
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.x-checklist div:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
  color: var(--text);
}

.x-difference {
  max-width: 1060px;
  margin: 90px auto;
  padding: 60px;
  border-radius: var(--radius-xl);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}

.x-difference h2 { font-size: clamp(30px, 4.5vw, 48px); margin: 16px 0; font-weight: 900; }
.x-difference h2 span { color: var(--cyan); }
.x-difference p { color: var(--muted); line-height: 1.7; font-size: 16px; }

.x-difference-items {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.x-difference-items div {
  flex: 1;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.x-difference-items b { display: block; color: var(--cyan); font-size: 18px; margin-bottom: 8px; }
.x-difference-items span { font-size: 13.5px; color: var(--muted); }

.x-offer {
  position: relative;
  max-width: 920px;
  margin: 100px auto 50px;
  padding: 70px 30px;
  text-align: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glow);
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.12), transparent 70%), var(--bg-secondary);
  box-shadow: var(--shadow-glow);
}

.x-limited {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.x-offer h2 { font-size: clamp(30px, 5.5vw, 56px); margin: 20px 0 16px; font-weight: 900; }
.x-offer h2 span { color: var(--cyan); }
.x-offer p { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.7; }

.x-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 18px 40px;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: #030712;
  background: linear-gradient(135deg, var(--cyan) 0%, #38bdf8 100%);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.45);
  transition: var(--transition);
}

.x-button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 45px rgba(0, 240, 255, 0.7);
}

.x-offer small {
  display: block;
  margin-top: 20px;
  color: var(--dim);
  font-size: 12px;
}

/* ===============================================
   PRODUCT 2: CRIO SUA LANDING PAGE STYLES
   =============================================== */
.product-description {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-product {
  text-align: center;
}

.product-description .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  color: var(--cyan);
  background: var(--cyan-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.hero-product h1 {
  margin: 24px 0 16px;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-product h1 strong {
  display: block;
  background: linear-gradient(135deg, var(--cyan) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-description .subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.product-description .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.product-description .feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  backdrop-filter: blur(14px);
  transition: var(--transition);
}

.product-description .feature:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.product-description .feature > span { font-size: 30px; }
.product-description .feature h3 { margin: 0 0 8px; font-size: 17px; font-weight: 800; }
.product-description .feature p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.product-description .highlight {
  position: relative;
  margin: 60px 0;
  padding: 60px 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glow);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(8, 15, 33, 0.95));
  text-align: center;
  overflow: hidden;
}

.product-description .highlight h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  margin-bottom: 20px;
  font-weight: 900;
}

.product-description .highlight h2 span { color: var(--cyan); }
.product-description .highlight p { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.7; }

.product-description .included {
  text-align: left;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
}

.product-description .included h2 { color: var(--cyan); font-size: 26px; font-weight: 900; margin-bottom: 24px; }
.product-description .included ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-description .included li {
  padding: 16px 20px;
  color: var(--text-secondary);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}

.product-description .cta {
  margin-top: 60px;
  padding: 60px 30px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12), transparent 70%), var(--card);
  border: 1px solid var(--border-glow);
  text-align: center;
}

.buy-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: var(--radius-lg);
  color: #030712;
  background: linear-gradient(135deg, var(--cyan) 0%, #38bdf8 100%);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
  transition: var(--transition);
}

.buy-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 45px rgba(0, 240, 255, 0.65);
}

/* ===============================================
   PRODUCT 3: BOT WHATSAPP PLANS
   ============================================== */
.bot-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}

.bot-hero h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 900;
  margin: 20px 0;
  letter-spacing: -0.03em;
}

.bot-hero h1 span {
  color: var(--cyan);
}

.bot-features {
  max-width: 960px;
  margin: 40px auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bot-feature {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  backdrop-filter: blur(14px);
  text-align: center;
  transition: var(--transition);
}

.bot-feature:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
}

.bot-feature__icon { font-size: 32px; margin-bottom: 14px; }
.bot-feature__title { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.bot-feature__description { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

.bot-planos {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px;
}

.planos-header { text-align: center; margin-bottom: 50px; }
.planos-header > span { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: 2px; }
.planos-header h2 { margin: 16px 0; font-size: clamp(30px, 4.5vw, 50px); font-weight: 900; }
.planos-header h2 strong { color: var(--cyan); }
.planos-header p { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 15px; }

.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plano {
  position: relative;
  padding: 36px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  overflow: hidden;
}

.plano:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.plano.destaque {
  border-color: var(--cyan);
  background: linear-gradient(145deg, rgba(15, 26, 48, 0.95), rgba(7, 12, 24, 0.95));
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.2);
}

.plano.anual {
  border-color: rgba(139, 92, 246, 0.5);
  background: linear-gradient(145deg, rgba(28, 19, 53, 0.95), rgba(9, 8, 20, 0.95));
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.2);
}

.recomendado, .melhor-oferta {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 8px;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.recomendado { color: #030712; background: var(--cyan); }
.melhor-oferta { color: #fff; background: linear-gradient(90deg, #8b5cf6, #3b82f6); }

.plano-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.plano.destaque .plano-top,
.plano.anual .plano-top { margin-top: 16px; }

.duracao { color: var(--dim); font-size: 11px; font-weight: 900; letter-spacing: 1.5px; }
.plano-icon { font-size: 26px; }
.plano h3 { margin: 0 0 10px; font-size: 16px; font-weight: 800; }

.preco {
  display: flex;
  align-items: baseline;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--text);
}

.preco small { font-size: 18px; color: var(--cyan); margin-right: 4px; }
.periodo { color: var(--dim); font-size: 12px; margin-bottom: 20px; }
.plano-divider { height: 1px; margin: 20px 0; background: var(--border); }

.plano ul { list-style: none; padding: 0; margin-bottom: 30px; flex-grow: 1; display: flex; flex-direction: column; gap: 10px; }
.plano li { font-size: 12.5px; color: var(--text-secondary); }

.plano-btn {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  color: #030712;
  background: linear-gradient(135deg, var(--cyan) 0%, #38bdf8 100%);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  transition: var(--transition);
}

.plano-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

.anual .plano-btn {
  background: linear-gradient(135deg, #a78bfa 0%, #38bdf8 100%);
}

/* ===============================================
   CATALOG PAGE (produtos.html)
   =============================================== */
.catalog-header {
  padding: 130px 0 60px;
  text-align: center;
}

.catalog__filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.filter-btn--active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #030712;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

/* ===============================================
   CHECKOUT PAGE & WIDGETS
   =============================================== */
.checkout-wrapper {
  padding: 130px 0 80px;
}

.checkout-container {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.checkout-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.checkout-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-toggle-box {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  background: var(--surface);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.auth-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition-fast);
}

.auth-btn.active {
  background: var(--card);
  color: var(--cyan);
  box-shadow: var(--shadow-sm);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.pay-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  background: var(--surface);
  transition: var(--transition-fast);
}

.pay-card:hover, .pay-card.active {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.08);
  transform: translateY(-2px);
}

.pay-card .icon { font-size: 26px; margin-bottom: 8px; }
.pay-card .title { font-size: 13px; font-weight: 800; }
.pay-card .subtitle { font-size: 11px; color: var(--muted); }

.pix-box {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.pix-qr-img {
  max-width: 200px;
  margin: 16px auto;
  border-radius: var(--radius-md);
  border: 4px solid #fff;
}

.pix-copy-input {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.pix-copy-input input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
}

/* Order Summary Box */
.order-summary-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
}

.order-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.order-item__img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--border);
}

.order-price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}

.order-price-row.total {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

.order-security-box {
  margin-top: 24px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===============================================
   RESPONSIVE DESIGN BREAKPOINTS
   =============================================== */
@media (max-width: 1080px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero__text {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero__subtitle {
    margin: 0 auto 30px;
  }
  .hero__social-proof {
    justify-content: center;
  }
  .hero__buttons {
    justify-content: center;
  }
  .hero__mascot .mascot {
    max-height: 360px;
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .planos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .checkout-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-glow);
    box-shadow: var(--shadow-lg);
  }

  [data-theme="light"] .nav__links {
    background: rgba(255, 255, 255, 0.98);
  }

  .nav__links--active {
    display: flex;
  }
  .nav__toggle {
    display: flex;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }

  .grid--3 {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .mascot-row {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .mascot--section {
    max-height: 150px;
  }

  /* Product 1 mobile */
  .x-stats { grid-template-columns: repeat(2, 1fr); }
  .x-stat:nth-child(2) { border-right: none; }
  .x-stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .x-features { grid-template-columns: 1fr; }
  .x-checklist { grid-template-columns: 1fr; }
  .x-difference { padding: 36px 20px; }
  .x-difference-items { flex-direction: column; }

  /* Product 2 mobile */
  .product-description .features { grid-template-columns: 1fr; }
  .product-description .included ul { grid-template-columns: 1fr; }

  /* Product 3 mobile */
  .planos-grid { grid-template-columns: 1fr; }
  .bot-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .container { padding: 0 16px; }
  .hero { padding: 110px 0 60px; }
  .hero__title { font-size: 32px; }
  .btn { width: 100%; }
  .stats__item { padding: 20px 10px; }
  .stats__number { font-size: 28px; }
  .card__content { padding: 20px; }
  .card__actions { padding: 0 20px 20px; }
  .contact-card, .contact-info-card { padding: 24px; }
  .payment-grid { grid-template-columns: 1fr; }
}
