/* ═══════════════════════════════════════════════════════════════
   PBO Transfers — styles.css
   Paleta: azul marino #0D1F3C + naranja #F5820A + blanco/grises
   Tipografía: Inter (sistema) para UI, display bold para títulos
   Mobile-first, responsive completo
═══════════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #0D1F3C;
  --navy-deep:  #081428;
  --navy-mid:   #152A50;
  --orange:     #F5820A;
  --orange-dk:  #D96F08;
  --orange-lt:  #FFF3E6;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FB;
  --gray-100:   #EEF0F4;
  --gray-200:   #D6DAE3;
  --gray-400:   #8C95A8;
  --gray-600:   #4A5568;
  --gray-800:   #1E2535;
  --text:       #1E2535;
  --muted:      #5A6478;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 3px rgba(13,31,60,0.08), 0 1px 2px rgba(13,31,60,0.06);
  --shadow-md:  0 4px 16px rgba(13,31,60,0.10), 0 2px 6px rgba(13,31,60,0.06);
  --shadow-lg:  0 12px 40px rgba(13,31,60,0.14), 0 4px 12px rgba(13,31,60,0.08);

  --nav-h:      68px;
  --section-py: 80px;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilidades ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--navy); background: var(--gray-50); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--gray-50); transform: translateY(-1px); }

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Animaciones reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon i { font-size: 20px; color: var(--white); }

.nav-links {
  display: none;
  gap: 4px;
  align-items: center;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 2px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}
.lang-btn.active { background: var(--orange); color: var(--white); }

#hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--white);
  font-size: 20px;
  transition: background 0.2s;
}
#hamburger:hover { background: rgba(255,255,255,0.2); }

/* Menú móvil */
#mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--navy-deep);
  padding: 16px 20px 24px;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
#mobile-menu.open { transform: translateY(0); }
#mobile-menu .nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
}
#mobile-menu .btn { width: 100%; justify-content: center; margin-top: 12px; }
#mobile-menu .lang-switcher { margin-top: 12px; }

/* Desktop nav */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  #hamburger { display: none; }
}

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 50%, #1A3A72 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Patrón geométrico de fondo */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,130,10,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,130,10,0.15);
  border: 1px solid rgba(245,130,10,0.3);
  color: #FFB347;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-eyebrow i { font-size: 14px; }

.hero-title {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* Card demo en el hero */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-card-dot:nth-child(1) { background: #FF5F57; }
.hero-card-dot:nth-child(2) { background: #FEBC2E; }
.hero-card-dot:nth-child(3) { background: #28C840; }
.hero-card-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-left: auto;
  font-weight: 500;
}

.hero-form-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-field {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-field i { font-size: 15px; color: var(--orange); }
.hero-field-text { color: rgba(255,255,255,0.5); font-size: 12px; }
.hero-field span { color: rgba(255,255,255,0.9); font-weight: 500; }

.hero-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.hero-book-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: default;
  text-align: center;
  margin-top: 4px;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-icon {
  width: 32px; height: 32px;
  background: #E8F5E9;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-icon i { color: #2E7D32; font-size: 16px; }
.hero-badge-text { font-size: 12px; font-weight: 600; color: var(--navy); }
.hero-badge-sub { font-size: 11px; color: var(--muted); }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Sección genérica ───────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--gray-50); }
.section-dark {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,0.65); }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Qué es ─────────────────────────────────────────────────── */
.quees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.quees-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.quees-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.quees-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.quees-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.quees-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--orange-lt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.quees-icon i { font-size: 20px; color: var(--orange); }
.quees-item-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.quees-item-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

.quees-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--white);
}
.quees-visual-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.quees-feature-list { display: flex; flex-direction: column; gap: 10px; }
.quees-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.quees-feature i { font-size: 16px; color: var(--orange); }
.quees-feature-check {
  margin-left: auto;
  width: 20px; height: 20px;
  background: rgba(46,212,64,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.quees-feature-check i { font-size: 12px; color: #28C840; }

@media (min-width: 900px) {
  .quees-grid { grid-template-columns: 1fr 1fr; }
  .quees-items { grid-template-columns: 1fr 1fr; }
}

/* ── Servicios (tabs) ───────────────────────────────────────── */
.tabs-nav {
  display: flex;
  gap: 6px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 6px;
  margin-bottom: 40px;
  overflow-x: auto;
}
.tab-btn {
  flex: 1;
  min-width: 120px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
.tab-btn i { font-size: 16px; }
.tab-btn.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.tab-panel { display: none; }
.tab-panel.active { display: grid; }

.tab-panel {
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.tab-content {}
.tab-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.tab-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.tab-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.tab-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.tab-feature i { font-size: 18px; color: #1D9E75; flex-shrink: 0; }

.tab-visual {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tab-visual-placeholder {
  text-align: center;
  color: var(--gray-400);
}
.tab-visual-placeholder i { font-size: 48px; display: block; margin-bottom: 12px; }
.tab-visual-placeholder p { font-size: 13px; }

@media (min-width: 768px) {
  .tab-panel { grid-template-columns: 1fr 1fr; }
}

/* ── Demo / Videos ──────────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s, transform 0.2s;
}
.video-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-thumb video { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute;
  width: 52px; height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  pointer-events: none;
}
.video-play i { font-size: 22px; color: var(--white); margin-left: 3px; }
.video-card:hover .video-play { transform: scale(1.1); }

.video-card-body { padding: 20px; }
.video-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.video-title { font-size: 16px; font-weight: 600; color: var(--navy); }

.demo-cta {
  text-align: center;
  margin-top: 48px;
  padding: 40px;
  background: var(--orange-lt);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245,130,10,0.15);
}
.demo-cta-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.demo-cta-sub { color: var(--muted); margin-bottom: 24px; }

@media (min-width: 640px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Testimonios ────────────────────────────────────────────── */
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testimonio-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background 0.2s;
}
.testimonio-card:hover { background: rgba(255,255,255,0.1); }
.testimonio-stars { color: var(--orange); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonio-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonio-author { display: flex; align-items: center; gap: 12px; }
.testimonio-avatar {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonio-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonio-role { font-size: 12px; color: rgba(255,255,255,0.45); }

.clientes-logos {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.clientes-logos-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: center;
}
.logo-placeholder {
  height: 40px;
  min-width: 100px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
}

@media (min-width: 640px) { .testimonios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .testimonios-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Precios ────────────────────────────────────────────────── */
.precios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
.precio-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.precio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.precio-card.popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245,130,10,0.08);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.precio-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.precio-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.precio-amount span { font-size: 18px; font-weight: 400; color: var(--muted); }
.precio-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.precio-divider { height: 1px; background: var(--gray-100); margin: 20px 0; }
.precio-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.precio-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text);
}
.precio-feature i.ok { color: #1D9E75; font-size: 16px; }
.precio-feature i.na { color: var(--gray-200); font-size: 16px; }
.precio-feature.dim { color: var(--gray-400); }

@media (min-width: 768px) { .precios-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Contacto ───────────────────────────────────────────────── */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.contacto-info {}
.contacto-info-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contacto-info-sub { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }

.contacto-items { display: flex; flex-direction: column; gap: 16px; }
.contacto-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}
.contacto-item-icon {
  width: 40px; height: 40px;
  background: var(--orange-lt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contacto-item-icon i { color: var(--orange); font-size: 18px; }
.contacto-item-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.contacto-item-value { font-size: 15px; font-weight: 600; color: var(--navy); margin-top: 2px; }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  margin-top: 24px;
  transition: background 0.2s, transform 0.2s;
}
.whatsapp-btn:hover { background: #1DB954; transform: translateY(-1px); }
.whatsapp-btn i { font-size: 22px; }

/* Formulario */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,10,0.12);
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-msg {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  display: none;
}
.form-msg.success { background: #E8F5E9; color: #2E7D32; display: block; }
.form-msg.error { background: #FFEBEE; color: #C62828; display: block; }

@media (min-width: 900px) { .contacto-grid { grid-template-columns: 1fr 1.2fr; } }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 260px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── WhatsApp flotante ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float i { font-size: 26px; color: var(--white); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238C95A8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Accesibilidad ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
