/*
Theme Name: enBuscadores Digital Agency
Theme URI: https://enbuscadores.net
Author: enBuscadores.net
Author URI: https://enbuscadores.net
Description: Tema profesional para enBuscadores.net — Agencia de Marketing Digital, SEO, Social Media y Apps de Juegos. Diseño moderno, oscuro y de alto impacto visual.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: marketing, seo, digital-agency, dark, modern, full-width, custom-menu, featured-images
Text Domain: enbuscadores
*/

/* =============================================
   VARIABLES GLOBALES
   ============================================= */
:root {
  --bg-primary:    #060810;
  --bg-secondary:  #0d1120;
  --bg-card:       #111827;
  --bg-card-hover: #161e33;
  --accent-cyan:   #00e5ff;
  --accent-purple: #7c3aed;
  --accent-orange: #f97316;
  --accent-green:  #22d3a2;
  --text-primary:  #f0f4ff;
  --text-muted:    #8892b0;
  --border-color:  rgba(255,255,255,0.07);
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --shadow-glow:   0 0 40px rgba(0,229,255,0.12);
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--text-primary); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm { padding: 60px 0; }

/* =============================================
   TIPOGRAFÍA UTILITARIA
   ============================================= */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* =============================================
   BOTONES
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  font-weight: 600;
}
.btn-primary:hover {
  background: #fff;
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,229,255,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--accent-purple);
  color: #fff;
}
.btn-purple:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.35);
}

/* =============================================
   HEADER / NAVEGACIÓN
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(6,8,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-logo .logo-en { color: var(--text-muted); }
.site-logo .logo-buscadores { color: var(--accent-cyan); }
.site-logo .logo-dot { color: var(--accent-purple); }
.site-logo .logo-net { color: var(--text-muted); font-size: 1rem; }

/* Menú principal */
#primary-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

#primary-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

#primary-menu li a:hover,
#primary-menu li.current-menu-item a {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

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

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

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

/* Grid de fondo animado */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
}

/* Orbes de luz */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.15) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-cyan);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .line-gradient {
  display: block;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 60%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Estadísticas hero */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.hero-stat-number span { color: var(--accent-cyan); }
.hero-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* =============================================
   SECCIÓN: SERVICIOS
   ============================================= */
#services {
  background: var(--bg-secondary);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.14);
}

.service-card:hover::before { opacity: 1; }

/* Colores por servicio */
.service-card.seo::before { background: radial-gradient(ellipse at 0% 0%, rgba(0,229,255,0.06) 0%, transparent 70%); }
.service-card.social::before { background: radial-gradient(ellipse at 0% 0%, rgba(124,58,237,0.08) 0%, transparent 70%); }
.service-card.apps::before { background: radial-gradient(ellipse at 0% 0%, rgba(249,115,22,0.08) 0%, transparent 70%); }
.service-card.email::before { background: radial-gradient(ellipse at 0% 0%, rgba(34,211,162,0.06) 0%, transparent 70%); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.service-card.seo .service-icon { background: rgba(0,229,255,0.12); color: var(--accent-cyan); }
.service-card.social .service-icon { background: rgba(124,58,237,0.15); color: #a78bfa; }
.service-card.apps .service-icon { background: rgba(249,115,22,0.15); color: var(--accent-orange); }
.service-card.email .service-icon { background: rgba(34,211,162,0.12); color: var(--accent-green); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card.seo .service-features li::before { background: var(--accent-cyan); }
.service-card.social .service-features li::before { background: #a78bfa; }
.service-card.apps .service-features li::before { background: var(--accent-orange); }
.service-card.email .service-features li::before { background: var(--accent-green); }

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card.seo .service-link { color: var(--accent-cyan); }
.service-card.social .service-link { color: #a78bfa; }
.service-card.apps .service-link { color: var(--accent-orange); }
.service-card.email .service-link { color: var(--accent-green); }

.service-link .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.service-card:hover .service-link .arrow { transform: translateX(4px); }

/* =============================================
   SECCIÓN: APP TRIVIA FÚTBOL
   ============================================= */
#trivia-app {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.trivia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trivia-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.trivia-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.trivia-title .highlight { color: var(--accent-orange); }

.trivia-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.trivia-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.trivia-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
}

.trivia-feat-icon {
  width: 36px; height: 36px;
  background: rgba(249,115,22,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trivia-feat-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trivia-feat-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trivia-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mockup del teléfono */
.trivia-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
  filter: blur(60px);
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: 260px;
  background: #0a0f1e;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.phone-notch {
  width: 100px; height: 28px;
  background: #0a0f1e;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  border: 2px solid rgba(255,255,255,0.1);
  border-top: none;
}

.phone-screen {
  padding: 12px 16px 24px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.phone-app-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.phone-score-badge {
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 0.7rem;
  color: var(--accent-orange);
  font-weight: 600;
}

.phone-question-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(124,58,237,0.1));
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}

.phone-q-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-orange);
  margin-bottom: 6px;
}

.phone-question {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.phone-options {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.phone-option {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-option.correct {
  background: rgba(34,211,162,0.1);
  border-color: rgba(34,211,162,0.3);
  color: var(--accent-green);
}

.phone-opt-letter {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}

.phone-option.correct .phone-opt-letter {
  background: var(--accent-green);
  color: #fff;
}

/* =============================================
   SECCIÓN: PROCESO DE TRABAJO
   ============================================= */
#process {
  background: var(--bg-secondary);
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-orange), var(--accent-green));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:nth-child(1) .process-step-number { color: var(--accent-cyan); border-color: rgba(0,229,255,0.3); }
.process-step:nth-child(2) .process-step-number { color: #a78bfa; border-color: rgba(167,139,250,0.3); }
.process-step:nth-child(3) .process-step-number { color: var(--accent-orange); border-color: rgba(249,115,22,0.3); }
.process-step:nth-child(4) .process-step-number { color: var(--accent-green); border-color: rgba(34,211,162,0.3); }

.process-step:hover .process-step-number { transform: scale(1.1); }

.process-step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   SECCIÓN: POR QUÉ ELEGIRNOS
   ============================================= */
#why-us {
  background: var(--bg-primary);
}

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

.why-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.metric-card:nth-child(1)::before { background: var(--accent-cyan); }
.metric-card:nth-child(2)::before { background: #a78bfa; }
.metric-card:nth-child(3)::before { background: var(--accent-orange); }
.metric-card:nth-child(4)::before { background: var(--accent-green); }

.metric-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }

.metric-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-card:nth-child(1) .metric-number { color: var(--accent-cyan); }
.metric-card:nth-child(2) .metric-number { color: #a78bfa; }
.metric-card:nth-child(3) .metric-number { color: var(--accent-orange); }
.metric-card:nth-child(4) .metric-number { color: var(--accent-green); }

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.why-content .section-title { margin-bottom: 16px; }

.why-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-item:hover { border-color: rgba(0,229,255,0.2); }

.why-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,229,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-item-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.why-item-body span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   SECCIÓN: CONTACTO
   ============================================= */
#contact {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { font-size: 2.2rem; }

.contact-items {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item:nth-child(1) .contact-item-icon { background: rgba(0,229,255,0.1); }
.contact-item:nth-child(2) .contact-item-icon { background: rgba(124,58,237,0.12); }
.contact-item:nth-child(3) .contact-item-icon { background: rgba(249,115,22,0.12); }

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Formulario de contacto */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136,146,176,0.5);
}

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

.form-group select option { background: var(--bg-card); color: var(--text-primary); }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .site-logo { margin-bottom: 16px; }

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

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--accent-cyan); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-copy a { color: var(--accent-cyan); }

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

/* =============================================
   ANIMACIONES DE ENTRADA
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .trivia-inner,
  .why-grid,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .trivia-phone-wrapper { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  #primary-menu,
  .header-cta .btn-outline {
    display: none;
  }

  .menu-toggle { display: flex; }

  #primary-menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(6,8,16,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border-color);
    gap: 4px;
  }

  #primary-menu.is-open li a { padding: 12px 16px; }

  .hero-title { font-size: 2.6rem; }
  .hero-stats { gap: 24px; }

  .trivia-features { grid-template-columns: 1fr; }

  .why-metrics { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }

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

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .why-metrics { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
}

/* =============================================
   WORDPRESS ESTÁNDAR
   ============================================= */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.alignwide { width: calc(100% + 48px); margin-left: -24px; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
