:root {
  /* Colors */
  --bg-dark: #01040a; /* Obsidian */
  --bg-card: rgba(255, 255, 255, 0.02);
  --border-light: rgba(255, 255, 255, 0.06);
  
  --primary: #00ff88; /* User Green */
  --primary-glow: rgba(0, 255, 136, 0.4);
  --secondary: #00cc6a;
  
  --text-white: #ffffff;
  --text-muted: #8b97b1;
  
  /* Typography */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
}

/* Reset & Base */
body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Background Ambience */
.ambient-light {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
.source-1 { top: -200px; left: -200px; background: var(--primary); }
.source-2 { bottom: -200px; right: -200px; background: #0080ff; }

.noise-overlay {
  position: fixed;
  inset: 0;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.05"/%3E%3C/svg%3E');
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

/* Typography Helpers */
.text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(1, 4, 10, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-item:hover {
  color: var(--text-white);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-item:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Button Reset & Base */
.btn-ghost, .btn-primary, .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

.btn-ghost {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  color: var(--text-white);
  border-color: var(--primary);
  background: rgba(0, 255, 136, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

.btn-primary {
  background: var(--primary);
  color: #01040a;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
  background: #33ff9e;
  border-color: #33ff9e;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-hero-primary {
  position: relative;
  background: var(--primary);
  color: #01040a;
  padding: 20px 48px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 18px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 60px rgba(0, 255, 136, 0.6);
  background: #33ff9e;
}

.btn-hero-primary .btn-content {
  position: relative;
  z-index: 2;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  min-height: 90vh; /* Garante altura mínima para centralização */
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* Reduzido para aproximar visual da esfera */
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 580px; /* Limita largura para evitar quebras estranhas */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 99px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s infinite;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
}

/* Removed .btn-hero-primary block as it is now consolidated above */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Liquid Sphere (CSS only approximation) */
.sphere-container {
  position: relative;
  width: 100%;
  height: 500px; /* Aumentado para dar espaço */
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px; /* Profundidade para elementos flutuantes */
}

.liquid-sphere {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--primary), transparent 70%),
              radial-gradient(circle at 70% 70%, #0080ff, transparent 70%);
  filter: blur(50px);
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 100px rgba(0, 255, 136, 0.15);
}

.orbit-item {
  position: absolute;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s, border-color 0.3s;
  cursor: default;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.orbit-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  display: none; /* Removed dot, using icon now */
}

.orbit-item:hover {
  transform: scale(1.1);
  border-color: var(--primary);
  z-index: 10;
}

.item-1 { top: 15%; left: 15%; animation: float 5s ease-in-out infinite 0.5s; }
.item-2 { top: 45%; right: 5%; animation: float 7s ease-in-out infinite 1s; }
.item-3 { bottom: 15%; left: 25%; animation: float 6s ease-in-out infinite 1.5s; }

/* ── Floating Generation Card ─────────────────── */
.floating-card {
  position: absolute;
  bottom: 4%;
  right: 2%;
  width: 260px;
  background: rgba(10, 12, 18, 0.92);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,255,136,0.05);
  animation: float 8s ease-in-out infinite 2s;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(20px);
}

/* Header do card */
.fc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fc-live {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fc-pulse {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.fc-live-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--primary);
  text-transform: uppercase;
}

.fc-time {
  font-size: 10px;
  color: var(--text-muted);
}

/* Linha do produto */
.fc-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fc-thumb {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,255,136,0.2);
}

.fc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fc-thumb-badge {
  position: absolute;
  bottom: 3px;
  right: 3px;
  background: var(--primary);
  color: #000;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.fc-product-info {
  flex: 1;
  min-width: 0;
}

.fc-product-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}

.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.fc-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.fc-tag-seo  { background: rgba(96,165,250,0.15); color: #60a5fa; border: 1px solid rgba(96,165,250,0.25); }
.fc-tag-img  { background: rgba(167,139,250,0.15); color: #a78bfa; border: 1px solid rgba(167,139,250,0.25); }
.fc-tag-copy { background: rgba(0,255,136,0.12); color: var(--primary); border: 1px solid rgba(0,255,136,0.2); }

/* Métricas */
.fc-metrics {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 12px;
  gap: 8px;
}

.fc-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.fc-metric-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  font-family: var(--font-head);
}

.fc-green { color: var(--primary) !important; }

.fc-metric-label {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
}

.fc-metric-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* Mini card de prova social */
.floating-mini {
  position: absolute;
  top: 12%;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(10, 12, 18, 0.88);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: float 6s ease-in-out infinite 1s;
  z-index: 5;
  backdrop-filter: blur(16px);
}

.fc-fire { font-size: 18px; }

.fc-mini-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.fc-mini-count {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-white);
  font-family: var(--font-head);
}

.fc-mini-label {
  font-size: 10px;
  color: var(--text-muted);
}

/* Sections General */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 32px;
  border-radius: 24px;
  transition: transform 0.3s, border-color 0.3s;
}

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

.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: -1;
  opacity: 0.3;
}

.step-item {
  position: relative;
  padding-top: 20px; /* Space for the floating number */
}

.step-number {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  position: absolute;
  top: -10px;
  left: 24px;
  z-index: 5;
  transition: transform 0.5s;
  text-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
  opacity: 1;
}

.step-card:hover + .step-number, .step-item:hover .step-number {
  transform: translateY(-5px);
  text-shadow: 0 10px 40px rgba(0, 255, 136, 0.6);
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
}

.step-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
}

/* Social Media Section */
.social-ads {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 255, 136, 0.03) 50%, var(--bg-dark) 100%);
}

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

.social-features {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.social-features li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.social-features .icon {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.05);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.social-features strong {
  color: var(--text-white);
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

/* Phone Mockup Wrapper */
.phone-wrapper {
  position: relative;
  width: 300px;
  margin: 0 auto;
}

/* Phone Mockup - Fixed */
.phone-mockup {
  width: 100%; /* Relative to wrapper */
  height: 600px;
  background: #000;
  border-radius: 48px; /* Curvatura suave Apple-like */
  border: 12px solid #1a1a1a; /* Borda metálica */
  position: relative;
  box-shadow: 0 50px 100px rgba(0,0,0,0.6);
  overflow: hidden; /* Garante que nada saia da tela */
  z-index: 10;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 28px;
  background: #1a1a1a;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 20;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000; /* Fundo preto puro */
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 36px; /* Acompanha a borda externa */
  overflow: hidden;
}

/* Ad Preview Inside Phone */
.ad-preview {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.ad-header {
  position: absolute;
  top: 40px; /* Abaixo do notch */
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.ad-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #000;
}

.ad-user-name {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.ad-image {
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80') center/cover;
  position: absolute;
  top: 0;
  left: 0;
}

.ad-footer {
  position: absolute;
  bottom: 40px;
  left: 20px;
  right: 20px;
  text-align: center;
  z-index: 5;
}

.ad-cta-btn {
  background: #3897f0; /* Instagram Blue */
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
}

.ad-caption {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  letter-spacing: -0.5px;
}

/* Floating Stats - Ajustado para não quebrar */
.float-stat {
  position: absolute;
  background: rgba(10, 10, 10, 0.9); /* Dark background */
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 30; /* Acima de tudo */
  animation: float 4s ease-in-out infinite;
  min-width: 80px;
}

.stat-label-mini {
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.stat-value-mini {
  font-size: 20px;
  color: #fff;
  font-weight: 800;
}

.stat-1 { top: 120px; right: -50px; animation-delay: 0s; }
.stat-2 { bottom: 100px; left: -50px; animation-delay: 1.5s; }

/* Calculator Preview */
.calc-preview-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.calc-img-wrapper {
  position: relative;
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.calc-img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

/* Ecosystem Section */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.eco-card {
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.eco-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.eco-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.eco-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.eco-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.integration-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 99px;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid rgba(0, 255, 136, 0.1);
}

.pulse-circle {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}


/* Pricing */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 99px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-light);
}

.pricing-toggle span {
  padding: 10px 24px;
  border-radius: 99px;
  transition: all 0.3s ease;
}

.pricing-toggle .active { 
  background: var(--primary);
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 255, 136, 0.2);
}

.pricing-toggle .inactive { 
  color: var(--text-muted); 
  cursor: pointer; 
}

.pricing-toggle .inactive:hover {
  color: var(--text-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--primary);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 0 60px rgba(0, 255, 136, 0.15);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
}

.card-header {
  text-align: center;
  margin-bottom: 32px;
}

.card-header h3 {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-white);
}

.cents { font-size: 24px; }
.period { font-size: 14px; color: var(--text-muted); }

/* Pricing Features Expand */
.features-list {
  list-style: none;
  margin-bottom: 32px;
  padding: 0;
  max-height: 200px; /* Mostra aprox 4-5 itens */
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  position: relative;
}

.features-list.expanded {
  max-height: 1000px; /* Valor alto para garantir que mostre tudo */
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-toggle-features {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 24px;
  display: block;
  width: 100%;
  text-align: center;
  transition: color 0.3s;
}

.btn-toggle-features:hover {
  color: #fff;
  text-decoration: underline;
}

.features-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.full-width {
  display: block;
  text-align: center;
  width: 100%;
}

/* CTA Section */
.cta-box {
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light); /* Ensure border for glass effect */
}

.cta-box h2 {
  font-family: var(--font-head);
  font-size: 48px;
  margin-bottom: 24px;
}

.cta-box p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.large {
  font-size: 18px;
  padding: 20px 48px;
}

/* No Credit Card */
.no-cc {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Trust Bar */
.trust-bar {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  background: rgba(255,255,255,0.01);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-number {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.trust-icon {
  font-size: 22px;
}

.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

@media (max-width: 600px) {
  .trust-divider { display: none; }
  .trust-items { gap: 24px; }
}

/* Testimonials */
.testimonials-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  width: 360px;
  flex-shrink: 0;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.2);
}

.featured-testimonial {
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.03);
}

.stars {
  color: #FFD700;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.av-1 { background: linear-gradient(135deg, var(--primary), #00cc6a); }
.av-2 { background: linear-gradient(135deg, #0080ff, #00c8ff); }
.av-3 { background: linear-gradient(135deg, #ff6b35, #ff9900); }

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-white);
  margin-bottom: 2px;
}

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

/* Guarantee Banner */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.guarantee-banner strong {
  display: block;
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 4px;
}

.guarantee-banner p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(0, 255, 136, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  font-size: 22px;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* CTA section extras */
.cta-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.cta-guarantee {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(1, 4, 10, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  padding: 16px 24px;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-mobile-cta.visible-cta {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.sticky-cta-inner strong {
  display: block;
  font-size: 15px;
  color: var(--text-white);
}

.sticky-cta-inner span {
  font-size: 12px;
  color: var(--text-muted);
}


/* Footer */
footer {
  border-top: 1px solid var(--border-light);
  padding: 60px 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  height: 24px;
  margin-bottom: 16px;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text-white);
}

/* Shimmer Button Effect */
.shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 10px;
  transition: border-color 0.3s;
}

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

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
}

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

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(1, 4, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-item {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.3s;
  display: block;
}

.mobile-nav-item:hover {
  color: var(--text-white);
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
}

/* Animations */
.reveal-text, .section-header, .feature-card, .step-item, .pricing-card, .stat-number {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVIDADE COMPLETA
   Breakpoints: 992px | 768px | 480px | 360px
═══════════════════════════════════════════════ */

/* ── Tablet / iPad landscape (≤ 992px) ───────── */
@media (max-width: 992px) {

  /* Header */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-content { padding: 0 16px; }
  .logo img { height: 26px; }
  .header-actions { gap: 8px; }
  .btn-ghost { padding: 8px 16px; font-size: 13px; }
  .btn-primary { padding: 8px 16px; font-size: 13px; }

  /* Sections */
  .section { padding: 70px 0; }
  .section-header h2 { font-size: 34px; }
  .section-header p  { font-size: 16px; }

  /* Hero */
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 32px); padding-bottom: 70px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-headline { font-size: 48px; }
  .hero-sub { max-width: 100%; font-size: 17px; }
  .hero-cta-group { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .no-cc { text-align: center; }

  /* Sphere */
  .sphere-container { height: 360px; margin: 0 auto; max-width: 480px; }
  .liquid-sphere { width: 260px; height: 260px; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 24px; max-width: 480px; margin: 0 auto; }
  .process-line { display: none; }
  .step-number { font-size: 42px; }

  /* Social Ads */
  .social-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .social-features li { flex-direction: row; align-items: flex-start; text-align: left; }
  .phone-wrapper { max-width: 260px; }
  .phone-mockup { height: 520px; }

  /* Testimonials */
  .testimonial-card { width: 300px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }

  /* Ecosystem */
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-content { flex-direction: column; gap: 32px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* ── Mobile (≤ 768px) ────────────────────────── */
@media (max-width: 768px) {

  /* Section */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 28px; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-headline { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .btn-hero-primary { padding: 16px 32px; font-size: 16px; }

  /* Sphere — esconde no mobile, desnecessário */
  .hero-visual { display: none; }
  .floating-card, .floating-mini { display: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 24px; }

  /* Process */
  .step-item { padding-top: 16px; }
  .glass { padding: 24px; }

  /* Social */
  .social-features { gap: 20px; margin-top: 24px; }
  .float-stat { display: none; }

  /* Testimonials */
  .testimonial-card { width: 280px; }
  .testimonial-card { padding: 24px; }

  /* Guarantee */
  .guarantee-banner { flex-direction: column; text-align: center; padding: 20px; }
  .guarantee-banner .guarantee-icon { font-size: 28px; }

  /* Pricing */
  .pricing-card { padding: 28px 20px; }
  .pricing-grid { max-width: 100%; }
  .price { font-size: 40px; }

  /* FAQ */
  .faq-question { font-size: 15px; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }

  /* CTA */
  .cta-box { padding: 48px 24px; }
  .cta-box h2 { font-size: 30px; }
  .cta-box p { font-size: 16px; }

  /* Ecosystem */
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }

  /* Tech */
  .tech-grid { grid-template-columns: 1fr; }
  .tech-card { flex-direction: row; gap: 16px; align-items: flex-start; }

  /* Trust bar */
  .trust-items { gap: 16px; }
  .trust-number { font-size: 18px; }
}

/* ── Phone (≤ 480px) ─────────────────────────── */
@media (max-width: 480px) {

  /* Header */
  .logo img { height: 22px; max-width: 130px; }
  .header-actions .btn-ghost { display: none; }
  .header-actions .btn-primary { padding: 8px 14px; font-size: 12px; white-space: nowrap; }

  /* Hero */
  .hero { padding-top: calc(var(--header-height) + 20px); padding-bottom: 48px; }
  .hero-headline { font-size: 32px; line-height: 1.15; }
  .hero-sub { font-size: 15px; }
  .hero-badge { font-size: 11px; }
  .btn-hero-primary { padding: 14px 28px; font-size: 15px; width: 100%; justify-content: center; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 16px; }
  .stat-number { font-size: 20px; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 26px; }

  /* Features */
  .icon-box { width: 40px; height: 40px; font-size: 20px; margin-bottom: 16px; }
  .feature-card h3 { font-size: 17px; }

  /* Process */
  .step-number { font-size: 36px; left: 16px; }
  .step-card h3 { font-size: 20px; }

  /* Pricing */
  .pricing-card { padding: 24px 16px; }
  .price { font-size: 36px; }
  .popular-badge { font-size: 11px; }

  /* Ecosystem */
  .ecosystem-grid { grid-template-columns: 1fr; }
  .eco-card { padding: 20px; }

  /* Tech card horizontal para vertical */
  .tech-card { flex-direction: column; }

  /* Testimonials */
  .testimonial-card { padding: 20px; }
  .testimonial-card > p { font-size: 14px; }

  /* Guarantee */
  .guarantee-banner { padding: 16px; gap: 12px; }

  /* FAQ */
  .faq-question { font-size: 14px; padding: 14px 16px; }

  /* CTA */
  .cta-box { padding: 40px 16px; }
  .cta-box h2 { font-size: 26px; }
  .cta-badge { font-size: 12px; }

  /* Footer */
  .footer-links { flex-direction: column; align-items: center; gap: 12px; }

  /* Trust */
  .trust-items { gap: 12px 20px; }
}

/* ── Image Gallery Marquee ───────────────────── */
.img-gallery-section {
  overflow: hidden;
}
.img-gallery-section .section-header {
  margin-bottom: 36px;
}
.img-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.img-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: img-marquee-scroll 90s linear infinite;
}
.img-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes img-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.img-marquee-item {
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.img-marquee-item:hover {
  transform: scale(1.04);
  border-color: rgba(0,255,136,0.3);
}
.img-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .img-marquee-item { width: 200px; height: 200px; }
}

/* ── Lightbox ───────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
  cursor: default;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ── Value Trigger Banner ───────────────────── */
.value-trigger-banner {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(139,92,246,0.06) 100%);
  border-top: 1px solid rgba(99,102,241,0.2);
  border-bottom: 1px solid rgba(99,102,241,0.2);
}
.value-trigger-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.vt-badge {
  display: inline-block;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.4);
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.vt-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.vt-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.vt-models {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.vt-model-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  transition: all 0.2s;
}
.vt-model-chip:hover { border-color: var(--primary); color: var(--text); }
.vt-chip-cta {
  background: rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.5);
  color: #a5b4fc;
  font-weight: 700;
}
.vt-chip-icon { font-size: 14px; }
.vt-price-compare {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  flex-wrap: wrap;
}
.vt-price-label { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; letter-spacing: 0.5px; text-transform: uppercase; }
.vt-price-val { display: block; font-size: 18px; font-weight: 800; }
.vt-price-val.crossed { text-decoration: line-through; color: #ff6b6b; opacity: 0.8; }
.vt-price-val.green { color: var(--primary); }
.vt-arrow { font-size: 20px; color: var(--text-muted); }

/* ── API Official Badge ───────────────────── */
.api-official-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}
.api-official-badge strong { color: var(--primary); }
.api-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── Extra Avatar Colors ───────────────────── */
.av-4 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.av-5 { background: linear-gradient(135deg, #ec4899, #be185d); }
.av-6 { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.av-7 { background: linear-gradient(135deg, #f97316, #c2410c); }

@media (max-width: 768px) {
  .value-trigger-inner { grid-template-columns: 1fr; gap: 24px; }
  .vt-title { font-size: 22px; }
  .vt-price-compare { justify-content: center; }
  .api-official-badge { font-size: 12px; }
}

/* ── Small Phone (≤ 360px) ───────────────────── */
@media (max-width: 360px) {
  .hero-headline { font-size: 28px; }
  .section-header h2 { font-size: 22px; }
  .btn-hero-primary { font-size: 14px; padding: 13px 20px; }
  .pricing-card { padding: 20px 12px; }
}
