/*
Theme Name: Union Hispana
Theme URI: https://unionhispanains.com
Author: Espanglish Marketing
Author URI: https://unionhispanains.com
Description: Tema a medida para Union Hispana Insurance & Services. Seguros personales y comerciales con atención en español. Incluye home diseñado y un sistema de bloques reutilizables para crear páginas nuevas rápidamente.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: union-hispana
*/

/* ==========================================================================
   Union Hispana — Sistema de diseño
   --------------------------------------------------------------------------
   Todo el estilo del tema vive aquí, organizado en capas:
     1. Tokens (variables CSS)      -> :root
     2. Reset / base
     3. Utilidades / layout         -> .uh-container, .uh-section...
     4. Componentes reutilizables   -> .uh-btn, .uh-eyebrow, .uh-card...
     5. Header / navegación
     6. Footer
     7. Secciones del home          -> .uh-hero, .uh-paises...
     8. Responsive

   Para crear una página nueva reutiliza las clases de las capas 3 y 4.
   ========================================================================== */

/* 1. TOKENS ================================================================ */
:root {
  /* Colores de marca */
  --uh-ink: #182F42;          /* Azul marino principal (texto/fondos oscuros) */
  --uh-ink-soft: #38617F;     /* Azul medio (enlaces hover, acentos) */
  --uh-sky: #ABCEE1;          /* Celeste claro (acento sobre fondo oscuro) */
  --uh-sky-soft: #DCE9F1;     /* Celeste muy claro */
  --uh-cloud: #CFE1EC;

  /* Acentos del moodboard (se suman al azul/celeste/blanco) */
  --uh-orange: #F14E23;       /* Naranja "Orange theory" — acento cálido/energía */
  --uh-orange-deep: #D23E17;  /* Naranja hover */
  --uh-orange-soft: #FCE6DD;  /* Naranja muy claro (fondos/tintes) */
  --uh-wine: #511821;         /* Vino "Red wine" — acento profundo/elegante */
  --uh-wine-deep: #3C1119;    /* Vino más oscuro */
  --uh-wine-soft: #F2E3E4;    /* Vino muy claro (tintes) */

  /* Neutros */
  --uh-white: #FFFFFF;
  --uh-paper: #F4F8FB;        /* Fondo de secciones claras */
  --uh-line: #E9EFF4;         /* Bordes suaves */
  --uh-line-strong: #DCE7EF;  /* Bordes de botones/cards */
  --uh-muted: #5A7183;        /* Texto secundario */
  --uh-muted-2: #7C93A4;

  /* Tipografía */
  --uh-font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --uh-font-head: "Outfit", "Manrope", system-ui, sans-serif;

  /* Radios */
  --uh-r-sm: 12px;
  --uh-r-md: 20px;
  --uh-r-lg: 28px;
  --uh-r-pill: 999px;

  /* Sombras */
  --uh-shadow-sm: 0 10px 26px -24px rgba(24, 47, 66, 0.5);
  --uh-shadow-md: 0 18px 40px -30px rgba(24, 47, 66, 0.6);
  --uh-shadow-lg: 0 28px 60px -38px rgba(24, 47, 66, 0.75);

  /* Layout */
  --uh-maxw: 1320px;
  --uh-pad-x: clamp(16px, 4vw, 48px);
  --uh-section-y: clamp(46px, 6vw, 86px);

  /* Transiciones */
  --uh-t: 180ms ease;
}

/* 2. RESET / BASE ========================================================== */
* { box-sizing: border-box; }

body.union-hispana,
body {
  margin: 0;
  background: var(--uh-white);
  font-family: var(--uh-font-body);
  color: var(--uh-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--uh-ink); text-decoration: none; transition: color var(--uh-t); }
a:hover { color: var(--uh-ink-soft); }

h1, h2, h3, h4 {
  font-family: var(--uh-font-head);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--uh-ink);
}

p { margin: 0 0 1rem; }

button { font-family: inherit; cursor: pointer; }
input, select, textarea, button { font-family: var(--uh-font-body); }

:focus-visible { outline: 3px solid var(--uh-sky); outline-offset: 2px; }

.uh-visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Animaciones globales */
@keyframes uhFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes uhMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 3. LAYOUT / UTILIDADES =================================================== */
.uh-container {
  max-width: var(--uh-maxw);
  margin-inline: auto;
  padding-inline: var(--uh-pad-x);
}
.uh-container--narrow { max-width: 900px; }

.uh-section { padding-block: var(--uh-section-y); }
.uh-section--paper { background: var(--uh-paper); }
.uh-section--ink { background: var(--uh-ink); color: var(--uh-white); }
.uh-section--ink h1,
.uh-section--ink h2,
.uh-section--ink h3 { color: var(--uh-white); }

.uh-stack > * + * { margin-top: 1rem; }
.uh-text-center { text-align: center; }
.uh-accent { color: var(--uh-sky); }
.uh-accent-ink { color: var(--uh-ink-soft); }

/* 4. COMPONENTES REUTILIZABLES ============================================ */

/* 4.1 Eyebrow / etiqueta de sección */
.uh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--uh-ink-soft);
}
/* Icono (reloj de arena del logo) delante de todos los eyebrows */
.uh-eyebrow::before {
  content: "";
  flex: none;
  width: 15px; height: 15px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M5 4h22c0 6-4.9 10.9-11 10.9S5 10 5 4z'/%3E%3Cpath d='M27 28H5c0-6 4.9-10.9 11-10.9S27 22 27 28z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M5 4h22c0 6-4.9 10.9-11 10.9S5 10 5 4z'/%3E%3Cpath d='M27 28H5c0-6 4.9-10.9 11-10.9S27 22 27 28z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.uh-eyebrow svg { flex: none; }
.uh-section--ink .uh-eyebrow,
.uh-eyebrow--sky { color: var(--uh-sky); }

/* 4.2 Encabezado de sección */
.uh-section-head { max-width: 760px; }
.uh-section-head--center { margin-inline: auto; text-align: center; }
/* Centra el párrafo (lead) dentro de un encabezado centrado. */
.uh-section-head--center .uh-section-lead { margin-inline: auto; }
.uh-section-title {
  font-size: clamp(28px, 3.6vw, 50px);
  margin-top: 14px;
}
.uh-section-lead {
  margin-top: 14px;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--uh-muted);
  max-width: 60ch;
}
.uh-section--ink .uh-section-lead { color: var(--uh-sky-soft); }

/* 4.3 Botones */
.uh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--uh-font-head);
  font-weight: 800;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--uh-r-pill);
  border: 1px solid transparent;
  transition: background var(--uh-t), color var(--uh-t), transform var(--uh-t), border-color var(--uh-t);
  white-space: nowrap;
}
.uh-btn:hover { transform: translateY(-2px); }
.uh-btn--primary { background: var(--uh-sky); color: var(--uh-ink); }
.uh-btn--primary:hover { background: #C0DBEC; color: var(--uh-ink); }
.uh-btn--ink { background: var(--uh-ink); color: var(--uh-white); }
.uh-btn--ink:hover { background: #21415c; color: var(--uh-white); }
.uh-btn--outline { background: transparent; color: var(--uh-ink); border-color: var(--uh-line-strong); }
.uh-btn--outline:hover { background: var(--uh-sky); color: var(--uh-ink); border-color: var(--uh-sky); }
.uh-btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--uh-white);
  border-color: rgba(171, 206, 225, 0.55);
}
.uh-btn--ghost-light:hover { background: rgba(255, 255, 255, 0.16); color: var(--uh-white); }
.uh-btn--sm { padding: 11px 20px; font-size: 15px; }

/* Botón "Ver todos los seguros" (Home › Nuestros servicios):
   pulso celeste sutil que respira para atraer la atención + hover con "pop". */
.uh-services__more {
  position: relative;
  animation: uh-attract-pulse 2.6s ease-out infinite;
}
.uh-btn--ink.uh-services__more:hover {
  animation: none;
  background: var(--uh-sky);
  color: var(--uh-ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(171, 206, 225, 0.65);
}
@keyframes uh-attract-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(171, 206, 225, 0.7); }
  70%  { box-shadow: 0 0 0 18px rgba(171, 206, 225, 0); }
  100% { box-shadow: 0 0 0 0 rgba(171, 206, 225, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .uh-services__more { animation: none; }
}

/* 4.4 Tarjeta base */
.uh-card {
  background: var(--uh-white);
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-r-md);
  padding: 28px;
  transition: transform var(--uh-t), box-shadow var(--uh-t), background var(--uh-t);
}

/* 4.5 Icono en pastilla */
.uh-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--uh-ink);
  color: var(--uh-sky);
  flex: none;
}

/* 4.5b Bloque de llamada (icono en círculo + etiqueta + número grande) */
.uh-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--uh-ink);
}
.uh-phone-cta__icon {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; flex: none;
  border-radius: 50%;
  background: var(--uh-ink);
  color: var(--uh-sky);
  box-shadow: 0 0 0 6px rgba(171, 206, 225, 0.28);
  transition: transform var(--uh-t), box-shadow var(--uh-t);
  animation: uhPhonePulse 2.6s ease-in-out infinite;
}
.uh-phone-cta:hover .uh-phone-cta__icon { transform: translateY(-2px); }
.uh-phone-cta__body { display: flex; flex-direction: column; line-height: 1.1; }
.uh-phone-cta__label {
  font-family: var(--uh-font-body);
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--uh-ink-soft);
  margin-bottom: 2px;
}
.uh-phone-cta__num {
  font-family: var(--uh-font-head); font-weight: 800;
  font-size: clamp(22px, 2vw, 30px); letter-spacing: 0.01em;
  color: var(--uh-ink);
}
.uh-phone-cta:hover .uh-phone-cta__num { color: var(--uh-ink-soft); }
/* Variante del header: píldora azul con número claro + ondas en el icono */
.uh-phone-cta--header {
  background: var(--uh-orange);
  border-radius: var(--uh-r-pill);
  padding: 8px 24px 8px 8px;
  box-shadow: 0 12px 26px -10px rgba(241, 78, 35, 0.6);
  transition: transform var(--uh-t), background var(--uh-t), box-shadow var(--uh-t);
}
.uh-phone-cta--header:hover { background: var(--uh-orange-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(241, 78, 35, 0.7); }
.uh-phone-cta--header .uh-phone-cta__icon {
  width: 46px; height: 46px;
  background: var(--uh-white);   /* círculo claro */
  color: var(--uh-orange);       /* icono naranja */
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.22);
  animation: uhPhonePulseHdr 2.6s ease-in-out infinite;
}
.uh-phone-cta--header .uh-phone-cta__label { color: rgba(255, 255, 255, 0.92); }
.uh-phone-cta--header .uh-phone-cta__num { color: var(--uh-white); font-size: clamp(18px, 1.5vw, 23px); }
.uh-phone-cta--header:hover .uh-phone-cta__num { color: var(--uh-white); }
@keyframes uhPhonePulseHdr {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.22); }
  50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08); }
}
@keyframes uhPhonePulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(171, 206, 225, 0.28); }
  50% { box-shadow: 0 0 0 10px rgba(171, 206, 225, 0.12); }
}

/* Lista de checks (2 columnas en desktop) */
.uh-checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 28px; }
.uh-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--uh-ink); }
.uh-checklist li::before {
  content: "";
  flex: none; width: 24px; height: 24px; margin-top: 1px;
  border-radius: 50%;
  background: var(--uh-sky) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23182F42' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* 4.6 Píldora informativa (chips de contacto, etc.) */
.uh-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--uh-line-strong);
  border-radius: var(--uh-r-pill);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
}

/* 4.7 Grids utilitarios */
.uh-grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.uh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.uh-grid--3 { grid-template-columns: repeat(3, 1fr); }
.uh-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* 5. HEADER / NAV ========================================================= */
.uh-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--uh-line);
}
.uh-header__inner {
  max-width: var(--uh-maxw);
  margin-inline: auto;
  padding: 10px var(--uh-pad-x);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 36px);
}
.uh-header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 42px);
  font-size: 17px;
  font-weight: 700;
}
.uh-header__nav a { color: var(--uh-ink); }
.uh-header__nav a:hover { color: var(--uh-ink-soft); }
.uh-header__logo { flex: none; display: block; }
.uh-header__logo img { height: clamp(68px, 7vw, 92px); width: auto; }
/* El menú (flex:1) ocupa el centro; el teléfono queda a la derecha. */

/* El teléfono del header usa el componente .uh-phone-cta--header (ver 4.5b). */

/* Botón hamburguesa (móvil) */
.uh-navtoggle {
  display: none;
  justify-self: end;
  background: transparent;
  border: 1px solid var(--uh-line-strong);
  border-radius: 12px;
  padding: 10px;
  color: var(--uh-ink);
}
.uh-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--uh-pad-x) 18px;
  border-top: 1px solid var(--uh-line);
}
.uh-mobile-nav.is-open { display: flex; }
.uh-mobile-nav a {
  padding: 12px 4px;
  font-weight: 700;
  border-bottom: 1px solid var(--uh-line);
}

/* 6. FOOTER =============================================================== */
.uh-footer {
  background: var(--uh-ink);
  color: var(--uh-sky-soft);
  padding-block: clamp(48px, 6vw, 80px) 26px;
}
.uh-footer a { color: #A9BECF; }
.uh-footer a:hover { color: var(--uh-orange); }

/* Bloque superior centrado */
.uh-footer__top {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px;
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(171, 206, 225, 0.2);
}
.uh-footer__logo { height: clamp(128px, 14vw, 190px); width: auto; }
/* Fila destacada del footer: mapa de ubicación + métodos de pago. */
.uh-footer__feature {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(24px, 3vw, 46px);
  align-items: stretch;
  padding: clamp(28px, 3.5vw, 46px) 0;
  border-top: 1px solid rgba(171, 206, 225, 0.2);
}
.uh-footer__map { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid rgba(171, 206, 225, 0.22); }
.uh-footer__map iframe { display: block; width: 100%; height: 200px; border: 0; }
.uh-footer__pay { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.uh-footer__pay h4 {
  font-family: var(--uh-font-head); font-size: 15px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--uh-white); margin: 0;
}
.uh-footer__pay p { margin: 12px 0 20px; color: #A9BECF; font-size: 15px; line-height: 1.65; max-width: 46ch; }
.uh-footer__cards { display: flex; flex-wrap: wrap; gap: 8px; }
.uh-card-chip {
  width: 50px; height: 33px; flex: none; border-radius: 6px;
  background: var(--uh-white); padding: 3px 5px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.5);
}
.uh-card-chip svg { width: 100%; height: 100%; display: block; }
.uh-footer a.uh-footer__map-cta {
  position: absolute; left: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--uh-white); color: var(--uh-ink);
  font-family: var(--uh-font-head); font-weight: 700; font-size: 12.5px;
  padding: 8px 13px; border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.45);
  transition: background var(--uh-t), color var(--uh-t), transform var(--uh-t);
}
.uh-footer a.uh-footer__map-cta:hover { background: var(--uh-orange); color: var(--uh-white); transform: translateY(-2px); padding-left: 13px; }
@media (max-width: 760px) { .uh-footer__feature { grid-template-columns: 1fr; } }
.uh-footer__tagline {
  margin: 0; font-family: var(--uh-font-head); font-weight: 800;
  font-size: clamp(17px, 2vw, 22px); color: var(--uh-sky);
}
.uh-footer__social { display: flex; gap: 12px; margin-top: 4px; }
.uh-footer__social a {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(171, 206, 225, 0.35); color: var(--uh-sky);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--uh-t), border-color var(--uh-t), color var(--uh-t), transform var(--uh-t);
}
.uh-footer__social a:hover { background: var(--uh-sky); border-color: var(--uh-sky); color: var(--uh-ink); transform: translateY(-2px); }

/* Columnas */
.uh-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.78fr) minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 2.6vw, 40px);
  padding: clamp(28px, 3.5vw, 40px) 0 0;
  align-items: start;
}
/* Columna de marca: logo + redes + métodos de pago. */
.uh-footer__brand { gap: 18px; align-items: center; text-align: center; }
.uh-footer__brand .uh-footer__pay { align-items: center; }
/* Mapa a lo ancho, en su propia fila. */
.uh-footer__mapband { padding: clamp(24px, 3vw, 36px) 0; }
.uh-footer__col { display: flex; flex-direction: column; gap: 14px; }
.uh-footer h4 {
  font-family: var(--uh-font-head);
  font-size: 14px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--uh-white); margin: 0;
}
.uh-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.uh-footer__col > p { margin: 0; font-size: 15px; line-height: 1.65; color: #A9BECF; }
.uh-footer__col a { transition: color var(--uh-t), padding-left var(--uh-t); }
.uh-footer__col a:hover { padding-left: 5px; }
/* Lista de datos con icono (Oficina). */
.uh-footer__info { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.uh-footer__info li { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; font-size: 15px; line-height: 1.6; color: #A9BECF; }
.uh-footer__info-ic { color: var(--uh-sky); display: inline-flex; margin-top: 2px; }
.uh-footer__info a { color: #A9BECF; }
.uh-footer__info a:hover { color: var(--uh-orange); padding-left: 0; }
.uh-footer__info li:hover .uh-footer__info-ic { color: var(--uh-orange); }
/* Enlaces de navegación con chevron. */
.uh-footer__nav li a { display: inline-flex; align-items: center; gap: 9px; }
.uh-footer__nav li a:hover::before { background-color: var(--uh-orange); }
.uh-footer__nav li a::before {
  content: ""; width: 7px; height: 11px; flex: none;
  background-color: var(--uh-sky);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 6 6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 6 6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.uh-footer a.uh-footer__phone-lg {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--uh-font-head); font-weight: 800; font-size: 20px;
  color: var(--uh-sky);
}
.uh-footer__phone-ic { display: inline-flex; flex: none; color: var(--uh-sky); }
/* Acerca el segundo teléfono al primero (contrarresta el gap de la columna). */
.uh-footer a.uh-footer__phone-lg + .uh-footer__phone-lg { margin-top: -6px; }
/* Etiqueta del número del gerente (Andrés Pastor · Gerente). */
.uh-footer__phone-note {
  display: block; font-family: var(--uh-font-head); font-weight: 700;
  font-size: 12px; letter-spacing: 0.04em; color: #8FA6B8; margin-bottom: -8px;
}
.uh-footer a.uh-footer__phone-lg:hover { color: var(--uh-orange); padding-left: 0; }
.uh-footer a.uh-footer__phone-lg:hover .uh-footer__phone-ic { color: var(--uh-orange); }
.uh-footer a.uh-footer__cta {
  margin-top: 4px; align-self: flex-start;
  background: var(--uh-sky); color: var(--uh-ink);
  padding: 15px 26px; border-radius: 999px;
  font-family: var(--uh-font-head); font-weight: 800; text-align: center;
  transition: background var(--uh-t), transform var(--uh-t);
}
.uh-footer a.uh-footer__cta:hover { background: var(--uh-white); color: var(--uh-ink); transform: translateY(-2px); padding-left: 26px; }

/* Barra inferior */
.uh-footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(171, 206, 225, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: #8FA6B8;
}
.uh-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.uh-footer__legal a, .uh-footer__credit a { color: #8FA6B8; }
.uh-footer__legal a:hover { color: var(--uh-orange); }
.uh-footer__credit a { color: var(--uh-sky); border-bottom: 1px solid rgba(171, 206, 225, 0.5); }
.uh-footer__copy { margin: 0; font-size: 13.5px; color: #8FA6B8; }
.uh-footer__copy a { color: var(--uh-sky); border-bottom: 1px solid rgba(171, 206, 225, 0.5); }
.uh-footer__copy a:hover { color: var(--uh-orange); }

/* 7. SECCIONES DEL HOME =================================================== */

/* 7.1 Hero */
.uh-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(52px, 7vw, 96px) var(--uh-pad-x);
  background: var(--uh-ink);
  color: var(--uh-white);
  overflow: hidden;
}
.uh-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.uh-hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(rgba(24, 47, 66, 0.84) 0%, rgba(24, 47, 66, 0.66) 45%, rgba(24, 47, 66, 0.94) 100%);
}
/* Con video, el anillo decorativo y el contenido quedan por encima */
.uh-hero__ring { z-index: 1; }
.uh-hero__inner { z-index: 2; }
.uh-hero__ring {
  position: absolute; left: -140px; bottom: -140px;
  width: 380px; height: 380px; border-radius: var(--uh-r-pill);
  border: 52px solid rgba(171, 206, 225, 0.16);
  pointer-events: none;
  animation: uhFloat 12s ease-in-out infinite;
}
.uh-hero__inner { position: relative; max-width: 1280px; width: 100%; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.uh-hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(171, 206, 225, 0.5);
  border-radius: var(--uh-r-pill);
  padding: 8px 18px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--uh-sky);
}
/* Logo superior del banner (reemplaza el badge "Siempre contigo"). */
.uh-hero__toplogo { width: auto; height: clamp(48px, 6vw, 82px); margin-bottom: 2px; }
.uh-hero__subtitle {
  margin: clamp(14px, 1.6vw, 18px) auto 0; max-width: 740px;
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55; color: rgba(255, 255, 255, 0.88);
}
.uh-hero__subtitle strong { color: var(--uh-sky); font-weight: 800; }
.uh-hero__title {
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: clamp(14px, 2vw, 26px) 0 0;
  color: var(--uh-white);
  text-align: center;
}
.uh-hero__title span { color: var(--uh-sky); }
.uh-hero__lead {
  font-size: clamp(16px, 1.5vw, 22px);
  color: #CFE1EC;
  margin: 20px auto 0;
  max-width: 940px;
}

/* Botón "Cotiza gratis" grande, encima del carrusel */
.uh-hero__cta { display: flex; justify-content: center; width: 100%; margin: clamp(28px, 3.2vw, 44px) 0 clamp(22px, 2.4vw, 32px); }
.uh-hero__cotiza {
  padding: clamp(18px, 1.8vw, 24px) clamp(38px, 4vw, 62px);
  font-size: clamp(18px, 1.6vw, 23px);
  box-shadow: 0 16px 40px -14px rgba(241, 78, 35, 0.75);
  animation: uh-attract-pulse 2.6s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) { .uh-hero__cotiza { animation: none; } }

/* Carrusel manual de seguros (5 a la vez, con flechas) */
.uh-hero__carousel { width: 100%; max-width: 1160px; display: flex; align-items: center; gap: 10px; }
.uh-hero__track {
  flex: 1; display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none; padding: 4px 2px;
}
.uh-hero__track::-webkit-scrollbar { display: none; }
.uh-hero__chip {
  flex: 0 0 calc((100% - 56px) / 5); scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 11px;
  padding: 18px 12px; border-radius: var(--uh-r-md);
  background: rgba(81, 24, 33, 0.34); border: 1px solid rgba(81, 24, 33, 0.62);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  color: var(--uh-white);
  font-family: var(--uh-font-head); font-weight: 700; font-size: 15px; text-align: center;
  transition: background var(--uh-t), transform var(--uh-t), border-color var(--uh-t);
}
.uh-hero__chip span { line-height: 1.25; }
.uh-hero__chip > svg { background: rgba(255, 255, 255, 0.10); border-radius: 50%; padding: 9px; box-sizing: content-box; transition: background var(--uh-t); }
.uh-hero__arrow {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(171, 206, 225, 0.4);
  color: var(--uh-white); cursor: pointer;
  transition: background var(--uh-t), color var(--uh-t), transform var(--uh-t), opacity var(--uh-t);
}
.uh-hero__arrow:hover { background: var(--uh-orange); border-color: var(--uh-orange); transform: scale(1.06); }
.uh-hero__arrow:disabled { opacity: 0.3; cursor: default; }
@media (max-width: 1024px) { .uh-hero__chip { flex-basis: calc((100% - 42px) / 4); } }
@media (max-width: 760px)  { .uh-hero__chip { flex-basis: calc((100% - 28px) / 3); } }
@media (max-width: 520px)  { .uh-hero__chip { flex-basis: calc((100% - 14px) / 2); } }

/* 7.2 Comunidad / países */
.uh-paises__head { display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-end; justify-content: space-between; }
.uh-paises__lead { margin: 0; max-width: 460px; color: var(--uh-white); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; }
.uh-paises__title { font-size: clamp(28px, 3.6vw, 50px); margin-top: 14px; }
.uh-paises__title span { color: var(--uh-sky); }

.uh-flag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(26px, 3vw, 42px); }
.uh-flag {
  display: inline-flex; align-items: center; gap: 11px;
  border-radius: var(--uh-r-pill);
  padding: 11px 20px 11px 14px;
  cursor: pointer;
  font-family: var(--uh-font-head); font-weight: 700; font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--uh-sky-soft);
  border: 1px solid rgba(171, 206, 225, 0.28);
  transition: background var(--uh-t), color var(--uh-t), border-color var(--uh-t);
}
.uh-flag:hover { background: rgba(255, 255, 255, 0.1); }
.uh-flag.is-active { background: var(--uh-sky); color: var(--uh-ink); border-color: var(--uh-sky); }
.uh-flag__img {
  width: 26px; height: 18px; flex: none; border-radius: 4px;
  background-size: cover; background-position: center;
  box-shadow: inset 0 0 0 1px rgba(24, 47, 66, 0.15);
  filter: grayscale(1) opacity(0.75);
  transition: filter 220ms;
}
.uh-flag:hover .uh-flag__img,
.uh-flag.is-active .uh-flag__img { filter: saturate(1.05); }

.uh-country-card {
  margin-top: clamp(24px, 3vw, 42px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  background: rgba(171, 206, 225, 0.07);
  border: 1px solid rgba(171, 206, 225, 0.2);
  border-radius: var(--uh-r-lg);
  padding: clamp(20px, 2.6vw, 34px);
}

/* Columna de datos */
.uh-country-head { display: flex; align-items: center; gap: 16px; }
/* Botón de reproducción de la canción del país (reemplaza la bandera). */
.uh-country-audio {
  position: relative; flex: none;
  width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--uh-orange); color: var(--uh-white);
  transition: transform var(--uh-t), background var(--uh-t);
}
.uh-country-audio:hover { transform: scale(1.06); background: var(--uh-orange-deep); }
.uh-country-audio:focus-visible { outline: 3px solid rgba(241, 78, 35, 0.6); outline-offset: 3px; }
.uh-country-audio__icon { display: inline-flex; position: relative; z-index: 1; }
.uh-country-audio__icon--play { margin-left: 3px; } /* óptica del triángulo */
.uh-country-audio__icon--pause { display: none; margin-left: 0; }
.uh-country-audio.is-playing .uh-country-audio__icon--play { display: none; }
.uh-country-audio.is-playing .uh-country-audio__icon--pause { display: inline-flex; }
/* Ondas de audio alrededor del botón (dos anillos escalonados, siempre visibles;
   se intensifican al reproducir). */
.uh-country-audio::before,
.uh-country-audio::after {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: 50%;
  border: 2px solid rgba(241, 78, 35, 0.5); pointer-events: none;
  animation: uh-audio-wave 2s ease-out infinite;
}
.uh-country-audio::after { animation-delay: 1s; }
.uh-country-audio.is-playing::before,
.uh-country-audio.is-playing::after { border-color: rgba(241, 78, 35, 0.7); animation-duration: 1.4s; }
@keyframes uh-audio-wave { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.75); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .uh-country-audio::before, .uh-country-audio::after { animation: none; } }
.uh-country-name {
  font-size: clamp(24px, 2.6vw, 34px); font-weight: 800;
  color: var(--uh-white); letter-spacing: -0.02em; margin: 0;
}
.uh-country-welcome { font-size: 15px; color: var(--uh-sky); }

.uh-country-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2×2 */
  gap: 14px;
  margin-top: 24px;
}
.uh-country-fact {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 16px;
}
.uh-country-fact--highlight {
  background: rgba(171, 206, 225, 0.14);
  border-color: rgba(171, 206, 225, 0.35);
}
.uh-country-fact__label {
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--uh-sky);
}
.uh-country-fact__value { color: var(--uh-white); font-size: 16px; line-height: 1.45; margin-top: 6px; }

/* Collage de imágenes */
.uh-country-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 300px;
}
.uh-country-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(171, 206, 225, 0.15);
  border: 1px dashed rgba(171, 206, 225, 0.35);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.uh-country-media--tall { grid-row: span 2; }
.uh-country-media__label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: rgba(220, 233, 241, 0.75);
}
/* Cuando la tarjeta tiene una imagen de fondo, se oculta la etiqueta */
.uh-country-media[style*="url"] .uh-country-media__label { display: none; }

/* 7.3 Sobre nosotros */
#nosotros { padding-top: clamp(84px, 10vw, 168px); } /* más aire arriba de la sección */
.uh-about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }

/* Composición de dos fotos superpuestas + decoración a rayas */
.uh-about__media { position: relative; padding: 0 clamp(14px, 3vw, 46px) clamp(10px, 1.5vw, 20px) 0; }
.uh-about__stripe {
  position: absolute; right: 0; top: clamp(18px, 3vw, 34px); bottom: clamp(74px, 9vw, 118px);
  width: clamp(46px, 6vw, 84px); border-radius: 20px;
  background: repeating-linear-gradient(135deg, #DCE9F1 0 2px, #FFFFFF 2px 9px);
}
.uh-about__photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #EAF4F9;
  background-size: cover; background-position: center;
  box-shadow: 0 24px 60px -40px rgba(24, 47, 66, 0.55);
  display: flex; align-items: center; justify-content: center;
}
.uh-about__photo--main { width: 88%; margin-left: auto; aspect-ratio: 4 / 3; }
.uh-about__photo--sub {
  width: 62%; margin-top: -14%; aspect-ratio: 1 / 1;
  border: 6px solid #FFFFFF;
}
.uh-about__ph {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #7C93A4; text-align: center; padding: 12px;
}
.uh-about__photo[style*="url"] .uh-about__ph { display: none; }
.uh-about__badge {
  position: absolute; left: 46%; bottom: 34%;
  background: var(--uh-ink); border-radius: 16px;
  padding: 22px 28px;
  box-shadow: var(--uh-shadow-lg);
  display: flex; align-items: center; gap: 16px;
  z-index: 2;
}
.uh-about__badge::before {
  content: ""; position: absolute; inset: 7px;
  border: 1.5px dashed rgba(171, 206, 225, 0.55);
  border-radius: 11px; pointer-events: none;
}
.uh-about__badge b { font-family: var(--uh-font-head); font-size: clamp(38px, 5vw, 54px); line-height: 1; color: var(--uh-white); letter-spacing: -0.03em; }
.uh-about__badge span { font-family: var(--uh-font-head); font-weight: 700; font-size: clamp(15px, 1.6vw, 19px); line-height: 1.15; color: var(--uh-sky); }
.uh-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* usa todo el ancho y las separa */
  gap: clamp(16px, 2.5vw, 32px);
  margin: 28px 0;
}
.uh-stat { text-align: center; } /* centra el número sobre su etiqueta */
.uh-stat b { display: block; font-family: var(--uh-font-head); font-size: clamp(32px, 3.2vw, 46px); color: var(--uh-ink); line-height: 1; }
.uh-stat span { display: block; color: var(--uh-muted); font-size: 14px; margin-top: 6px; }
/* Puntos "Para ti / negocio / gestiones" */
.uh-about__points { display: grid; gap: clamp(16px, 1.8vw, 22px); margin: clamp(12px, 1.6vw, 18px) 0 4px; }
.uh-about__point { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: start; }
.uh-about__point-icon {
  flex: none; width: 46px; height: 46px; border-radius: var(--uh-r-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--uh-paper); border: 1px solid var(--uh-line); color: var(--uh-ink);
}
.uh-about__point h4 { font-family: var(--uh-font-head); font-weight: 800; font-size: clamp(16px, 1.7vw, 18px); margin: 2px 0 5px; color: var(--uh-ink); }
.uh-about__point p { margin: 0; color: var(--uh-muted); font-size: 15px; line-height: 1.6; }

.uh-about__cta { display: flex; flex-wrap: wrap; gap: 20px clamp(28px, 4vw, 56px); align-items: center; margin-top: clamp(18px, 2.2vw, 30px); }
.uh-about__cta .uh-btn { padding: 20px 34px; font-size: clamp(16px, 1.2vw, 18px); }

/* 7.4 Por qué elegirnos */
.uh-why__head { display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-end; justify-content: space-between; }
.uh-why__link {
  font-family: var(--uh-font-head); font-weight: 800; font-size: 16px;
  color: var(--uh-ink); border-bottom: 2px solid var(--uh-sky); padding-bottom: 4px;
}
.uh-why__link:hover { color: var(--uh-ink-soft); border-color: var(--uh-ink-soft); }
.uh-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: clamp(26px, 3vw, 44px); }
.uh-why-card {
  background: var(--uh-white);
  border: 1px solid var(--uh-line);
  border-radius: 22px;
  padding: 28px 26px;
}
.uh-why-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 999px;
  background: var(--uh-ink); color: var(--uh-sky);
}
.uh-why-card h3 { font-size: 20px; margin: 18px 0 8px; }
.uh-why-card p { color: var(--uh-muted); margin: 0; font-size: 15.5px; line-height: 1.6; }
/* Tarjeta destacada (navy) */
.uh-why-card--dark { background: var(--uh-ink); border-color: var(--uh-ink); }
.uh-why-card--dark h3 { color: var(--uh-white); }
.uh-why-card--dark p { color: #A9BECF; }
.uh-why-card--dark .uh-why-card__icon { background: rgba(171, 206, 225, 0.18); color: var(--uh-sky); }

/* 7.5 Servicios */
.uh-services__head { display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: center; justify-content: space-between; }
.uh-services__head .uh-section-head { flex: 1 1 300px; max-width: 470px; }
.uh-services__aside { flex: 0 1 540px; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.uh-services__aside .uh-section-lead { margin-top: 0; max-width: none; }
/* "Ver todos los servicios": navy visible en reposo, celeste al pasar el cursor */
.uh-services__more:hover { background: var(--uh-sky); color: var(--uh-ink); }
.uh-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: clamp(26px, 3vw, 44px); }
.uh-service-card {
  position: relative;
  background: var(--uh-white);
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-r-md);
  padding: 30px 28px 26px;
  overflow: hidden;
  transition: transform var(--uh-t), box-shadow var(--uh-t), background var(--uh-t);
}
.uh-service-card:hover { transform: translateY(-6px); background: var(--uh-ink); box-shadow: var(--uh-shadow-lg); }
.uh-service-card__num {
  font-family: var(--uh-font-head); font-weight: 800; font-size: 46px;
  color: #E4EDF3; line-height: 1;
}
.uh-service-card:hover .uh-service-card__num { color: rgba(171, 206, 225, 0.45); }
.uh-service-card__icon {
  position: absolute; top: 28px; right: 26px;
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--uh-ink); color: var(--uh-sky);
  transition: background var(--uh-t), color var(--uh-t);
}
.uh-service-card:hover .uh-service-card__icon { background: var(--uh-sky); color: var(--uh-ink); }
.uh-service-card h3 { font-size: 22px; margin: 22px 0 10px; }
.uh-service-card:hover h3 { color: var(--uh-white); }
.uh-service-card p {
  color: var(--uh-muted); margin: 0 0 20px; font-size: 15px;
  /* Evita que una descripción larga desborde la tarjeta (máx. 3 líneas). */
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
}
.uh-service-card:hover p { color: #B9D0DF; }
/* Espacio para imagen del servicio (entre el texto y el botón) */
.uh-service-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  margin: 4px 0 20px;
  background: #EAF4F9;
  background-size: cover; background-position: center;
  border: 1px solid var(--uh-line);
}
.uh-service-card:hover .uh-service-card__media { border-color: rgba(171, 206, 225, 0.25); }
/* Placeholder cuando el ítem no tiene foto: icono centrado sobre banda de marca */
.uh-service-card__media--ph {
  display: flex; align-items: center; justify-content: center;
  color: #9FBFD3;
  background: linear-gradient(135deg, #EEF5FA 0%, #E0EDF5 100%);
}
.uh-service-card:hover .uh-service-card__media--ph { color: rgba(171, 206, 225, 0.55); }
/* En los listados agrupados, el grid va pegado al encabezado del grupo */
.uh-seg-group .uh-services__grid { margin-top: 0; }

/* Mapa de ubicación (página de contacto) */
.uh-map-section { padding-top: 0; }
.uh-map {
  position: relative;
  border-radius: var(--uh-r-lg);
  overflow: hidden;
  border: 1px solid var(--uh-line);
  box-shadow: 0 24px 60px -30px rgba(24, 47, 66, 0.28);
}
.uh-map iframe {
  display: block; width: 100%;
  height: clamp(320px, 42vw, 470px);
  border: 0;
}
.uh-map__cta {
  position: absolute; left: 20px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--uh-white); color: var(--uh-ink);
  font-family: var(--uh-font-head); font-weight: 700; font-size: 14px;
  padding: 11px 18px; border-radius: 999px;
  box-shadow: 0 10px 26px -10px rgba(24, 47, 66, 0.4);
  transition: transform var(--uh-t), background var(--uh-t), color var(--uh-t);
}
.uh-map__cta:hover { transform: translateY(-2px); background: var(--uh-ink); color: var(--uh-white); }
.uh-service-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--uh-font-head); font-weight: 700; font-size: 14px;
  color: var(--uh-ink);
}
.uh-service-card:hover .uh-service-card__link { color: var(--uh-white); }

/* Marquee de servicios */
.uh-marquee { margin-top: clamp(26px, 3vw, 40px); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.uh-marquee__track { display: flex; gap: 14px; width: max-content; animation: uhMarquee 26s linear infinite; }
.uh-marquee__item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--uh-r-pill);
  border: 1px solid var(--uh-line-strong); background: var(--uh-white);
  font-family: var(--uh-font-head); font-weight: 700; font-size: 15px; white-space: nowrap;
}
.uh-marquee__item::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--uh-sky); }

/* 7.6 Testimonios */
.uh-testi__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: clamp(26px, 3vw, 40px); }
.uh-testi-card { padding: 32px 30px; background: var(--uh-white); border: 1px solid var(--uh-line); border-radius: var(--uh-r-md); box-shadow: var(--uh-shadow-sm); }
.uh-testi-card__quote-mark { font-family: var(--uh-font-head); font-size: 54px; line-height: 0.4; color: var(--uh-sky); }
.uh-testi-card__quote { font-size: 18px; line-height: 1.6; color: var(--uh-ink); margin: 18px 0 22px; }
.uh-testi-card__author { display: flex; align-items: center; gap: 14px; }
.uh-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--uh-ink); color: var(--uh-sky);
  font-family: var(--uh-font-head); font-weight: 800; font-size: 18px; flex: none;
}
.uh-testi-card__name { font-family: var(--uh-font-head); font-weight: 700; }
.uh-testi-card__role { color: var(--uh-muted); font-size: 14px; }
.uh-testi__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.uh-testi__dots { display: flex; gap: 8px; }
.uh-testi__dot { width: 8px; height: 8px; border: none; border-radius: 999px; background: #C9DAE6; padding: 0; transition: width var(--uh-t), background var(--uh-t); }
.uh-testi__dot.is-active { width: 30px; background: var(--uh-ink); }
.uh-testi__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--uh-line-strong); background: var(--uh-white); display: inline-flex; align-items: center; justify-content: center; color: var(--uh-ink); }
.uh-testi__arrow:hover { background: var(--uh-ink); color: var(--uh-white); }
.uh-review-cta {
  margin-top: clamp(26px, 3vw, 40px);
  background: var(--uh-ink); color: var(--uh-white);
  border-radius: var(--uh-r-lg); padding: clamp(28px, 4vw, 44px);
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
.uh-review-cta h3 { color: var(--uh-white); font-size: clamp(22px, 2.4vw, 30px); }
.uh-review-cta p { color: var(--uh-sky-soft); margin: 8px 0 0; max-width: none; }

/* 7.7 Cómo trabajamos (proceso) */
.uh-process__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.uh-process__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--uh-ink); color: var(--uh-white);
  border-radius: var(--uh-r-pill); padding: 11px 22px;
  font-family: var(--uh-font-head); font-weight: 800; font-size: 14px; letter-spacing: 0.02em;
}
.uh-process__head .uh-section-title { max-width: 780px; }

.uh-process__grid-wrap { position: relative; margin-top: clamp(50px, 5vw, 76px); }
/* Línea punteada que conecta los círculos (solo desktop) */
.uh-process__line {
  position: absolute; left: 10%; right: 10%; top: 72px;
  border-top: 2px dashed #C9DAE6; pointer-events: none;
}
.uh-process__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(26px, 3vw, 40px);
  /* reserva a la derecha para que el número "04" respete el padding lateral */
  padding-right: clamp(28px, 4vw, 64px);
}
.uh-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.uh-step:nth-child(odd) { transform: translateY(-14px); }
.uh-step:nth-child(even) { transform: translateY(26px); }
.uh-step__circle-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.uh-step__num {
  position: absolute; left: 100%; top: -4px; margin-left: 6px;
  font-family: var(--uh-font-head); font-weight: 800;
  font-size: clamp(52px, 5.5vw, 78px); line-height: 1; letter-spacing: -0.04em;
  color: #E4EDF3; pointer-events: none; z-index: 0;
}
.uh-step__circle {
  position: relative; z-index: 1;
  width: clamp(104px, 11vw, 132px); height: clamp(104px, 11vw, 132px);
  border-radius: 999px; background: var(--uh-ink); border: 8px solid var(--uh-white);
  box-shadow: 0 20px 40px -26px rgba(24, 47, 66, 0.7);
  display: flex; align-items: center; justify-content: center;
}
.uh-step h3 { font-family: var(--uh-font-head); font-size: clamp(19px, 1.9vw, 22px); margin: 22px 0 8px; color: var(--uh-ink); }
.uh-step p { color: var(--uh-muted); font-size: 15.5px; line-height: 1.6; margin: 0; max-width: 250px; }

/* 7.8 FAQ */
.uh-faq { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.uh-faq__media { position: relative; padding: clamp(16px, 3vw, 34px) 0 0 clamp(16px, 3vw, 34px); }
.uh-faq__deco {
  position: absolute; left: 0; top: 0;
  width: 62%; height: 58%; border-radius: 24px;
  background: var(--uh-sky);
}
.uh-faq__photo {
  position: relative;
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #EAF4F9;
  background-size: cover; background-position: center;
  box-shadow: 0 30px 70px -50px rgba(24, 47, 66, 0.7);
  display: flex; align-items: center; justify-content: center;
}
.uh-faq__photo[style*="url"] .uh-faq__ph { display: none; }
.uh-faq__ph {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #7C93A4; text-align: center; padding: 12px;
}
.uh-faq__list { display: grid; gap: 14px; margin-top: clamp(24px, 3vw, 34px); }
.uh-faq-item {
  border: 1px solid #E4EDF3; border-radius: var(--uh-r-md);
  background: var(--uh-white); box-shadow: var(--uh-shadow-sm);
  overflow: hidden; transition: box-shadow var(--uh-t), border-color var(--uh-t);
}
.uh-faq-item.is-open { border-color: var(--uh-sky); box-shadow: var(--uh-shadow-md); }
.uh-faq-item__q {
  width: 100%; text-align: left; background: transparent; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; font-family: var(--uh-font-head); font-weight: 700; font-size: 17px; color: var(--uh-ink);
}
.uh-faq-item.is-open .uh-faq-item__q { color: var(--uh-ink-soft); }
.uh-faq-item__arrow { flex: none; transition: transform var(--uh-t); }
.uh-faq-item.is-open .uh-faq-item__arrow { transform: rotate(-90deg); }
.uh-faq-item__a { max-height: 0; overflow: hidden; transition: max-height 260ms ease; }
.uh-faq-item__a-inner { padding: 0 24px 22px; color: var(--uh-muted); }

/* 7.9 Contacto */
.uh-contact { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
.uh-contact__info { display: grid; gap: 30px; align-content: start; }
.uh-contact__blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 22px; }
.uh-contact__block { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.uh-contact__block-icon {
  flex: none; width: 44px; height: 44px; border-radius: var(--uh-r-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--uh-paper); border: 1px solid var(--uh-line); color: var(--uh-ink);
}
.uh-contact__block h4 { font-family: var(--uh-font-head); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--uh-ink-soft); margin-bottom: 8px; margin-top: 4px; }
.uh-contact__block p { margin: 0; color: var(--uh-ink); line-height: 1.5; font-size: 14.5px; }
.uh-contact__block a { color: var(--uh-ink); }
/* Mapa del negocio + acciones rápidas (columna izquierda de contacto) */
.uh-contact__map { display: grid; gap: 14px; }
.uh-contact__map-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.uh-contact__map-btn { flex: 1 1 0; min-width: 160px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
.uh-contact__map-btn.uh-btn--primary { background: var(--uh-orange); color: var(--uh-white); }
.uh-contact__map-btn.uh-btn--primary:hover { background: var(--uh-orange-deep); color: var(--uh-white); }
.uh-contact__map-embed { position: relative; border-radius: var(--uh-r-md); overflow: hidden; border: 1px solid var(--uh-line); box-shadow: var(--uh-shadow-sm); aspect-ratio: 5 / 2; max-height: 220px; }
.uh-contact__map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.uh-form {
  background: var(--uh-white); border: 1px solid var(--uh-line);
  border-radius: var(--uh-r-lg); padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--uh-shadow-md);
}
.uh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.uh-field { display: flex; flex-direction: column; gap: 6px; }
.uh-field--full { grid-column: 1 / -1; }
.uh-field label { font-size: 13px; font-weight: 700; color: var(--uh-muted); }
.uh-field input, .uh-field select, .uh-field textarea {
  border: 1px solid var(--uh-line-strong); border-radius: var(--uh-r-sm);
  padding: 13px 14px; font-size: 15px; color: var(--uh-ink); background: var(--uh-white);
  transition: border-color var(--uh-t), box-shadow var(--uh-t);
}
.uh-field input:focus, .uh-field select:focus, .uh-field textarea:focus {
  outline: none; border-color: var(--uh-sky); box-shadow: 0 0 0 3px rgba(171, 206, 225, 0.35);
}
.uh-field textarea { min-height: 120px; resize: vertical; }
/* Campo para adjuntar archivos */
.uh-field--file input[type="file"] {
  padding: 12px 14px; cursor: pointer; font-size: 14px;
  background: var(--uh-paper); border-style: dashed;
}
.uh-field--file input[type="file"]::file-selector-button {
  font-family: var(--uh-font-head); font-weight: 700; font-size: 13px;
  margin-right: 12px; padding: 8px 14px; border-radius: 999px; cursor: pointer;
  border: 0; background: var(--uh-ink); color: var(--uh-white);
}
.uh-field__hint { font-size: 12.5px; color: var(--uh-muted); }
.uh-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--uh-muted); margin: 6px 0 18px; }
.uh-check input { margin-top: 3px; }
.uh-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

/* 7.10 Blog */
.uh-blog__head { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: end; }
.uh-blog__head .uh-section-head { max-width: none; }
/* Desktop: 80% título / 20% botón, título en una línea a su tamaño normal */
@media (min-width: 861px) {
  .uh-blog__head { grid-template-columns: minmax(0, 4fr) minmax(0, 1fr); gap: 20px 32px; }
  .uh-blog__head .uh-section-title { white-space: nowrap; }
  .uh-blog__head .uh-btn { justify-self: end; white-space: nowrap; }
}
.uh-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); margin-top: clamp(26px, 3vw, 44px); }
.uh-post-card {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--uh-line); border-radius: var(--uh-r-md); background: var(--uh-white);
  transition: transform var(--uh-t), box-shadow var(--uh-t);
}
.uh-post-card:hover { transform: translateY(-6px); box-shadow: var(--uh-shadow-lg); }
.uh-post-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #2b4a63, var(--uh-ink));
  background-size: cover; background-position: center;
}
.uh-post-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.uh-post-card__tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--uh-ink-soft); background: var(--uh-paper); border-radius: var(--uh-r-pill); padding: 6px 12px;
}
.uh-post-card__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; color: var(--uh-muted-2);
}
.uh-post-card__meta span + span::before {
  content: "·"; margin-right: 8px; color: var(--uh-line-strong);
}
.uh-post-card__meta span:last-child { color: var(--uh-ink-soft); }
.uh-post-card h3 { font-size: 20px; }
.uh-post-card p { color: var(--uh-muted); font-size: 15px; margin: 0; }
.uh-post-card__link { margin-top: auto; font-family: var(--uh-font-head); font-weight: 700; font-size: 14px; padding-top: 8px; }

/* Página Sobre Nosotros ------------------------------------------------- */
.uh-about-hero .uh-crumbs { justify-content: center; margin-bottom: 16px; }
.uh-about-hero .uh-eyebrow { justify-content: center; }
.uh-about-hero p { max-width: 720px; margin-inline: auto; }
.uh-about-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }

/* Nuestra historia — bloque centrado */
.uh-history__inner {
  max-width: 760px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.uh-history__inner .uh-eyebrow { justify-content: center; }
.uh-history__inner .uh-section-title { margin: 14px 0 0; }
.uh-history__inner .uh-section-lead { margin: 16px auto 0; }
.uh-history__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin-top: clamp(26px, 3vw, 34px);
}

/* Misión y visión */
.uh-section--mv { padding-block: clamp(64px, 8vw, 120px); }
.uh-mv { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.5vw, 28px); margin-top: clamp(28px, 3vw, 44px); }
.uh-mv__card {
  background: rgba(171, 206, 225, 0.08);
  border: 1px solid rgba(171, 206, 225, 0.2);
  border-radius: var(--uh-r-lg);
  padding: clamp(26px, 3vw, 40px);
}
.uh-mv__label {
  display: inline-block;
  font-family: var(--uh-font-head); font-weight: 800; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--uh-sky);
  margin-bottom: 12px;
}
.uh-mv__card p { margin: 0; color: var(--uh-sky-soft); font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; }

/* Valores — layout editorial (intro + lista numerada) */
.uh-values {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 76px); align-items: start;
}
.uh-values__intro { position: sticky; top: 100px; }
.uh-values__intro .uh-section-title { margin: 10px 0 0; }
.uh-values__intro .uh-section-lead { margin: 16px 0 26px; }
.uh-values__list { list-style: none; margin: 0; padding: 0; display: grid; }
.uh-values__item {
  display: grid; grid-template-columns: auto 1fr;
  align-items: start; gap: clamp(18px, 2.2vw, 32px);
  padding: clamp(22px, 2.6vw, 30px) 0;
  border-top: 2px solid var(--uh-line-strong);
}
.uh-values__item:first-child { border-top: none; padding-top: 0; }
.uh-values__num {
  font-family: var(--uh-font-head); font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1;
  color: var(--uh-ink-soft); letter-spacing: 0.02em;
  padding-top: 4px; min-width: 44px;
}
.uh-values__text h3 { font-size: clamp(18px, 1.9vw, 22px); margin: 0 0 6px; }
.uh-values__text p { color: var(--uh-muted); margin: 0; line-height: 1.65; }

/* Equipo */
.uh-team__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px); margin-top: clamp(28px, 3vw, 44px);
}
.uh-team-card {
  background: var(--uh-white); border: 1px solid var(--uh-line);
  border-radius: var(--uh-r-lg); overflow: hidden;
  transition: transform var(--uh-t), box-shadow var(--uh-t);
}
.uh-team-card:hover { transform: translateY(-6px); box-shadow: var(--uh-shadow-lg); }
.uh-team-card__photo {
  position: relative; aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(171, 206, 225, 0.22), transparent 55%),
    linear-gradient(155deg, var(--uh-ink-soft) 0%, var(--uh-ink) 100%);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.uh-team-card__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 47, 66, 0.55) 100%);
}
.uh-team-card--has-photo .uh-team-card__avatar { display: none; }
.uh-team-card__avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 104px; height: 104px; border-radius: 50%;
  background: rgba(244, 248, 251, 0.08); color: var(--uh-sky);
  font-family: var(--uh-font-head); font-weight: 800; font-size: 36px;
  border: 1.5px solid rgba(171, 206, 225, 0.35);
  box-shadow: 0 0 0 8px rgba(171, 206, 225, 0.08);
}
.uh-team-card__body { padding: 22px 24px 26px; text-align: center; }
.uh-team-card__name { font-size: 21px; margin-bottom: 3px; }
.uh-team-card__role { color: var(--uh-ink-soft); font-weight: 700; font-size: 14.5px; margin: 0 0 16px; }
.uh-team-card__social { display: flex; justify-content: center; gap: 10px; }
.uh-team-card__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--uh-paper); color: var(--uh-ink-soft);
  border: 1px solid var(--uh-line);
  transition: background var(--uh-t), color var(--uh-t), transform var(--uh-t);
}
.uh-team-card__social a:hover { background: var(--uh-ink); color: #fff; transform: translateY(-2px); }

.uh-about-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 860px) {
  .uh-mv { grid-template-columns: 1fr; }
  .uh-team__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .uh-values { grid-template-columns: 1fr; gap: 32px; }
  .uh-values__intro { position: static; }
}

/* Servicio individual (CPT servicio) ----------------------------------- */
.uh-service-single__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(44px, 6vw, 100px);
  align-items: start;
}
.uh-service-single__side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.uh-service-nav { display: flex; flex-direction: column; }
.uh-service-nav__item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--uh-line);
  font-family: var(--uh-font-head); font-weight: 700; font-size: 17px;
  color: var(--uh-muted);
  transition: color var(--uh-t), padding-left var(--uh-t);
}
.uh-service-nav__item:hover { color: var(--uh-ink); padding-left: 6px; }
.uh-service-nav__item.is-active { color: var(--uh-ink); }
.uh-service-nav__item.is-active svg { color: var(--uh-ink-soft); }

.uh-service-card-cta {
  background: var(--uh-paper);
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-r-md);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.uh-service-card-cta h3 { font-size: 20px; }
.uh-service-card-cta p { color: var(--uh-muted); margin: 0; font-size: 15px; }
.uh-service-card-cta .uh-btn { margin-top: 6px; width: 100%; }
.uh-service-card-cta__call {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--uh-font-head); font-weight: 800; font-size: 15px;
  color: var(--uh-ink); letter-spacing: 0.02em;
}
.uh-service-card-cta__call:hover { color: var(--uh-ink-soft); }

.uh-service-single__media {
  border-radius: var(--uh-r-lg); overflow: hidden; margin-bottom: clamp(24px, 3vw, 36px);
  box-shadow: var(--uh-shadow-md);
}
.uh-service-single__media img { width: 100%; height: auto; display: block; }
.uh-service-single__title { font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; }
/* Imagen y contenido ocupan toda la columna principal (alineados, borde derecho
   a la altura del padding del contenedor). Gana a .uh-prose por especificidad. */
.uh-service-single__content.uh-prose { max-width: none; margin-inline: 0; }
.uh-service-single__foot { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 3vw, 40px); }

@media (max-width: 860px) {
  .uh-service-single__grid { grid-template-columns: 1fr; }
  .uh-service-single__side { position: static; order: 2; }
  .uh-service-single__main { order: 1; }
}

/* Seguros Integrales — listado agrupado -------------------------------- */
.uh-seg-group { margin-bottom: clamp(40px, 5vw, 68px); }
.uh-seg-group:last-of-type { margin-bottom: 0; }
.uh-seg-group__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px;
  padding-bottom: clamp(18px, 2vw, 26px); margin-bottom: clamp(22px, 2.6vw, 34px);
  border-bottom: 2px solid var(--uh-line-strong);
}
.uh-seg-group__desc { margin: 0; color: var(--uh-muted); font-size: clamp(15px, 1.4vw, 17px); }
.uh-seg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.8vw, 24px); }
.uh-seg-card {
  display: flex; flex-direction: column;
  background: var(--uh-white); border: 1px solid var(--uh-line);
  border-radius: var(--uh-r-lg); padding: clamp(22px, 2.2vw, 28px);
  position: relative; overflow: hidden;
  transition: transform var(--uh-t), box-shadow var(--uh-t), border-color var(--uh-t);
}
.uh-seg-card:hover { transform: translateY(-5px); box-shadow: var(--uh-shadow-lg); border-color: transparent; }
.uh-seg-card__num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--uh-font-head); font-weight: 800; font-size: 15px;
  color: var(--uh-line-strong); letter-spacing: 0.04em;
}
.uh-seg-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: var(--uh-r-md);
  background: var(--uh-paper); color: var(--uh-ink);
  border: 1px solid var(--uh-line); margin-bottom: 18px;
  transition: background var(--uh-t), color var(--uh-t);
}
.uh-seg-card:hover .uh-seg-card__icon { background: var(--uh-ink); color: var(--uh-sky); border-color: var(--uh-ink); }
.uh-seg-card__title { font-size: clamp(17px, 1.7vw, 20px); margin: 0 0 8px; }
.uh-seg-card__desc { color: var(--uh-muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 20px; }
.uh-seg-card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--uh-font-head); font-weight: 700; font-size: 14px; color: var(--uh-ink);
}
.uh-seg-card__link svg { transition: transform var(--uh-t); }
.uh-seg-card:hover .uh-seg-card__link svg { transform: translateX(4px); }

.uh-seg-cta {
  margin-top: clamp(44px, 5vw, 72px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 22px 32px;
  background: var(--uh-paper); border: 1px solid var(--uh-line);
  border-radius: var(--uh-r-lg); padding: clamp(26px, 3vw, 40px);
}
.uh-seg-cta h3 { font-size: clamp(20px, 2.2vw, 26px); margin: 0 0 6px; }
.uh-seg-cta p { margin: 0; color: var(--uh-muted); max-width: 52ch; }
.uh-seg-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 1040px) { .uh-seg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .uh-seg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .uh-seg-grid { grid-template-columns: 1fr; } }

/* Encabezado interior (breadcrumb + título) ---------------------------- */
.uh-pagehead {
  background: var(--uh-ink);
  color: var(--uh-white);
  padding: clamp(26px, 3.5vw, 46px) 0 clamp(30px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}
.uh-pagehead::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 44px solid rgba(171, 206, 225, 0.08); pointer-events: none;
}
.uh-pagehead .uh-container { position: relative; z-index: 1; }
.uh-pagehead__title { color: var(--uh-white); font-weight: 700; font-size: clamp(34px, 5vw, 64px); margin: 0; text-wrap: balance; }
.uh-pagehead .uh-crumbs { margin-top: clamp(16px, 2vw, 26px); }
.uh-pagehead__sub { color: var(--uh-sky-soft); margin: clamp(16px, 2vw, 24px) 0 0; max-width: 62ch; font-size: clamp(16px, 1.4vw, 18px); }
/* Blog: el subtítulo cabe en una sola línea en escritorio; en móvil se ajusta solo. */
.page-template-template-blogs .uh-pagehead__sub,
.blog .uh-pagehead__sub { max-width: none; }
@media (min-width: 900px) {
	.page-template-template-blogs .uh-pagehead__sub,
	.blog .uh-pagehead__sub { white-space: nowrap; }
}

.uh-crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px;
  font-family: var(--uh-font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.uh-crumbs a { color: var(--uh-sky-soft); transition: color var(--uh-t); }
.uh-crumbs a:hover { color: var(--uh-white); }
.uh-crumbs span[aria-current] { color: var(--uh-white); }
.uh-crumbs__sep { color: rgba(171, 206, 225, 0.4); }

/* Contenido genérico (páginas / posts) --------------------------------- */
.uh-page-hero { background: var(--uh-ink); color: var(--uh-white); padding: clamp(64px, 8vw, 120px) var(--uh-pad-x) clamp(40px, 5vw, 72px); text-align: center; }
.uh-page-hero h1 { color: var(--uh-white); font-size: clamp(34px, 5vw, 64px); }
.uh-page-hero p { color: var(--uh-sky-soft); margin-top: 14px; }
.uh-prose { max-width: 760px; margin-inline: auto; }
.uh-prose h2 { font-size: clamp(21px, 2.3vw, 28px); margin: 38px 0 12px; }
.uh-prose h3 { font-size: clamp(18px, 1.9vw, 22px); margin: 28px 0 10px; }
.uh-prose p, .uh-prose li { color: #33485a; font-size: 17px; line-height: 1.7; }
.uh-prose img { border-radius: var(--uh-r-md); margin: 24px 0; }
.uh-prose a { color: var(--uh-ink-soft); text-decoration: underline; }

/* Paginación */
.uh-pagination { display: flex; gap: 10px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.uh-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 12px; border-radius: 12px;
  border: 1px solid var(--uh-line-strong); font-weight: 700; color: var(--uh-ink);
}
.uh-pagination .page-numbers.current { background: var(--uh-ink); color: var(--uh-white); border-color: var(--uh-ink); }

/* 8. RESPONSIVE ========================================================== */
@media (max-width: 1024px) {
  .uh-why__grid { grid-template-columns: repeat(2, 1fr); }
  .uh-services__grid,
  .uh-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .uh-process__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .uh-step:nth-child(n) { transform: none; }
  .uh-process__line { display: none; }
  .uh-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .uh-header__nav { display: none; }
  .uh-phone-cta--header { display: none; }
  .uh-navtoggle { display: inline-flex; margin-left: auto; }
  .uh-about,
  .uh-faq,
  .uh-contact { grid-template-columns: 1fr; }
  .uh-testi__grid { grid-template-columns: 1fr; }
  /* Hero: 3 accesos por fila en tablet */
  .uh-hero__quick { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .uh-grid--2, .uh-grid--3, .uh-grid--4,
  .uh-why__grid,
  .uh-services__grid,
  .uh-blog__grid,
  .uh-process__grid { grid-template-columns: 1fr; }
  .uh-form__row { grid-template-columns: 1fr; }
  .uh-footer__grid { grid-template-columns: 1fr; }
  .uh-checklist { grid-template-columns: 1fr; }
  .uh-contact__blocks { grid-template-columns: 1fr; }
  .uh-review-cta { flex-direction: column; align-items: flex-start; }
  /* Hero: 2 accesos por fila en móvil */
  .uh-hero__quick { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Respeta reduce-motion */
@media (prefers-reduced-motion: reduce) {
  .uh-hero__ring, .uh-marquee__track, .uh-phone-cta__icon { animation: none; }
  * { scroll-behavior: auto; }
}

/* 9. ACENTOS DE MARCA (naranja + vino) ====================================
   Se añaden los dos colores del moodboard como acentos, manteniendo el azul,
   el celeste y el blanco como colores dominantes. No cambia estructura ni
   layout: solo color y algunas marcas/brillos de fondo decorativos.
   ======================================================================== */

/* --- Naranja: el icono (reloj de arena) de TODOS los eyebrows --- */
.uh-eyebrow::before { background-color: var(--uh-orange); }
.uh-section--ink .uh-eyebrow::before,
.uh-eyebrow--sky::before { background-color: var(--uh-orange); }

/* --- Naranja: números "fantasma" grandes (dan calidez en vez de gris pálido) --- */
.uh-service-card__num { color: var(--uh-orange); }
.uh-service-card:hover .uh-service-card__num { color: var(--uh-orange); }
.uh-step__num { color: var(--uh-orange); }
.uh-values__num { color: var(--uh-orange); }
.uh-seg-card__num { color: var(--uh-orange); }

/* --- Naranja: detalles pequeños --- */
.uh-marquee__item::before { background: var(--uh-orange); }
.uh-testi-card__quote-mark { color: var(--uh-orange); }
.uh-why__link { border-bottom-color: var(--uh-orange); }
.uh-why__link:hover { color: var(--uh-orange-deep); border-color: var(--uh-orange-deep); }
.uh-seg-card:hover .uh-seg-card__link { color: var(--uh-orange); }
.uh-post-card__tag { color: var(--uh-orange); background: var(--uh-orange-soft); }
.uh-post-card__link:hover { color: var(--uh-orange-deep); }

/* --- Naranja: cinta superior que aparece al pasar por las tarjetas de servicio --- */
.uh-service-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--uh-sky), var(--uh-orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--uh-t); z-index: 3;
}
.uh-service-card:hover::after { transform: scaleX(1); }

/* --- Naranja: botones de conversión principales (arriba y abajo de la página) --- */
.uh-hero__cta .uh-btn--primary { background: var(--uh-orange); color: var(--uh-white); }
.uh-hero__cta .uh-btn--primary:hover { background: var(--uh-orange-deep); color: var(--uh-white); }
.uh-footer a.uh-footer__cta { background: var(--uh-orange); color: var(--uh-white); }
.uh-footer a.uh-footer__cta:hover { background: var(--uh-orange-deep); color: var(--uh-white); }
.uh-footer__social a:hover { background: var(--uh-orange); border-color: var(--uh-orange); color: var(--uh-white); }

/* --- Vino: banda de reseñas (degradado navy → vino + marca de agua) --- */
.uh-review-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--uh-ink) 0%, var(--uh-wine) 100%);
}
.uh-review-cta > * { position: relative; z-index: 1; }
.uh-review-cta::after {
  content: ""; position: absolute; right: -40px; top: -60px;
  width: 260px; height: 260px; z-index: 0; pointer-events: none;
  opacity: 0.10; background-color: var(--uh-sky);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M5 4h22c0 6-4.9 10.9-11 10.9S5 10 5 4z'/%3E%3Cpath d='M27 28H5c0-6 4.9-10.9 11-10.9S27 22 27 28z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M5 4h22c0 6-4.9 10.9-11 10.9S5 10 5 4z'/%3E%3Cpath d='M27 28H5c0-6 4.9-10.9 11-10.9S27 22 27 28z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* --- Vino: acento superior de las tarjetas de Misión/Visión (Sobre nosotros) --- */
.uh-mv__card { border-top: 3px solid var(--uh-orange); }

/* --- Naranja + vino: brillos de fondo en la cabecera interior (Seguros,
   Servicios, Blog, Sobre nosotros, detalle de servicio) --- */
.uh-pagehead::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(440px 440px at -6% 118%, rgba(241, 78, 35, 0.30), transparent 62%),
    radial-gradient(380px 380px at 106% -16%, rgba(81, 24, 33, 0.60), transparent 60%);
}

/* --- Hero: brillo cálido + toque vino en el degradado, para restar palidez --- */
.uh-hero__overlay {
  background: linear-gradient(rgba(24, 47, 66, 0.86) 0%, rgba(24, 47, 66, 0.60) 45%, rgba(58, 17, 24, 0.72) 100%);
}
.uh-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(520px 400px at 92% 6%, rgba(241, 78, 35, 0.20), transparent 60%);
}

/* --- Footer: cinta de marca (celeste → naranja → vino) --- */
.uh-footer { border-top: 4px solid transparent; border-image: linear-gradient(90deg, var(--uh-sky), var(--uh-orange), var(--uh-wine)) 1; }

/* --- Más presencia de naranja/vino en hovers de botones --- */
/* Botones navy → vino al pasar el cursor (elegante y cálido). */
.uh-btn--ink:hover { background: var(--uh-wine); color: var(--uh-white); }
/* Botones outline → naranja al pasar el cursor. */
.uh-btn--outline:hover { background: var(--uh-orange); color: var(--uh-white); border-color: var(--uh-orange); }
/* Botón fantasma del banner (2.º botón): hover celeste (no naranja). */
.uh-btn--ghost-light:hover { background: rgba(171, 206, 225, 0.20); border-color: var(--uh-sky); color: var(--uh-white); }
/* Flechas del carrusel de testimonios → naranja. */
.uh-testi__arrow:hover { background: var(--uh-orange); border-color: var(--uh-orange); color: var(--uh-white); }
/* Navegación lateral del detalle de servicio → naranja al pasar. */
.uh-service-nav__item:hover { color: var(--uh-orange); }
/* Paginación → acento naranja al pasar el cursor. */
.uh-pagination a.page-numbers:hover { border-color: var(--uh-orange); color: var(--uh-orange); }

/* 10. DETALLE DE BLOG — lista lateral de entradas =========================
   Reutiliza el grid de dos columnas del detalle de servicio; solo estiliza
   los ítems de la lista (miniatura + título + fecha).
   ======================================================================== */
.uh-blog-side { display: flex; flex-direction: column; gap: 4px; }
.uh-blog-side__item {
  display: grid; grid-template-columns: 66px 1fr; gap: 14px; align-items: center;
  padding: 10px; border-radius: var(--uh-r-md);
  border: 1px solid transparent;
  transition: background var(--uh-t), border-color var(--uh-t), transform var(--uh-t);
}
.uh-blog-side__item:hover { background: var(--uh-paper); transform: translateX(3px); }
.uh-blog-side__item.is-active { background: var(--uh-paper); border-color: var(--uh-line); }
.uh-blog-side__thumb {
  width: 66px; height: 56px; flex: none; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #EEF5FA 0%, #E0EDF5 100%);
  background-size: cover; background-position: center;
  border: 1px solid var(--uh-line);
  display: flex; align-items: center; justify-content: center; color: #9FBFD3;
  transition: border-color var(--uh-t);
}
.uh-blog-side__item.is-active .uh-blog-side__thumb { border-color: var(--uh-orange); box-shadow: 0 0 0 2px rgba(241, 78, 35, 0.28); }
.uh-blog-side__text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.uh-blog-side__title {
  font-family: var(--uh-font-head); font-weight: 700; font-size: 14.5px; line-height: 1.25; color: var(--uh-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.uh-blog-side__item:hover .uh-blog-side__title { color: var(--uh-orange-deep); }
.uh-blog-side__item.is-active .uh-blog-side__title { color: var(--uh-ink); }
.uh-blog-side__date {
  font-size: 12px; font-weight: 700; letter-spacing: 0.02em; color: var(--uh-muted-2);
}
.uh-blog-side__item.is-active .uh-blog-side__date { color: var(--uh-orange-deep); }

/* 11. ATAJO "¿ES COMERCIAL?" — solo en la tarjeta de Seguro de auto =======
   La tarjeta es un enlace completo; el atajo va como hermano (no anidado),
   posicionado abajo a la derecha, a la altura del enlace "Ver detalles".
   ======================================================================== */
.uh-service-card-wrap { position: relative; display: flex; }
.uh-service-card-wrap > .uh-service-card { flex: 1; }
.uh-seg-alt-btn {
  position: absolute; right: clamp(18px, 2vw, 26px); bottom: 22px; z-index: 5;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: var(--uh-r-pill);
  background: var(--uh-orange); color: var(--uh-white);
  font-family: var(--uh-font-head); font-weight: 800; font-size: 13px; white-space: nowrap;
  box-shadow: 0 10px 22px -10px rgba(241, 78, 35, 0.75);
  transition: background var(--uh-t), transform var(--uh-t), box-shadow var(--uh-t);
}
.uh-seg-alt-btn svg { flex: none; }
/* Acompaña el "lift" de la tarjeta al pasar el cursor. */
.uh-service-card-wrap:hover .uh-seg-alt-btn { transform: translateY(-6px); }
.uh-seg-alt-btn:hover { background: var(--uh-orange-deep); color: var(--uh-white); box-shadow: 0 14px 26px -8px rgba(241, 78, 35, 0.85); }

/* 12. MÁS NARANJA EN HEADER/BANNER, CARRUSEL, FAQ Y FORMULARIO ============= */
/* Cinta degradada celeste → naranja entre el header y el banner (mismo efecto
   que aparece al pasar por las tarjetas de servicios/seguros). */
.uh-hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; z-index: 4;
  background: linear-gradient(90deg, var(--uh-sky), var(--uh-orange));
  pointer-events: none;
}
/* Carrusel del banner: base vino translúcido y hover vino 100% con leve elevación. */
.uh-hero__chip:hover { background: var(--uh-wine); border-color: var(--uh-wine); color: var(--uh-white); transform: translateY(-4px); }
.uh-hero__chip:hover > svg { background: rgba(255, 255, 255, 0.18); }
/* FAQ: acento naranja en el borde izquierdo + hover/abierto en naranja. */
.uh-faq-item { border-left: 3px solid var(--uh-orange); }
.uh-faq-item:hover { border-color: var(--uh-orange); }
.uh-faq-item.is-open { border-color: var(--uh-orange); }
.uh-faq-item.is-open .uh-faq-item__q { color: var(--uh-orange-deep); }
/* Formulario "Solicita tu consulta": botón enviar en naranja. */
.uh-form button[type="submit"].uh-btn--primary { background: var(--uh-orange); color: var(--uh-white); }
.uh-form button[type="submit"].uh-btn--primary:hover { background: var(--uh-orange-deep); color: var(--uh-white); }

/* Segundo botón de teléfono (Sobre nosotros): juega con naranja + vino, para
   contrastar con el primero (azul/celeste). */
.uh-phone-cta--warm .uh-phone-cta__icon {
  background: var(--uh-orange); color: var(--uh-white);
  box-shadow: 0 0 0 6px rgba(241, 78, 35, 0.22);
  animation: uhPhonePulseWarm 2.6s ease-in-out infinite;
}
.uh-phone-cta--warm .uh-phone-cta__label { color: var(--uh-orange-deep); }
.uh-phone-cta--warm .uh-phone-cta__num { color: var(--uh-wine); }
.uh-phone-cta--warm:hover .uh-phone-cta__num { color: var(--uh-orange-deep); }
@keyframes uhPhonePulseWarm {
  0%, 100% { box-shadow: 0 0 0 6px rgba(241, 78, 35, 0.28); }
  50% { box-shadow: 0 0 0 10px rgba(241, 78, 35, 0.12); }
}
/* Sobre nosotros: los dos botones de teléfono caben en una sola fila (el gap
   grande y los iconos hacían que el segundo bajara a otra línea). */
.page-template-template-sobre-nosotros .uh-about__cta { column-gap: clamp(40px, 5vw, 72px); }
.page-template-template-sobre-nosotros .uh-about__cta .uh-phone-cta__icon { width: 50px; height: 50px; }
.page-template-template-sobre-nosotros .uh-about__cta .uh-phone-cta__num { font-size: clamp(19px, 1.55vw, 22px); }
.page-template-template-sobre-nosotros .uh-about__cta .uh-phone-cta__label { font-size: 11px; }

/* --- Iconos en naranja (pedido de la marca) --- */
/* "Por qué elegirnos": círculo navy en todas las tarjetas; los iconos ya traen
   sus dos tonos (naranja + celeste). En la tarjeta destacada (navy) el círculo
   lleva un aro celeste sutil para que se distinga del fondo. */
.uh-why-card--dark .uh-why-card__icon { background: var(--uh-sky); }
/* "Sobre Union Hispana": los 3 iconos de los puntos en naranja. */
.uh-about__point-icon { background: var(--uh-orange-soft); border-color: rgba(241, 78, 35, 0.22); color: var(--uh-orange); }
/* Contacto "Solicita tu consulta": los 4 iconos de datos en naranja. */
.uh-contact__block-icon { background: var(--uh-orange-soft); border-color: rgba(241, 78, 35, 0.22); color: var(--uh-orange); }

/* Home: el botón de teléfono de "Sobre Union Hispana" en naranja/vino (como la
   "Línea directa"). En la página Sobre nosotros se mantiene el contraste
   navy + naranja de los dos botones. */
.home .uh-about__cta .uh-phone-cta__icon {
  background: var(--uh-orange); color: var(--uh-white);
  box-shadow: 0 0 0 6px rgba(241, 78, 35, 0.22);
  animation: uhPhonePulseWarm 2.6s ease-in-out infinite;
}
.home .uh-about__cta .uh-phone-cta__label { color: var(--uh-orange-deep); }
.home .uh-about__cta .uh-phone-cta__num { color: var(--uh-wine); }
.home .uh-about__cta .uh-phone-cta:hover .uh-phone-cta__num { color: var(--uh-orange-deep); }

/* --- Menú con desplegables (Seguros / Nuestros servicios) --- */
.uh-nav-item { position: relative; display: inline-flex; align-items: center; }
.uh-nav-item__top { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.uh-nav-item__caret { transition: transform var(--uh-t); }
.uh-nav-item:hover .uh-nav-item__caret,
.uh-nav-item:focus-within .uh-nav-item__caret { transform: rotate(180deg); }
.uh-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 70;
  min-width: 232px; padding: 10px;
  background: var(--uh-white); border: 1px solid var(--uh-line);
  border-radius: var(--uh-r-md); box-shadow: var(--uh-shadow-md);
  display: grid; gap: 3px;
  opacity: 0; visibility: hidden; transform: translateY(8px); pointer-events: none;
  transition: opacity var(--uh-t), transform var(--uh-t), visibility var(--uh-t);
}
/* Puente invisible para no perder el hover al bajar del enlace al panel. */
.uh-dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
/* 2 columnas con ancho suficiente para los títulos largos (evita que se encimen). */
.uh-dropdown--2col { grid-template-columns: repeat(2, minmax(244px, 1fr)); column-gap: 26px; }
.uh-nav-item:hover .uh-dropdown,
.uh-nav-item:focus-within .uh-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.uh-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px;
  font-family: var(--uh-font-body); font-size: 15px; font-weight: 600;
  color: var(--uh-ink); white-space: nowrap;
  transition: background var(--uh-t), color var(--uh-t), padding-left var(--uh-t);
}
.uh-dropdown a svg { flex: none; color: var(--uh-ink-soft); transition: color var(--uh-t); }
.uh-dropdown a:hover { background: var(--uh-paper); color: var(--uh-orange-deep); padding-left: 16px; }
.uh-dropdown a:hover svg { color: var(--uh-orange); }

/* Submenús en el menú móvil */
.uh-mobile-nav__sub { display: flex; flex-direction: column; }
.uh-mobile-nav .uh-mobile-nav__sub a {
  padding: 10px 4px 10px 20px; font-size: 14.5px; font-weight: 600; color: var(--uh-muted);
}
.uh-mobile-nav .uh-mobile-nav__sub a:hover { color: var(--uh-orange-deep); }

/* --- Barra superior (topbar): contacto + redes + idioma --- */
.uh-topbar { background: var(--uh-ink); color: var(--uh-white); font-size: 15px; border-bottom: 1px solid rgba(171, 206, 225, 0.14); }
.uh-topbar__inner {
  max-width: var(--uh-maxw); margin-inline: auto;
  padding: 9px var(--uh-pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 16px 24px; flex-wrap: wrap;
}
.uh-topbar__info { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; }
.uh-topbar__item { display: inline-flex; align-items: center; gap: 10px; color: var(--uh-white); }
.uh-topbar__item:hover { color: var(--uh-sky); }
.uh-topbar__ic { display: inline-flex; flex: none; color: var(--uh-sky); }
.uh-topbar__txt { display: flex; flex-direction: column; line-height: 1.18; }
.uh-topbar__txt b { font-family: var(--uh-font-head); font-weight: 800; font-size: 14.5px; letter-spacing: 0.02em; }
.uh-topbar__txt span { font-size: 14px; color: #CFE1EC; }
.uh-topbar__item:hover .uh-topbar__txt span { color: var(--uh-sky); }
.uh-topbar__right { display: flex; align-items: center; gap: clamp(22px, 3.5vw, 46px); }
.uh-topbar__social { display: flex; gap: 8px; }
.uh-topbar__social a {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.12); color: var(--uh-white);
  transition: background var(--uh-t), color var(--uh-t), transform var(--uh-t);
}
.uh-topbar__social a:hover { background: var(--uh-sky); color: var(--uh-ink); transform: translateY(-1px); }
.uh-lang { display: inline-flex; align-items: center; gap: 5px; }
.uh-lang__ic { display: inline-flex; color: var(--uh-sky); margin-right: 3px; }
.uh-lang__btn {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--uh-font-head); font-weight: 800; font-size: 14.5px;
  color: #CFE1EC; padding: 5px 10px; border-radius: 8px;
  transition: background var(--uh-t), color var(--uh-t);
}
.uh-lang__btn:hover { color: var(--uh-white); }
.uh-lang__btn.is-active { background: var(--uh-sky); color: var(--uh-ink); }
.uh-lang__sep { color: rgba(255, 255, 255, 0.35); }

@media (max-width: 900px) {
  .uh-topbar__item--loc, .uh-topbar__item--email { display: none; }
}
@media (max-width: 560px) {
  .uh-topbar__inner { justify-content: center; }
  .uh-topbar__txt b { display: none; }
}

/* Oculta la interfaz nativa de Google Translate (usamos el toggle propio ES/EN). */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget,
.skiptranslate iframe,
iframe.goog-te-banner-frame { display: none !important; visibility: hidden !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover, .goog-text-highlight { display: none !important; background: none !important; box-shadow: none !important; }

/* 14. CENTRO DE AYUDA (accesos rápidos + modal) ==========================*/
.uh-eyebrow--center { justify-content: center; }
.uh-help__grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  margin-top: clamp(28px, 3.2vw, 44px);
}
.uh-help-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  text-align: center; cursor: pointer;
  background: var(--uh-white); border: 1px solid var(--uh-line); border-radius: var(--uh-r-md);
  padding: clamp(22px, 2.4vw, 34px) 14px;
  font-family: var(--uh-font-head); font-weight: 700; font-size: 15px; color: var(--uh-ink);
  transition: transform var(--uh-t), box-shadow var(--uh-t), border-color var(--uh-t);
}
.uh-help-card:hover { transform: translateY(-4px); box-shadow: var(--uh-shadow-lg); border-color: transparent; }
.uh-help-card:focus-visible { outline: 3px solid var(--uh-sky); outline-offset: 2px; }
.uh-help-card__ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--uh-paper); color: var(--uh-ink);
  transition: background var(--uh-t), color var(--uh-t), transform var(--uh-t);
}
.uh-help-card:hover .uh-help-card__ic { background: var(--uh-orange); color: var(--uh-white); transform: scale(1.05); }
.uh-help-card__label { line-height: 1.25; }
@media (max-width: 1024px) { .uh-help__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .uh-help__grid { grid-template-columns: repeat(2, 1fr); } }

/* Título apilado del listado (Servicios: "¿Necesitas ayuda en algo más?"). */
.uh-seg-group__head--stack { flex-direction: column; align-items: center; text-align: center; gap: 6px; border-bottom: 0; padding-bottom: 0; }
.uh-seg-group__head--stack .uh-eyebrow { justify-content: center; }
.uh-seg-group__head--stack .uh-section-title { margin: 6px 0 0; }
.uh-seg-group__head--stack .uh-seg-group__desc { max-width: 70ch; margin: 12px auto 0; }

/* Popup / modal reutilizable */
.uh-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.uh-modal.is-open { display: flex; }
.uh-modal__backdrop { position: absolute; inset: 0; background: rgba(24, 47, 66, 0.6); backdrop-filter: blur(2px); }
.uh-modal__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  background: var(--uh-white); border-radius: var(--uh-r-lg);
  padding: clamp(26px, 3vw, 40px); box-shadow: var(--uh-shadow-lg);
  animation: uh-modal-in 0.22s ease;
}
@keyframes uh-modal-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.uh-modal__close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--uh-line); background: var(--uh-white); color: var(--uh-ink);
  font-size: 22px; line-height: 1; cursor: pointer;
  transition: background var(--uh-t), color var(--uh-t), border-color var(--uh-t);
}
.uh-modal__close:hover { background: var(--uh-orange); color: var(--uh-white); border-color: var(--uh-orange); }
.uh-modal__title { font-size: clamp(21px, 2.3vw, 27px); margin: 0 44px 0 0; }
.uh-modal__body { margin-top: 14px; }
.uh-modal__body p { color: var(--uh-muted); line-height: 1.65; margin: 0; }
.uh-modal__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
body.uh-modal-open { overflow: hidden; }

/* Cifras destacadas bajo el banner */
.uh-stats-band { padding-block: clamp(34px, 4.5vw, 60px); }
.uh-stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); text-align: center; }
.uh-stat-b { display: flex; flex-direction: column; gap: 8px; }
.uh-stat-b__value { font-family: var(--uh-font-head); font-weight: 800; font-size: clamp(38px, 5vw, 62px); line-height: 1; color: var(--uh-sky); letter-spacing: -0.02em; }
.uh-stat-b__label { color: var(--uh-sky-soft); font-size: clamp(13.5px, 1.3vw, 16px); line-height: 1.4; }
@media (max-width: 640px) { .uh-stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; } }

/* Formulario del popup de cotización (reutiliza el .uh-form del sitio) */
.uh-modal__intro { color: var(--uh-muted); margin: 8px 0 0; line-height: 1.6; }
/* Dentro del modal el formulario va sin su propia caja (evita caja dentro de caja). */
.uh-modal__dialog .uh-form { border: 0; padding: 0; box-shadow: none; background: transparent; margin-top: 18px; }
.uh-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* 13. PRELOADER (splash con el logo en cada carga de página) ===============
   Cubre toda la pantalla sobre fondo navy con el logo; se desvanece solo tras
   ~1.6 s. Funciona solo con CSS; el JS únicamente lo retira del DOM al terminar.
   ======================================================================== */
.uh-preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--uh-ink);
  animation: uh-preloader-out 0.5s ease 1.5s forwards;
}
.uh-preloader__logo {
  width: clamp(150px, 24vw, 240px); height: auto;
  animation: uh-preloader-pulse 1.4s ease-in-out infinite;
}
@keyframes uh-preloader-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes uh-preloader-out {
  to { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .uh-preloader__logo { animation: none; }
}
