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

:root {
  --primary: #9146ff;
  --primary-dark: #6a1fd1;
  --secondary: #c84bff;
  --accent: #00e5ff;
  --accent2: #00b4d8;
  --gold: #f5c542;
  --gold-dark: #e0a800;
  --dark: #0b0b0f;
  --dark-light: #141419;
  --dark-card: #1a1a24;
  --text: #efeff1;
  --text-muted: #9a9ab0;
  --border: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(145, 70, 255, 0.35);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── PARTÍCULAS ─────────────────────────────── */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary), var(--secondary));
  opacity: 0.07;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%       { transform: translateY(-30px) translateX(20px); }
  66%       { transform: translateY(20px) translateX(-20px); }
}

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 999;
  padding: 1.2rem 2rem;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(11, 11, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(145, 70, 255, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(145, 70, 255, 0.4);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: radial-gradient(ellipse at top, #1a0a2e 0%, var(--dark) 70%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(145, 70, 255, 0.12) 0%, transparent 65%);
  animation: pulse 8s infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.07) 0%, transparent 65%);
  animation: pulse 10s infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.9s ease-out;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(145, 70, 255, 0.12);
  border: 1px solid rgba(145, 70, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.8rem;
  letter-spacing: 0.5px;
}

.hero-logo {
  width: 170px;
  height: auto;
  margin-bottom: 1.8rem;
  filter: drop-shadow(0 0 30px rgba(145, 70, 255, 0.55));
  animation: logoFloat 3s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 0%, #c8aaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(145, 70, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.btn-hero:hover::before { left: 100%; }
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(145, 70, 255, 0.5);
}

.btn-hero-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: rgba(245, 197, 66, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 197, 66, 0.25);
}

.hero-platforms {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-platforms span {
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── STATS ──────────────────────────────────── */
.stats-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.08) 0%, rgba(0, 229, 255, 0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.2rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ─── SECCIONES BASE ─────────────────────────── */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.6rem;
  width: 100%;
}

.section-title .texto {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .icono {
  color: var(--accent) !important;
  -webkit-text-fill-color: initial !important;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.6));
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* ─── SOBRE NOSOTROS ─────────────────────────── */
.sobre-nosotros {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
  text-align: center;
}

.sobre-nosotros h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.sobre-nosotros p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 2rem;
}

.live-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2rem;
  color: var(--text);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-live.twitch {
  background: rgba(145, 70, 255, 0.1);
  border: 1px solid rgba(145, 70, 255, 0.45);
}

.btn-live.twitch:hover {
  background: rgba(145, 70, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(145, 70, 255, 0.3);
}

.btn-live.kick {
  background: rgba(83, 252, 30, 0.08);
  border: 1px solid rgba(83, 252, 30, 0.4);
  color: #53fc1e;
}

.btn-live.kick:hover {
  background: rgba(83, 252, 30, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(83, 252, 30, 0.2);
}

.btn-live img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

/* ─── HERRAMIENTAS GRID ──────────────────────── */
.herramientas {
  background: var(--dark-light);
}

.herramientas.extra {
  background: var(--dark);
}

.herramientas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.extra-grid {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}

/* ─── CARD ───────────────────────────────────── */
.herramienta {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  position: relative;
}

.herramienta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
  pointer-events: none;
}

.herramienta:hover::after { opacity: 0.07; }
.herramienta:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 50px rgba(145, 70, 255, 0.2);
}

/* Card image */
.card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a2e, #0d1a2e);
  flex-shrink: 0;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.herramienta:hover .card-img {
  transform: scale(1.05);
}

/* ── Carrusel imagen card herramientas ── */
.carousel {
  position: relative; width: 100%; height: 100%;
}
.carousel-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.carousel-slide.active { opacity: 1; }

/* Chips dentro de la card */
.card-tool-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 0.5rem 0 0.8rem;
  justify-content: center;
}
.chip {
  padding: 0.25rem 0.8rem; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600;
  background: rgba(145,70,255,0.1);
  border: 1px solid rgba(145,70,255,0.25);
  color: var(--primary);
}

/* Placeholder para cards sin imagen */
.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.15), rgba(0, 229, 255, 0.08));
}

/* Card body */
.herramienta h3 {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  margin: 1.4rem 1.6rem 0.6rem;
  color: var(--text);
}

.herramienta p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  margin: 0 1.6rem 1.4rem;
  font-size: 0.95rem;
  flex-grow: 1;
  line-height: 1.6;
}

.btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 1.6rem 1.6rem;
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(145, 70, 255, 0.2);
  align-self: flex-start;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
}

/* ─── BADGES ─────────────────────────────────── */
.badge-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  z-index: 2;
}

.badge-tag.free {
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--accent);
}

.badge-tag.new {
  background: rgba(145, 70, 255, 0.2);
  border: 1px solid rgba(145, 70, 255, 0.5);
  color: #c084fc;
}

.badge-tag.pro {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  box-shadow: 0 3px 12px rgba(245, 197, 66, 0.4);
}

/* ─── CARNALITO PRO ──────────────────────────── */
.pro-section {
  background: linear-gradient(135deg, #0f0a1e 0%, #0a1520 100%);
  border-top: 1px solid rgba(245, 197, 66, 0.12);
  border-bottom: 1px solid rgba(245, 197, 66, 0.12);
  padding: 5rem 2rem;
}

.pro-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pro-label {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(245, 197, 66, 0.1);
  border: 1px solid rgba(245, 197, 66, 0.35);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.pro-texto {
  background: linear-gradient(135deg, var(--gold) 0%, #fff 60%, var(--gold) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.pro-card {
  display: flex;
  gap: 3rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 197, 66, 0.18);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.pro-card:hover {
  border-color: rgba(245, 197, 66, 0.4);
  box-shadow: 0 25px 60px rgba(245, 197, 66, 0.1);
  transform: translateY(-4px);
}

.pro-card-img {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(245, 197, 66, 0.25);
  box-shadow: 0 0 30px rgba(245, 197, 66, 0.12);
}

.pro-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro-card-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.pro-card-info .badge-tag.pro {
  position: static;
  display: inline-block;
  margin-bottom: 1rem;
}

.pro-card-info h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.pro-card-info > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.pro-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pro-features li {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-pro {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0b0b0f;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(245, 197, 66, 0.3);
}

.btn-pro:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245, 197, 66, 0.45);
}

/* ─── FADE IN ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TÉRMINOS ───────────────────────────────── */
.terminos-aviso {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--dark-light);
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.terminos-aviso a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.terminos-aviso a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ─── MODAL ──────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.modal-content {
  background: var(--dark-card);
  margin: 5% auto;
  padding: 3rem;
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(145, 70, 255, 0.25);
}

.modal-content h2 { color: var(--accent); margin-bottom: 1.5rem; }
.modal-content h3 { color: var(--primary); margin: 1.5rem 0 0.8rem; }
.modal-content ul { margin-left: 1.5rem; color: var(--text-muted); }
.modal-content li { margin: 0.5rem 0; }
.modal-content p  { color: var(--text-muted); }

.close {
  color: var(--text-muted);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.close:hover { color: var(--secondary); }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.footer-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(145, 70, 255, 0.4));
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 300px;
}

.footer-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-platforms span {
  padding: 0.25rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-col h4 {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--accent); }

.footer-pro-badge {
  margin-top: 1.5rem;
}

.footer-pro-badge a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(245, 197, 66, 0.1);
  border: 1px solid rgba(245, 197, 66, 0.3);
  border-radius: 20px;
  color: var(--gold) !important;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-pro-badge a:hover {
  background: rgba(245, 197, 66, 0.18);
  box-shadow: 0 4px 15px rgba(245, 197, 66, 0.2);
  color: var(--gold) !important;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--accent); }

/* ─── WHATSAPP ───────────────────────────────── */
.whatsapp-ball {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 64px; height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all 0.3s ease;
  animation: bounce 3s infinite;
}

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

.whatsapp-ball:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-ball img {
  width: 36px; height: 36px;
  filter: brightness(0) invert(1);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .pro-card {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .pro-card-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .pro-features {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contenedor {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.2rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(11, 11, 15, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.2rem;
  }

  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 0.7rem 1rem; }
  .nav-toggle { display: block; }

  .hero {
    min-height: 90vh;
    padding: 5rem 1.2rem 3rem;
  }

  .hero-logo { width: 120px; }

  section { padding: 3.5rem 1.2rem; }

  .herramientas-grid {
    grid-template-columns: 1fr;
  }

  .footer-contenedor {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: auto; }

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

  .whatsapp-ball {
    width: 56px; height: 56px;
    bottom: 20px; right: 20px;
  }

  .whatsapp-ball img { width: 32px; height: 32px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-hero, .btn-hero-outline { width: 100%; max-width: 300px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; }
}
