/* ============================================================
   OTTER SERVICE — Sistema de diseño (basado en Otter Store)
   ============================================================ */

:root {
  /* Paleta */
  --navy-950: #060c1a;
  --navy-900: #0a1428;
  --navy-800: #0f1f3d;
  --navy-700: #16294d;
  --blue-600: #2563eb;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --accent:   #00c2ff;
  --light-bg:   #f4f7fb;
  --light-bg-2: #eaf0f8;
  --white:  #ffffff;
  --ink:      #0b1726;
  --ink-soft: #3c4a5e;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --border:   #e3e9f2;
  --success:  #22c55e;

  /* Tipografía */
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Espaciado */
  --container: 1240px;
  --radius:    14px;
  --radius-sm: 8px;

  /* Sombras */
  --shadow-sm:   0 2px 10px rgba(11,23,38,0.06);
  --shadow-md:   0 12px 32px rgba(11,23,38,0.10);
  --shadow-glow: 0 0 0 1px rgba(0,194,255,0.18), 0 12px 40px rgba(0,194,255,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

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

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}

/* ============================================================
   SECCIONES
   ============================================================ */
.section { padding: 96px 0; }
.section--dark {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.section--dark .container { position: relative; }
.section--dark h2 { color: #fff; }
.section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.65); }
.section--dark .eyebrow { color: var(--cyan-300); }
.section--dark .eyebrow::before { background: var(--cyan-300); }
.section--muted { background: var(--light-bg); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section-head p   { color: var(--ink-soft); max-width: 520px; }
.section--dark .section-head p { color: rgba(255,255,255,0.65); }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--blue-600));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,140,255,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,140,255,.36); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--navy-900);
}
.btn-outline:hover { border-color: var(--accent); color: var(--blue-600); }

.section--dark .btn-outline,
.page-hero .btn-outline {
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.section--dark .btn-outline:hover,
.page-hero .btn-outline:hover { border-color: var(--cyan-300); color: var(--cyan-300); }

.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ============================================================
   NAVBAR (igual que Otter Store)
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy-900);
}
.brand-logo { height: 80px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all .2s ease;
}
.nav-links > li > a:hover,
.nav-links > li.active > a {
  background: var(--light-bg-2);
  color: var(--blue-600);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — BANNER PRINCIPAL
   ============================================================ */
.hero-outer {
  padding: 28px 24px 32px;
}
.hero-card {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.58) 50%, rgba(0,0,0,0.22) 80%, rgba(0,0,0,0.05) 100%),
    url('images/foto-banner-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px;
  max-width: 820px;
}
.hero-content h1 {
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.hero-rotate-wrap {
  display: block;
  position: relative;
  height: 1.35em;
  overflow: hidden;
}
.hero-rotate-word {
  position: absolute;
  left: 0; top: 0;
  color: var(--cyan-300);
  opacity: 0;
  transform: translateY(36px);
  animation: rotateWord 16s infinite;
}
.hero-rotate-word:nth-child(1) { animation-delay: 0s; }
.hero-rotate-word:nth-child(2) { animation-delay: 4s; }
.hero-rotate-word:nth-child(3) { animation-delay: 8s; }
.hero-rotate-word:nth-child(4) { animation-delay: 12s; }
@keyframes rotateWord {
  0%   { opacity: 0; transform: translateY(36px); }
  5%   { opacity: 1; transform: translateY(0); }
  22%  { opacity: 1; transform: translateY(0); }
  28%  { opacity: 0; transform: translateY(-36px); }
  100% { opacity: 0; transform: translateY(36px); }
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-tags span {
  display: inline-block;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  white-space: nowrap;
}

/* Stats debajo del hero */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 20px auto 0;
}
.hero-stat {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.hero-stat .v {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy-900);
}
.hero-stat .l {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Pills de actividad */
.activity-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--container);
  margin: 16px auto 0;
  padding: 0 24px;
}
.activity-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all .22s ease;
}
.activity-pill:hover {
  border-color: transparent;
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.activity-pill-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.activity-pill-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-900);
}
.activity-pill-sub {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ============================================================
   SERVICIOS — TARJETAS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.service-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--light-bg-2);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.service-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,194,255,0.14), rgba(37,99,235,0.10));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-600);
  display: flex; align-items: center; gap: 6px;
}
.service-card-link:hover { gap: 10px; }

/* ============================================================
   VENTAJAS — GRID
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.why-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.why-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--blue-600); }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 22px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.faq-answer strong { color: var(--navy-900); }

/* ============================================================
   ZONAS DE SERVICIO
   ============================================================ */
.zones-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.zone-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.zone-card.zone-main {
  background: rgba(0,194,255,0.08);
  border-color: rgba(0,194,255,0.25);
  grid-column: 1 / -1;
}
.zone-card h4 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.zone-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0,194,255,0.18);
  color: var(--cyan-300);
  padding: 4px 10px;
  border-radius: 999px;
}
.zone-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--light-bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.contact-info-item a {
  color: var(--blue-600);
  font-weight: 600;
}

/* Formulario */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.form-field input,
.form-field textarea,
.form-field select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--light-bg);
  transition: border-color .2s, background .2s;
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--blue-600));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .22s ease;
  box-shadow: 0 8px 24px rgba(0,140,255,0.28);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,140,255,.36);
}

/* ============================================================
   BANNER OTTER STORE
   ============================================================ */
.store-banner {
  background: var(--navy-950);
  border-top: 1px solid rgba(0,194,255,0.08);
  border-bottom: 1px solid rgba(0,194,255,0.08);
  padding: 64px 0;
}
.store-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.store-banner .eyebrow { color: var(--cyan-300); }
.store-banner h3 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.store-banner p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
}

/* ============================================================
   KIT DIGITAL
   ============================================================ */
.kit-digital {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0 0;
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.kit-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.kit-eu-flag { font-size: 2.2rem; }
.kit-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
}
.kit-subtitle {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}
.kit-description {
  flex: 1;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.kit-description strong { color: rgba(255,255,255,0.6); }
.kit-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.kit-logo-tag {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 6px;
}

/* ============================================================
   FOOTER (igual que Otter Store)
   ============================================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand-logo { height: 120px; }
.footer p { font-size: 0.88rem; line-height: 1.7; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 0.88rem; transition: color .2s; }
.footer ul a:hover { color: var(--cyan-300); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: var(--cyan-300); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: all .2s;
}
.social a:hover { border-color: var(--cyan-300); color: var(--cyan-300); }

/* ============================================================
   BREADCRUMB / PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.68); max-width: 640px; font-size: 1.05rem; }
.page-hero .eyebrow { color: var(--cyan-300); }
.page-hero .eyebrow::before { background: var(--cyan-300); }

.breadcrumb {
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--gray-500);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--blue-600); font-weight: 600; }
.breadcrumb span { margin: 0 8px; color: var(--gray-300); }

/* ============================================================
   INTRO GRID — 2 columnas responsivo
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-grid img { max-height: 320px; object-fit: cover; width: 100%; }
}

/* Services grid — variante 3 columnas */
.services-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .services-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .services-grid--3 { grid-template-columns: 1fr; }
}

/* ============================================================
   GALERÍA DE FOTOS (páginas de servicio)
   ============================================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.photo-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 25%;
  transition: transform .3s ease;
}
.photo-grid img:hover { transform: scale(1.02); }

/* ============================================================
   FEATURE LIST (en páginas de servicio)
   ============================================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--blue-600);
  background: var(--light-bg-2);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p  { font-size: 0.88rem; color: var(--gray-500); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-box {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,255,0.35), transparent 70%);
}
.cta-box h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  max-width: 520px;
}
.cta-box p { color: rgba(255,255,255,0.75); margin-top: 8px; }
.cta-box-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 9000;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid--3 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .zones-grid .zone-main { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .activity-pills { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .intro-grid { gap: 40px; }
  .cta-box { padding: 44px 36px; }
}

@media (max-width: 760px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Navbar móvil */
  .navbar .container { height: 100px; }
  .brand-logo { height: 96px; }
  .nav-cta-header { display: none; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 100px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: #fff;
    overflow-y: auto;
    padding: 16px 0 32px;
    gap: 0;
    z-index: 99999;
    box-shadow: 0 8px 32px rgba(11,23,38,.12);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a {
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  /* Hero */
  .hero-outer { padding: 14px 12px 20px; }
  .hero-card { min-height: 420px; border-radius: 14px; }
  .hero-content { padding: 32px 24px; }
  .hero-content h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-rotate-wrap { height: 1.8em; }
  .hero-tags span { font-size: 0.75rem; padding: 7px 14px; }
  .hero-stats-row { grid-template-columns: repeat(2,1fr); padding: 0 12px; }
  .activity-pills { grid-template-columns: 1fr 1fr; padding: 0 12px; gap: 10px; }

  /* Grids */
  .why-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  /* CTA box */
  .cta-box { padding: 36px 28px; }

  /* Grids de sección */
  .services-grid { grid-template-columns: 1fr; }
  .services-grid--3 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  /* Hero stats y pills */
  .hero-stats-row { grid-template-columns: 1fr 1fr; padding: 0; }
  .activity-pills { grid-template-columns: 1fr 1fr; padding: 0; gap: 10px; }
  .hero-outer { padding: 12px 12px 16px; }
  .hero-card { min-height: 380px; border-radius: 14px; }
  .hero-content { padding: 28px 20px; }
  .hero-content h1 { font-size: clamp(1.55rem, 6vw, 2.1rem); }
  .hero-rotate-wrap { height: 1.8em; }
  .hero-tags span { font-size: 0.75rem; padding: 7px 12px; }
  .hero-stat .v { font-size: 1.5rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Form */
  .form-card { padding: 24px 18px; }

  /* CTA box */
  .cta-box { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; font-size: 0.78rem; }
  .kit-digital { flex-direction: column; }

  /* Store banner */
  .store-banner-inner { flex-direction: column; text-align: center; }

  /* Page hero */
  .page-hero { padding: 44px 0; }
  .page-hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .page-hero p { font-size: 0.95rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.8rem; white-space: nowrap; overflow-x: auto; }

  /* FAQ */
  .faq-item summary { font-size: 0.95rem; padding: 18px 0; }

  /* Zones */
  .zones-grid { grid-template-columns: 1fr; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }

  /* WhatsApp */
  .wa-float { width: 50px; height: 50px; bottom: 18px; right: 14px; }
}
