/* =========================================================
   FALCON · PROTECCIÓN Y SEGURIDAD PRIVADA
   Stylesheet principal
   Diego Fernández | 2026
   ========================================================= */

/* ---------- FUENTES LOCALES (fallback del typekit) ---------- */
@font-face {
  font-family: 'Eurostile Extended';
  src: url('../assets/fonts/EurostileExtendedBlack.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bahnschrift Local';
  src: url('../assets/fonts/bahnschrift.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- VARIABLES DE MARCA ---------- */
:root {
  /* Colores oficiales Falcon */
  --c-dark:        #2b2b2e;   /* Fondos y subtítulos sobre blanco/amarillo */
  --c-dark-deep:   #242426;   /* Fondos oscuros profundos */
  --c-yellow:      #fde32b;   /* Amarillo de marca */
  --c-gray-light:  #808080;   /* Texto sobre fondo blanco */
  --c-gray-dark:   #a8a8a8;   /* Texto sobre fondo negro */
  --c-white:       #ffffff;
  --c-bg-config:   #e9e9eb;   /* Fondo tablas de configuración */
  --c-border-soft: #d6d6d8;

  /* Tipografías */
  --ff-display: 'eurostile-extended', 'Eurostile Extended', 'Impact', sans-serif;
  --ff-body:    'bahnschrift', 'Bahnschrift Local', 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --section-pad-y: 110px;

  /* Transitions */
  --t-fast: 180ms ease;
  --t-med:  320ms cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-dark);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

/* ---------- TIPOGRAFÍA DE MARCA ---------- */
.kicker {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-dark);
  margin-bottom: 14px;
}
.kicker.small  { font-size: 11px; }
.kicker.center { text-align: center; }
.kicker.light  { color: var(--c-gray-dark); }

.section-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--c-dark);
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-title.light  { color: var(--c-white); }
.section-title.yellow { color: var(--c-yellow); }

.body-text {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--c-gray-light);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
}
.body-text.light { color: var(--c-gray-dark); }

.section-lead {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--c-gray-light);
  font-size: 15px;
  max-width: 760px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.section-lead.center { text-align: center; }
.section-lead.light  { color: var(--c-gray-dark); }

/* ---------- BOTONES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-med);
  white-space: nowrap;
  user-select: none;
}
.btn-small { padding: 11px 26px; font-size: 11px; }

.btn-dark {
  background: var(--c-dark);
  color: var(--c-yellow);
  border-color: var(--c-dark);
}
.btn-dark:hover {
  background: var(--c-yellow);
  color: var(--c-dark);
  border-color: var(--c-yellow);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.btn-outline-dark:hover {
  background: var(--c-dark);
  color: var(--c-yellow);
}

.btn-yellow {
  background: var(--c-yellow);
  color: var(--c-dark);
  border-color: var(--c-yellow);
}
.btn-yellow:hover {
  background: var(--c-dark);
  color: var(--c-yellow);
  border-color: var(--c-dark);
}

.btn-outline-yellow {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-yellow);
}
.btn-outline-yellow:hover {
  background: var(--c-yellow);
  color: var(--c-dark);
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--t-med);
}
.site-header.scrolled {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}

.logo img { height: 46px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: flex-end;
}
.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-list a {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-dark);
  padding: 6px 0;
  position: relative;
  transition: color var(--t-fast);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--c-yellow);
  transition: width var(--t-med);
}
.nav-list a:hover { color: var(--c-dark); }
.nav-list a:hover::after { width: 100%; }

.nav-cta { padding: 12px 22px; font-size: 11px; }

/* ---------- Switch de idioma ES / EN ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}
.lang-btn {
  background: transparent;
  border: 0;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-gray-light);
  cursor: pointer;
  padding: 6px 4px;
  transition: color var(--t-fast);
}
.lang-btn:hover { color: var(--c-dark); }
.lang-btn.active {
  color: var(--c-dark);
  position: relative;
}
.lang-btn.active::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 2px;
  background: var(--c-yellow);
}
.lang-sep {
  color: var(--c-border-soft);
  font-weight: 300;
  user-select: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--c-dark);
  transition: all var(--t-fast);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  margin-top: 82px;
  min-height: 620px;
  overflow: hidden;
  background: var(--c-yellow);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(253,227,43,.35) 0%,
      rgba(253,227,43,.25) 40%,
      rgba(253,227,43,.35) 100%),
    url('../assets/img/BG-HEADER-01.png') center/cover no-repeat;
  z-index: 1;
}

/* Flechas decorativas esquina superior izq */
.hero-arrows {
  position: absolute;
  top: 42px; left: 42px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-arrows span {
  display: block;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 13px solid var(--c-dark);
  opacity: 0.55;
}
.hero-arrows span:nth-child(2) { opacity: 0.38; }
.hero-arrows span:nth-child(3) { opacity: 0.22; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: end;
  min-height: 620px;
}

.hero-guards {
  position: relative;
  align-self: end;
}
.hero-guards img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.35));
}

.hero-content {
  align-self: center;
  padding-bottom: 40px;
  padding-right: 20px;
}
.hero-content .kicker {
  color: var(--c-dark);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--c-dark);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-desc {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--c-dark);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   COMPROMISO DE ALTO NIVEL
   ========================================================= */
.compromiso-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.mv-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mv-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
}
.mv-icon {
  width: 64px; height: 64px;
  object-fit: contain;
}
.mv-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--c-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mv-desc {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--c-gray-light);
  line-height: 1.6;
  max-width: 360px;
}

.compromiso-media {
  position: relative;
}
.compromiso-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   ¿POR QUÉ NOSOTROS?
   ========================================================= */
.por-que {
  padding-top: 40px;
  padding-bottom: 140px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.pillar {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  text-align: left;
}
.pillar-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.pillar-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--c-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pillar-desc {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 13.5px;
  color: var(--c-gray-light);
  line-height: 1.6;
}

/* =========================================================
   NUESTROS SERVICIOS
   ========================================================= */
.servicios-section {
  background: var(--c-dark-deep);
  padding: 100px 0 110px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.servicio-card {
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,.45);
}
.servicio-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.servicio-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.servicio-card:hover .servicio-media img { transform: scale(1.05); }

.servicio-body {
  padding: 28px 28px 34px;
}
.servicio-body .kicker {
  color: var(--c-gray-dark);
  margin-bottom: 8px;
}
.servicio-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.servicio-list {
  margin-bottom: 26px;
}
.servicio-list li {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 13.5px;
  color: var(--c-gray-dark);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}
.servicio-list li::before {
  content: '•';
  position: absolute;
  left: 0; top: 0;
  color: var(--c-yellow);
  font-weight: 700;
}

/* =========================================================
   CONFIGURACIONES
   ========================================================= */
.configuraciones {
  background: var(--c-white);
  padding-top: 110px;
  padding-bottom: 80px;
}
.config-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 70px;
  align-items: start;
}
.config-intro .btn { margin-top: 28px; }

.config-tables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.config-table {
  background: var(--c-bg-config);
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,.04);
}
.config-table-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
}
.header-yellow { background: var(--c-yellow); color: var(--c-dark); }
.header-dark   { background: var(--c-dark); color: var(--c-white); }

.header-icon {
  width: 40px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-icon svg { width: 100%; height: 100%; }

.config-kicker {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.config-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.config-title.yellow { color: var(--c-yellow); }

.config-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 26px;
  border-top: 1px solid var(--c-border-soft);
}
.config-row:first-of-type { border-top: 0; }

.config-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--c-dark);
  letter-spacing: 0.04em;
}

.config-detail p {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-dark);
  line-height: 1.5;
}

.config-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.price-label {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--c-gray-light);
  text-transform: uppercase;
}
.price-value {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-dark);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.price-value sup {
  font-size: 11px;
  font-weight: 600;
  vertical-align: super;
}

.config-note {
  text-align: center;
  padding-top: 50px;
}
.note-fine {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-gray-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.note-claim {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(14px, 1.35vw, 20px);
  letter-spacing: 0.06em;
  color: var(--c-dark);
  text-transform: uppercase;
}

/* =========================================================
   COBERTURA NACIONAL
   ========================================================= */
.cobertura {
  padding: 0;
  background: var(--c-white);
}
.cobertura-image-wrap {
  overflow: hidden;
  background: var(--c-white);
}
.cobertura-hero {
  width: 100%;
  height: auto;
  display: block;
}

.cobertura-cities {
  background: var(--c-yellow);
  padding: 48px 0 52px;
  position: relative;
}
.cobertura-cities .kicker {
  color: var(--c-dark);
  margin-bottom: 10px;
}
.cobertura-cities .section-title {
  margin-bottom: 34px;
}
.cities-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.cities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-dark);
}
.city-pin {
  width: 22px; height: 22px;
  flex-shrink: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--c-dark-deep);
  color: var(--c-gray-dark);
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.footer-watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.45;
  pointer-events: none;
  width: 520px;
  z-index: 0;
}
.footer-watermark img {
  width: 100%; height: auto;
  filter: grayscale(1) brightness(0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 280px;
  max-width: 100%;
}

.footer-title {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.contact-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 16px;
}
.contact-item img {
  width: 28px; height: 28px;
  object-fit: contain;
  margin-top: 2px;
}
.contact-item p,
.contact-item a {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--c-gray-dark);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--c-yellow); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  position: relative;
  z-index: 1;
}
.footer-legal-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-legal p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--c-gray-light);
}

/* =========================================================
   BOTONES FLOTANTES
   ========================================================= */
.float-btn {
  position: fixed;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  z-index: 90;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.float-btn:hover { transform: translateY(-3px); }
.float-btn svg { width: 22px; height: 22px; }

.float-up {
  bottom: 100px;
  background: var(--c-yellow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med), transform var(--t-fast);
}
.float-up.visible {
  opacity: 1;
  pointer-events: auto;
}

.float-wa {
  bottom: 30px;
  background: #25D366;
}
.float-wa svg { width: 28px; height: 28px; }

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1024px) {
  :root { --section-pad-y: 80px; }

  .hero { min-height: 540px; }
  .hero-inner { min-height: 540px; gap: 20px; }
  .hero-guards img { max-width: 480px; }

  .compromiso-grid { gap: 50px; }
  .pillars { gap: 34px; }

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

  .config-grid { grid-template-columns: 1fr; gap: 46px; }
  .config-intro { max-width: 560px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-watermark { width: 380px; right: -120px; opacity: 0.22; }
}

/* =========================================================
   RESPONSIVE — MÓVIL
   ========================================================= */
@media (max-width: 768px) {
  :root { --section-pad-y: 64px; }
  .container { padding: 0 22px; }

  /* Nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 82px; left: 0; right: 0;
    background: var(--c-white);
    flex-direction: column;
    gap: 0;
    padding: 18px 22px 28px;
    transform: translateY(-130%);
    transition: transform var(--t-med);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    align-items: stretch;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-list li {
    border-bottom: 1px solid #eee;
  }
  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 13px;
  }
  .nav-list a::after { display: none; }
  .nav-cta {
    margin-top: 18px;
    width: 100%;
    text-align: center;
  }

  /* Switch de idioma en móvil: centrado arriba del CTA */
  .lang-switch {
    justify-content: center;
    margin-top: 18px;
    padding: 10px 0;
    border-top: 1px solid #eee;
    width: 100%;
  }
  .lang-btn { font-size: 13px; padding: 8px 10px; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
  }
  .hero-arrows { top: 22px; left: 22px; }
  .hero-content {
    order: 1;
    padding: 20px 0 30px;
    text-align: left;
  }
  .hero-title { font-size: 34px; }
  .hero-guards {
    order: 2;
    text-align: center;
  }
  .hero-guards img { max-width: 100%; margin: 0 auto; }
  .hero-ctas { justify-content: flex-start; }

  /* Compromiso */
  .compromiso-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Pillars */
  .pillars { grid-template-columns: 1fr; gap: 28px; max-width: 420px; }

  /* Servicios */
  .servicios-grid { grid-template-columns: 1fr; }

  /* Config */
  .config-row {
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "num detail"
      "num price";
    row-gap: 10px;
  }
  .config-num { grid-area: num; }
  .config-detail { grid-area: detail; }
  .config-price {
    grid-area: price;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    text-align: left;
    justify-content: flex-start;
  }
  .price-value { font-size: 16px; }

  /* Cobertura */
  .cities-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  /* Footer */
  .footer-grid { padding-bottom: 40px; }
  .footer-legal-inner { flex-direction: column; gap: 6px; }
  .footer-watermark { display: none; }

  /* Float buttons */
  .float-btn { right: 18px; width: 46px; height: 46px; }
  .float-up { bottom: 82px; }
  .float-wa { bottom: 22px; }
  .float-wa svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 28px; }
  .hero-ctas .btn { flex: 1 1 auto; padding: 13px 18px; font-size: 11px; }
  .servicio-body { padding: 22px 22px 28px; }
}

/* =========================================================
   ANIMACIÓN SUTIL DE APARICIÓN
   Solo aplica cuando JS ha marcado <html> con .js-ready.
   Así evitamos que el contenido quede oculto si JS falla.
   ========================================================= */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal,
  .js-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
