/* ═══════════════════════════════════════════════════════════════════
   FogonWeb — Estilos principales
   Tema: oscuro premium · Acento: oro (#c9a227)
   Tipografía: Cormorant Garamond (títulos) + Inter (cuerpo)
═══════════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────────────────────────── */
:root {
  --bg:          #080808;
  --bg-2:        #0f0f0f;
  --bg-card:     #141414;
  --bg-card-2:   #1a1a1a;
  --gold:        #c9a227;
  --gold-light:  #e0bb4a;
  --gold-dim:    rgba(201,162,39,0.15);
  --gold-glow:   rgba(201,162,39,0.08);
  --text:        #ede8e0;
  --text-2:      #a09080;
  --text-muted:  #5a5040;
  --border:      rgba(201,162,39,0.12);
  --border-sub:  rgba(255,255,255,0.05);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 40px rgba(0,0,0,0.6);
  --transition:  0.3s ease;
  --font-title:  'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ─── SELECTION ─────────────────────────────────────────────────────────── */
::selection { background: var(--gold-dim); color: var(--text); }

/* ─── CONTENEDOR ────────────────────────────────────────────────────────── */
.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ─── TIPOGRAFÍA GLOBAL ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
p  { color: var(--text-2); }

/* ─── BOTONES ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-gold {
  background: var(--gold);
  color: #0a0805;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── ETIQUETAS DE SECCIÓN ──────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 640px;
  color: var(--text-2);
}

.section-header {
  margin-bottom: 4rem;
}

/* ─── SECCIONES ─────────────────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section:nth-child(even) { background: var(--bg-2); }

/* ─── ANIMACIONES SCROLL ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ════════════════════════════════════════════════════════════════
   NAVEGACIÓN
════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
}
.logo-icon {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  color: var(--text-2);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--bg-card); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,162,39,0.10) 0%, transparent 65%);
  top: -200px; right: -150px;
}
.hero-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 65%);
  bottom: -100px; left: -100px;
  animation-delay: -5s; animation-direction: reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -25px) scale(1.06); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-block: 5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  background: rgba(201,162,39,0.05);
}

.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1rem;
  padding: 1.25rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.hero-stat strong {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}
.hero-stat span { font-size: 0.75rem; color: var(--text-2); letter-spacing: 0.05em; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  transition: border-color var(--transition);
}
.hero-scroll:hover { border-color: var(--gold); }
.hero-scroll span {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}


/* ════════════════════════════════════════════════════════════════
   SERVICIOS
════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  padding: 2.25rem 2rem;
  background: var(--bg-card);
  transition: background var(--transition);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: var(--border-sub);
}
.service-card:hover { background: var(--bg-card-2); }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 20px; height: 20px; color: var(--gold); }
.service-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-title);
  color: var(--text);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.service-card p { font-size: 0.9rem; line-height: 1.7; }


/* ════════════════════════════════════════════════════════════════
   POR QUÉ FOGONWEB
════════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  padding: 2rem;
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.why-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.why-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.9rem; }


/* ════════════════════════════════════════════════════════════════
   PROCESO
════════════════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bg);
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  transition: background var(--transition);
}
.process-step:hover .step-number {
  background: var(--gold-glow);
}
.process-step h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.process-step p { font-size: 0.875rem; }


/* ════════════════════════════════════════════════════════════════
   PORTFOLIO / DEMOS
════════════════════════════════════════════════════════════════ */
.demos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.demo-card {
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}
.demo-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* Mock browser window */
.demo-browser {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0c0c0c;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: #1c1c1c;
  border-bottom: 1px solid #2a2a2a;
  position: relative;
  z-index: 1;
}
.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  height: 18px;
  background: #2a2a2a;
  border-radius: 4px;
  margin: 0 8px;
  font-size: 0.65rem;
  color: #666;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

/* Site mock inside browser */
.site-mock {
  width: 100%;
  height: calc(100% - 36px);
  overflow: hidden;
  transform-origin: top left;
}
.site-mock-header {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-mock-brand { font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; }
.site-mock-nav { display: flex; gap: 8px; }
.site-mock-nav span {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.5);
  padding: 3px 7px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
}
.site-mock-hero {
  padding: 20px 18px 16px;
  min-height: 100px;
}
.site-mock-hero h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}
.site-mock-hero p { font-size: 0.6rem; color: rgba(255,255,255,0.55); }
.site-mock-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #000;
}
.site-mock-dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 18px;
}
.mock-dish {
  height: 30px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
}

/* Demo card body */
.demo-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.demo-type { font-size: 0.75rem; color: var(--gold); font-weight: 500; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.demo-card h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.demo-card p { font-size: 0.875rem; line-height: 1.65; flex: 1; }
.demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.demo-tag {
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--text-2);
}
.demo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  transition: gap var(--transition);
}
.demo-link:hover { gap: 0.7rem; }


/* ════════════════════════════════════════════════════════════════
   PRECIOS
════════════════════════════════════════════════════════════════ */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.pricing-card--featured {
  border: 1px solid var(--gold);
  background: var(--bg-card);
  box-shadow: 0 0 60px rgba(201,162,39,0.1);
  padding: 2.5rem;
}
.pricing-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--gold);
  color: #0a0805;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.pricing-header { margin-bottom: 2rem; }
.pricing-name {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.pricing-price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.5rem; }
.pricing-original {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.pricing-amount {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pricing-note { font-size: 0.85rem; color: var(--text-2); }

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-2);
}
.pricing-includes li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Mantenimiento addon */
.pricing-addon { }
.pricing-addon-inner {
  padding: 2rem;
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.pricing-addon-inner h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 400;
}
.pricing-addon-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.pricing-addon-price strong {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--text);
}
.pricing-addon-price span { color: var(--text-2); }
.pricing-addon-inner > p { font-size: 0.8rem; color: var(--gold); margin-bottom: 1.5rem; }
.pricing-addon-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-addon-list li {
  font-size: 0.875rem;
  color: var(--text-2);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-addon-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pricing-disclaimer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-disclaimer strong { color: var(--text-2); }


/* ════════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════ */
.faq-container .section-header { max-width: 680px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border-sub);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-card);
  transition: background var(--transition), color var(--transition);
  gap: 1rem;
}
.faq-question:hover { background: var(--bg-card-2); color: var(--gold); }
.faq-question.open { color: var(--gold); background: var(--bg-card-2); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: transform var(--transition), background var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--gold-glow); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--text-2);
  background: var(--bg-card-2);
}


/* ════════════════════════════════════════════════════════════════
   CONTACTO
════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 1.25rem; }
.contact-text { margin-bottom: 2rem; font-size: 1rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-2);
  font-size: 0.9rem;
  transition: color var(--transition);
}
a.contact-item:hover { color: var(--gold); }
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* Formulario */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-2);
}
.form-privacy input[type="checkbox"] {
  width: 16px; height: 16px;
  min-width: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  margin-top: 2px;
}
.form-privacy a { color: var(--gold); }
.form-privacy a:hover { text-decoration: underline; }

.form-feedback {
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.2em;
  padding: 0.25rem 0;
}
.form-feedback.success { color: #4caf75; }
.form-feedback.error { color: #e05555; }

.btn-loading { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: inline; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }


/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border-sub);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col li, .footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-legal-box {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}
.footer-legal-box p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }
.footer-legal-box p + p { margin-top: 0.5rem; }

.footer-bottom {
  border-top: 1px solid var(--border-sub);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }


/* ════════════════════════════════════════════════════════════════
   BOTÓN WHATSAPP FLOTANTE
════════════════════════════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-btn svg { width: 28px; height: 28px; color: #fff; }
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.2); opacity: 0; }
}


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-layout { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem 1.5rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 10px;
    color: var(--text-2);
  }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-headline br { display: none; }
  .hero-stat-row { flex-direction: column; gap: 1.25rem; padding: 1.25rem 1.5rem; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

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

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .container { width: min(100%, 100% - 2rem); }
  .process-steps { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .pricing-card--featured { padding: 1.75rem; }
  .faq-question { padding: 1.25rem 1.25rem; font-size: 0.9rem; }
  .faq-answer-inner { padding: 0 1.25rem 1.25rem; }
  .demos-grid { grid-template-columns: 1fr; }
}
