:root {
    --color-primary: #47c2e8;
    --color-primary-dark: #22b3dc;
    --color-primary-soft: #ecfbff;
    --color-text: #1e293b;
    --color-text-soft: #64748b;
    --color-bg: #ffffff;
    --color-bg-soft: #f8fafc;
    --color-border: #e2e8f0;
    --color-dark: #0f172a;
    --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.12);
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-pill: 999px;
    --container: 1280px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: min(100% - 48px, var(--container));
    margin: 0 auto;
  }
  
  /* HEADER */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  }
  
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-weight: 900;
    box-shadow: var(--shadow-sm);
  }
  
  .brand-title {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--color-primary);
  }
  
  .brand-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-text-soft);
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .main-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.25s ease;
  }
  
  .main-nav a:hover {
    color: var(--color-primary);
  }
  
  /* BOTONES */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    transition: 0.25s ease;
    cursor: pointer;
  }
  
  .btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 16px 40px rgba(71, 194, 232, 0.28);
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--color-primary-dark);
  }
  
  .btn-secondary {
    background: white;
    color: var(--color-text);
    border: 1px solid var(--color-border);
  }
  
  .btn-secondary:hover {
    border-color: #8adff3;
    color: var(--color-primary);
  }
  
  /* HERO */
  .hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  }
  
  .hero::before,
  .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
  }
  
  .hero::before {
    width: 260px;
    height: 260px;
    right: 4%;
    top: 2%;
    background: rgba(34, 211, 238, 0.15);
  }
  
  .hero::after {
    width: 280px;
    height: 280px;
    left: 2%;
    bottom: 0;
    background: rgba(14, 165, 233, 0.1);
  }
  
  .hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    padding: 5px 0 90px;
    align-items: center;
  }
  
  .badge {
    display: inline-flex;
    width: fit-content;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: var(--radius-pill);
    border: 1px solid #d9f4fb;
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
  }
  
  .hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
  }
  
  .hero p {
    max-width: 640px;
    margin-top: 24px;
    color: var(--color-text-soft);
    font-size: 1.08rem;
    line-height: 1.9;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 38px;
    max-width: 680px;
  }
  
  .stat-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
  }
  
  .stat-card strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-text);
  }
  
  .stat-card span {
    display: block;
    margin-top: 6px;
    font-size: 0.92rem;
    color: var(--color-text-soft);
  }
  
  /* VISUAL HERO */
  .hero-visual {
    position: relative;
  }
  
  .hero-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: white;
    box-shadow: var(--shadow-lg);
  }
  
  .hero-card-top {
    background: #f1f5f9;
    padding: 12px;
  }
  
  .hero-dots {
    display: flex;
    gap: 8px;
  }
  
  .hero-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
  }
  
  .hero-card-body {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
  }
  
  .hero-card-body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
  }
  
  .hero-card-content {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
  }
  
  .hero-logo-box {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 4px solid rgba(255, 255, 255, 0.7);
    background: rgba(71, 194, 232, 0.1);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
  }
  
  .hero-logo-mark {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: white;
    color: var(--color-primary);
    font-size: 2.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
  }
  
  .hero-logo-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--color-primary);
  }
  
  .hero-logo-subtitle {
    margin-top: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #334155;
  }
  
  /* SECCIONES */
  .section {
    padding: 96px 0;
  }
  
  .section-soft {
    background: rgba(248, 250, 252, 0.8);
  }
  
  .section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-primary);
  }
  
  .section-title {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.05px;
  }
  
  .section-text {
    margin-top: 24px;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--color-text-soft);
  }
  
  /* GRID Y TARJETAS */
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: 0.25s ease;
    width: 100%;
    max-width: 100%
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-weight: 900;
    margin-bottom: 18px;
  }
  
  .card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text);
  }
  
  .card p {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-soft);
    color: #5F6F86;
  }
  
  /* COVERAGE */
  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .coverage-item {
    border: 1px solid #d8f4fb;
    background: rgba(236, 251, 255, 0.7);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-sm);
  }
  
  .coverage-item-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  
  .check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  /* DOCUMENTOS */
  .doc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .doc-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: 0.25s ease;
  }
  
  .doc-link:hover {
    border-color: #c6edf8;
    box-shadow: var(--shadow-md);
  }
  
  .doc-link span {
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
  }
  
  .doc-link small {
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
    font-weight: 700;
  }
  
  /* CONTACTO */
  .contact-section {
    background: var(--color-dark);
    color: white;
  }
  
  .contact-section .section-text {
    color: #cbd5e1;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: start;
  }
  
  .contact-form {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    padding: 32px;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e2e8f0;
    font-size: 0.92rem;
    font-weight: 600;
  }
  
  .form-control {
    width: 100%;
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
  }
  
  .form-control::placeholder {
    color: #94a3b8;
  }
  
  .form-control:focus {
    border-color: #47c2e8;
  }
  
  /* FOOTER */
  .site-footer {
    background: white;
    border-top: 1px solid var(--color-border);
  }
  
  .site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    color: var(--color-text-soft);
    font-size: 0.92rem;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-links a:hover {
    color: var(--color-primary);
  }
  
  /* WHATSAPP FLOAT */
  .whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(71, 194, 232, 0.35);
    transition: 0.25s ease;
  }
  
  .whatsapp-float:hover {
    transform: translateY(-2px);
  }
  
  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .hero .container,
    .grid-2,
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .grid-4 {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hero-stats {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .main-nav {
      display: none;
    }
  
    .grid-4,
    .coverage-grid {
      grid-template-columns: 1fr;
    }
  
    .section,
    .hero .container {
      padding-top: 72px;
      padding-bottom: 72px;
    }
  
    .site-footer .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .whatsapp-float {
      right: 16px;
      bottom: 16px;
    }
  }


  /* AJUSTES PARA EMPATAR CON EL HTML */
.brand-copy {
  display: flex;
  flex-direction: column;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header {
  white-space: nowrap;
}

.hero-logo-image {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden; /* 🔥 importante */
}

.feature-grid::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url('img/quienesSomos.png'); /* 👈 aquí tu imagen */
  background-size: cover;
  background-position: center;

  opacity: 0.15; /* 🔥 controla intensidad */
  filter: blur(2px); /* opcional elegante */

  z-index: 0;
}

.section-head {
  max-width: 760px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-outline-light:hover {
  border-color: #8adff3;
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.btn-light-dark {
  background: white;
  color: var(--color-dark);
  border: 1px solid white;
}

.btn-light-dark:hover {
  transform: translateY(-2px);
  background: #f3f7fb;
}

.section-tag-light {
  color: #7dddf5;
}

.section-title-light {
  color: white;
}

.section-text-light {
  color: #cbd5e1;
}

.provider-card {
  text-align: center;
}

.provider-card h3 {
  margin-top: 8px;
}

.docs-layout,
.coverage-layout,
.who-grid {
  align-items: start;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-actions .btn-header {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .form-buttons,
  .contact-actions {
    flex-direction: column;
  }

  .form-buttons .btn,
  .contact-actions .btn {
    width: 100%;
  }
}


/* =========================
   PRELOADER PREMIUM
========================= */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Fondo suave con gradiente */
#preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(71,194,232,0.08), transparent 60%);
}

/* Contenido */
.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Logo */
.loader-logo {
  width: 250px;
  animation: introLogo 1.6s ease forwards, pulseLogo 2s ease-in-out infinite 1.6s;
}

/* Entrada */
@keyframes introLogo {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulso */
@keyframes pulseLogo {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}

/* SALIDA PREMIUM */
#preloader.hide {
  animation: exitPreloader 0.8s ease forwards;
}

@keyframes exitPreloader {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
    filter: blur(8px);
  }
}

.hero-visual .hero-card {
  width: 100%;
  max-width: 680px;
  margin-top: 0px;
}

.hero-visual .hero-card-body,
.hero-visual .hero-card-content {
  min-height: 750px;
}

/* ===== HERO DERECHO LIMPIO ===== */

.hero-card-body {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #eef7fb;
}

/* quitamos la capa vieja del hero anterior */
.hero-card-body::before {
  content: none;
}

.hero-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0)

}

.hero-card-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 140px 32px 40px;
  min-height: auto;
}

.hero-logo-box {
  padding: 24px;
  max-width: 300px;
  border-radius: var(--radius-xl);
  border: 4px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
  margin-bottom: 26px;
}

.hero-card-content p {
  max-width: 430px;
  opacity: 0.9;
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.hero-card:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   HERO FLIP CARDS
========================= */
.hero-flip-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
  max-width: 760px;
}

.flip-card {
  perspective: 1200px;
  min-height: 170px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 170px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-sm);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-card-front strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 14px;
}

.flip-card-front h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 6px;
}

.flip-card-front span {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  line-height: 1.5;
}

.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  border-color: #d9f4fb;
}

.flip-card-back p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--color-text-soft);
}

/* Mobile: quitar flip y mostrar limpio */
@media (max-width: 900px) {
  .hero-flip-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .flip-card {
    perspective: none;
    min-height: auto;
  }

  .flip-card-inner {
    transform: none !important;
    min-height: auto;
  }

  .flip-card-front,
  .flip-card-back {
    position: relative;
    transform: none;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }

  .flip-card-back {
    margin-top: 10px;
  }
}


.feature-grid.with-bg {
  position: relative;
  padding: 30px;
  border-radius: 24px;
  overflow: hidden;
}

.feature-grid.with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('img/slide1.png'); /* tu imagen */
  background-size: cover;
  background-position: center;
  opacity: 0.08; /* MUY sutil */
  z-index: 0;
}

.feature-grid.with-bg .card {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(6px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  grid-auto-rows: 1fr;
}

/* 🔥 TARJETAS IGUALES */
.feature-grid .card {
  height: 100%;
  min-height: 180px; /* ajusta si quieres más altas */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 18px;
}


.contenedor-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 esto obliga mismo ancho */
  gap: 20px;
}


.feature-grid.with-bg {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}

.feature-grid.with-bg .card {
  width: 100%;
  box-sizing: border-box;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%);
}

.feature-grid::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  background-image: url("/img/quienesSomos.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  opacity: 0.28;
  filter: blur(0.5px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.18; /* 🔥 bájala más */
  filter: blur(0.5px);
}

.card {
  background: rgba(255, 255, 255, 0.92); /* 🔥 más sólido */
  backdrop-filter: blur(4px); /* menos blur */
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

.feature-grid {
  padding: 36px; /* 🔥 más espacio */
  gap: 26px;
  border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.feature-grid {
  background: #F8FAFC; /* más limpio */
  border-radius: 28px;
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 20px 40px rgba(15, 35, 60, 0.06);
}

.card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 22px;

  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);

  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.feature-grid::before {
  opacity: 0.12; /* 🔥 bájala más */
  filter: blur(0.3px);
} 

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h3 {
  color: #162033; /* más profundo */
}

.feature-grid::before {
  opacity: 0.06;
}

.feature-grid {
  box-shadow: 0 24px 48px rgba(15, 35, 60, 0.05);
}

.feature-grid {
  padding-top: 80px;
  padding-bottom: 80px;
}

.card:nth-child(1) {
  border-top: 2px solid #2DAAE1;
}
.card:nth-child(2) {
  border-top: 2px solid #2DAAE1;
}

.card:nth-child(3) {
  border-top: 2px solid #2DAAE1;
}

.card:nth-child(4) {
  border-top: 2px solid #2DAAE1;
}




/* =========================
   SECCIÓN SERVICIOS
========================= */

#servicios {
  padding: 110px 0 120px;
}

/* bloque superior */
.servicios-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 54px;
}

.servicios-copy {
  max-width: 760px;
}

#servicios .section-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2DAAE1;
}

#servicios .section-title {
  margin: 0 0 26px;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #18243b;
  max-width: 720px;
}

#servicios .section-text {
  margin: 0;
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.82;
  color: #5d6f87;
}

/* imagen */
.servicios-media {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.servicios-media img {
  width: 100%;
  height: 455px;
  display: block;
  object-fit: cover;
  object-position: 63% center;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(15, 35, 60, 0.13);
}

/* integración suave con el layout */
.servicios-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(
    to left,
    rgba(15, 35, 60, 0.10),
    rgba(15, 35, 60, 0.00) 38%
  );
  pointer-events: none;
}

/* grid de cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* cards */
.service-card {
  position: relative;
  min-height: 214px;
  padding: 22px 22px 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 35, 60, 0.05);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(15, 35, 60, 0.045);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 3px;
  background: #2DAAE1;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 35, 60, 0.08);
  border-color: rgba(45, 170, 225, 0.14);
}

.service-card:hover::before {
  opacity: 1;
}

/* badge */
.service-badge {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 13px;
  background: rgba(45, 170, 225, 0.12);
  color: #2DAAE1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

/* textos de las cards */
.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 700;
  color: #1d2940;
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: #66778e;
}

/* responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .servicios-top {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 36px;
  }

  .servicios-media {
    margin-top: 0;
  }

  .servicios-media img {
    height: 330px;
  }

  #servicios .section-title,
  #servicios .section-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  #servicios {
    padding: 88px 0 96px;
  }

  #servicios .section-title {
    font-size: clamp(2.3rem, 9vw, 3.8rem);
  }

  #servicios .section-text {
    font-size: 1rem;
    line-height: 1.75;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .servicios-media img {
    height: 280px;
    border-radius: 24px;
  }
}

.servicios-media {
  margin-top: -8px;
}

.servicios-media img {
  height: 400px;
}

.servicios-top {
  margin-bottom: 10px;
}




/* =========================
   SECCIÓN COBERTURA PREMIUM
========================= */

#cobertura {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7fbfe 100%
  );
}

/* línea decorativa elegante */
#cobertura::before {
  content: "";
  position: absolute;
  left: 6%;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(45, 170, 225, 0.25),
    rgba(45, 170, 225, 0)
  );
}

/* layout */
.cobertura-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

/* =========================
   TEXTO
========================= */

#cobertura .section-tag {
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2DAAE1;
}

#cobertura .section-title {
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #18243b;
  max-width: 680px;
}

#cobertura .section-text {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #5f6f86;
}

/* =========================
   GRID
========================= */

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* =========================
   CARDS PREMIUM
========================= */

.coverage-card {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 26px 24px;
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(45, 170, 225, 0.12);

  box-shadow: 0 12px 30px rgba(15, 35, 60, 0.05);

  transition: all 0.28s ease;
}

/* línea lateral elegante */
.coverage-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  border-radius: 3px;
  background: #2DAAE1;
  opacity: 0;
  transition: 0.3s ease;
}

.coverage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 35, 60, 0.08);
  border-color: rgba(45, 170, 225, 0.25);
}

.coverage-card:hover::before {
  opacity: 1;
}

/* icono */
.coverage-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;

  background: linear-gradient(135deg, #2DAAE1, #4fc3f7);

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.9rem;
  font-weight: bold;

  box-shadow: 0 8px 16px rgba(45, 170, 225, 0.25);
}

/* texto */
.coverage-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1d2940;
}

.coverage-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #63748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .cobertura-layout {
    grid-template-columns: 1fr;
  }

  #cobertura::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .coverage-grid {
    grid-template-columns: 1fr;
  }
}

#cobertura .section-title {
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
}

#cobertura .section-text {
  max-width: 640px;
}

.coverage-points {
  margin-top: 18px;
  padding-left: 18px;
  color: #5f6f86;
  font-size: 0.95rem;
  line-height: 1.7;
}

.coverage-points li {
  margin-bottom: 6px;
}

.coverage-points {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.coverage-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #5f6f86;
  font-size: 0.95rem;
}

.coverage-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2EA6D7;
  font-weight: bold;
  font-size: 0.9rem;
}


#cobertura .section-text {
  max-width: 600px;
}

#cobertura .section-text {
  max-width: 600px;
}

.coverage-card.active {
  border: 1px solid rgba(46,166,215,0.35);
  box-shadow: 0 10px 25px rgba(46,166,215,0.12);
}

#cobertura .section-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #55657d;
}

#cobertura .section-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #55657d;
}

.coverage-subtitle {
  font-size: 0.95rem;
  color: #6b7c93;
  margin-bottom: 20px;
  margin-top: 1rem;
}

.coverage-card.highlight {
  border: 1px solid rgba(46,166,215,0.35);
  box-shadow: 0 12px 30px rgba(46,166,215,0.12);
}

.coverage-points {
  margin-top: 18px;
}

.coverage-points {
  margin-top: 18px;
}


.coverage-points li:first-child {
  font-weight: 500;
  color: #2c3e50;
}

.coverage-points li:first-child {
  font-weight: 500;
  color: #2c3e50;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2EA6D7;
  font-weight: 600;
}

#cobertura h2 {
  letter-spacing: -0.5px;
}

#cobertura h2 {
  letter-spacing: -0.5px;
}

#cobertura .left-content {
  max-width: 620px;
}

#cobertura .section-text {
  color: #4a5a70;
}

#cobertura .left-content {
  padding-right: 20px;
}

#cobertura .left-content {
  padding-right: 20px;
}







.providers-map-section {
  padding: 120px 0 110px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.providers-map-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 90px;
  align-items: center;
}

.providers-map-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.providers-map {
  position: relative;
  width: 560px;
  height: 500px;
}

.map-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  width: 300px;
  height: 300px;
  top: 100px;
  left: 130px;
  border: 1px dashed rgba(58, 184, 233, 0.18);
}

.ring-two {
  width: 220px;
  height: 220px;
  top: 140px;
  left: 170px;
  border: 1px solid rgba(58, 184, 233, 0.08);
}

.map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #39b9ec 0%, #67d2fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 45px rgba(57, 185, 236, 0.22);
  z-index: 2;
}

.map-center span {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 90px;
}

.map-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(58, 184, 233, 0) 0%,
    rgba(58, 184, 233, 0.25) 50%,
    rgba(58, 184, 233, 0) 100%
  );
  z-index: 1;
}

.line-top,
.line-bottom {
  width: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.line-left,
.line-right {
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.line-top {
  height: 74px;
  top: 96px;
}

.line-bottom {
  height: 74px;
  bottom: 96px;
}

.line-left {
  width: 88px;
  left: 94px;
}

.line-right {
  width: 88px;
  right: 94px;
}

.map-card {
  position: absolute;
  width: 180px;
  min-height: 92px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 34, 59, 0.06);
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(19, 35, 61, 0.07);
  backdrop-filter: blur(10px);
  z-index: 3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(19, 35, 61, 0.11);
}

.map-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
  color: #16233d;
}

.map-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #74829a;
}

.card-top {
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.card-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.card-bottom {
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.card-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.card-top:hover {
  transform: translateX(-50%) translateY(-5px);
}

.card-right:hover {
  transform: translateY(-50%) translateY(-5px);
}

.card-bottom:hover {
  transform: translateX(-50%) translateY(-5px);
}

.card-left:hover {
  transform: translateY(-50%) translateY(-5px);
}

.providers-map-content .section-tag {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #35b8eb;
}

.providers-map-content h2 {
  margin: 0 0 24px;
  max-width: 520px;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  line-height: 1.02;
  font-weight: 800;
  color: #16233d;
}

.providers-map-content p {
  margin: 0;
  max-width: 520px;
  font-size: 1.04rem;
  line-height: 1.9;
  color: #6f7d93;
}

@media (max-width: 1200px) {
  .providers-map-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .providers-map-content {
    text-align: center;
    margin: 0 auto;
  }

  .providers-map-content h2,
  .providers-map-content p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .providers-map-section {
    padding: 90px 0;
  }

  .providers-map {
    width: 100%;
    max-width: 360px;
    height: 420px;
  }

  .ring-one {
    width: 220px;
    height: 220px;
    top: 100px;
    left: 70px;
  }

  .ring-two {
    width: 160px;
    height: 160px;
    top: 130px;
    left: 100px;
  }

  .map-center {
    width: 120px;
    height: 120px;
  }

  .map-center span {
    font-size: 0.92rem;
  }

  .map-card {
    width: 145px;
    min-height: 82px;
    padding: 14px;
    border-radius: 18px;
  }

  .map-card h4 {
    font-size: 0.86rem;
  }

  .map-card p {
    font-size: 0.76rem;
  }

  .card-right {
    right: -4px;
  }

  .card-left {
    left: -4px;
  }

  .line-left {
    width: 64px;
    left: 72px;
  }

  .line-right {
    width: 64px;
    right: 72px;
  }

  .line-top {
    height: 52px;
    top: 102px;
  }

  .line-bottom {
    height: 52px;
    bottom: 102px;
  }
}

.map-center {
  width: 130px;
  height: 130px;
  box-shadow: 0 15px 35px rgba(57, 185, 236, 0.18);
}

.map-center span {
  font-size: 0.9rem;
  font-weight: 600;
  max-width: 80px;
}

.map-card {
  width: 170px;
  min-height: 80px;
  padding: 16px 16px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(19, 35, 61, 0.06);
}

.map-card h4 {
  font-size: 0.95rem;
}

.map-card p {
  font-size: 0.85rem;
}

.map-line {
  opacity: 0.4;
}

.map-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 35px rgba(19, 35, 61, 0.12);
}


.map-center {
  position: relative;
}

.map-center::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(57, 185, 236, 0.25) 0%,
    rgba(57, 185, 236, 0) 70%
  );
  z-index: -1;
}

.providers-map-grid {
  gap: 110px;
}

.map-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}

.map-card {
  box-shadow: 0 8px 20px rgba(19, 35, 61, 0.05);
  border: 1px solid rgba(20, 34, 59, 0.05);
}

.map-center span {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.map-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(20, 34, 59, 0.04);
  box-shadow: 0 6px 18px rgba(19, 35, 61, 0.04);
}

.map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(19, 35, 61, 0.08);
}

.map-ring {
  opacity: 0.5;
}

/* ICONOS */
.icon {
  font-size: 18px;
  color: #39b9ec;
  margin-bottom: 10px;
  display: block;
}

/* EFECTO GLASS + MEJORA */
.map-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(20, 34, 59, 0.04);
  box-shadow: 0 6px 18px rgba(19, 35, 61, 0.04);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

/* Hover sin tocar transform general */
.map-card:hover {
  box-shadow: 0 14px 30px rgba(19, 35, 61, 0.08);
  filter: brightness(1.01);
}

/* GLOW CENTRO */
.map-center {
  position: relative;
}

.map-center::after {
  content: "";
  position: absolute;
  inset: -25px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(57, 185, 236, 0.25) 0%,
    rgba(57, 185, 236, 0) 70%
  );
  z-index: -1;
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* =========================================
   PULIDO VISUAL FINAL - PROVEEDORES
========================================= */

/* Contenedor visual un poco más amplio */
.providers-map {
  width: 600px;
  height: 540px;
}

/* Anillos más sutiles */
.ring-one {
  width: 310px;
  height: 310px;
  top: 115px;
  left: 145px;
  border: 1px dashed rgba(58, 184, 233, 0.14);
}

.ring-two {
  width: 225px;
  height: 225px;
  top: 158px;
  left: 188px;
  border: 1px solid rgba(58, 184, 233, 0.06);
}

/* Líneas más delicadas */
.map-line {
  opacity: 0.18;
}

.line-top,
.line-bottom {
  width: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.line-left,
.line-right {
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.line-top {
  height: 78px;
  top: 102px;
}

.line-bottom {
  height: 78px;
  bottom: 102px;
}

.line-left {
  width: 92px;
  left: 92px;
}

.line-right {
  width: 92px;
  right: 92px;
}

/* Centro más elegante */
.map-center {
  width: 118px;
  height: 118px;
  box-shadow: 0 16px 36px rgba(57, 185, 236, 0.16);
}

.map-center span {
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
  max-width: 76px;
}

/* Cards más refinadas */
.map-card {
  width: 196px;
  min-height: 146px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(20, 34, 59, 0.04);
  box-shadow: 0 10px 24px rgba(19, 35, 61, 0.05);
  transition: box-shadow 0.25s ease, filter 0.25s ease;
}

.map-card:hover {
  box-shadow: 0 16px 30px rgba(19, 35, 61, 0.08);
  filter: brightness(1.015);
}

/* Más separación respecto al centro */
.card-top {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.card-right {
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
}

.card-bottom {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.card-left {
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
}

/* Encabezado con icono mejor alineado */
.map-card h4 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
  color: #16233d;
}

.map-card h4 i,
.map-card h4 .icon {
  font-size: 15px;
  color: #39b9ec;
  flex-shrink: 0;
  position: relative;
  top: 2px;
  margin: 0;
}

/* Texto más fino */
.map-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: #73819a;
}

/* Título derecho un poco más elegante */
.providers-map-content h2 {
  max-width: 560px;
  font-size: clamp(2.9rem, 4.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -1.2px;
}

.providers-map-content p {
  max-width: 540px;
  font-size: 1.03rem;
  line-height: 1.85;
  color: #6f7d93;
}

@media (max-width: 480px) {

  .hero-logo-bar {
    padding: 20px 16px 10px; /* baja el bloque */
    gap: 10px;
  }

  .hero-logo-bar img {
    width: 58px; /* logo más pequeño SOLO en móvil */
  }

  .hero-logo-text {
    margin-top: 8px; /* lo baja un poco */
  }

  .hero-logo-text .kin-name {
    font-size: 1.3rem; /* más compacto */
  }

  .hero-logo-text .kin-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  @media (max-width: 480px) {

    .hero-card-content {
      padding-top: 200px;
    }
  
    .hero-logo-box {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 8px;     /* baja un poco el bloque */
      margin-bottom: 14px;
    }
  
    .hero-logo-image {
      width: 140px;        /* más pequeño solo en móvil */
      max-width: 70%;
      height: auto;
      display: block;
    }
  
    .hero-card-content p {
      font-size: 0.95rem;  /* texto más pequeño */
      line-height: 1.7;
      text-align: center;
      padding: 0 10px;
      margin: 0 auto;
    }
  }

@media (max-width: 480px) {

  .hero-stats,
  .hero-flip-cards,
  .hero-stats.hero-flip-cards {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .hero-stats > .flip-card,
  .hero-flip-cards > .flip-card,
  .hero-stats.hero-flip-cards > .flip-card {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    grid-column: 1 / -1 !important;
    margin: 0 !important;
  }
}

@media (max-width: 900px) {

  .feature-grid,
  .feature-grid.with-bg,
  .contenedor-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .feature-grid .card,
  .feature-grid.with-bg .card,
  .contenedor-cards .card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
  }

}

@media (max-width: 768px) {

  .providers-map {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
  }

  .map-ring,
  .map-line {
    display: none !important;
  }

  .map-center {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto 18px !important;
    flex-shrink: 0;
  }

  .map-card,
  .card-top,
  .card-right,
  .card-bottom,
  .card-left {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 320px !important;
    min-height: auto !important;
    margin: 0 auto !important;
  }

  .map-card:hover,
  .card-top:hover,
  .card-right:hover,
  .card-bottom:hover,
  .card-left:hover {
    transform: none !important;
  }

}

@media (max-width: 768px) {

  .providers-map-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    align-items: stretch !important;
  }

  .providers-map-content {
    order: 1 !important;
    text-align: center;
  }

  .providers-map-visual {
    order: 2 !important;
    display: block !important;
    width: 100%;
  }

  .providers-map {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }

  .map-ring,
  .map-line {
    display: none !important;
  }

  .map-center {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 auto 10px !important;
    width: 110px !important;
    height: 110px !important;
    display: flex !important;
  }

  .map-center span {
    font-size: 0.72rem !important;
    line-height: 1.15 !important;
    max-width: 70px !important;
  }

  .map-card,
  .card-top,
  .card-right,
  .card-bottom,
  .card-left {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 320px !important;
    min-height: auto !important;
    margin: 0 auto !important;
  }

  .map-card:hover,
  .card-top:hover,
  .card-right:hover,
  .card-bottom:hover,
  .card-left:hover {
    transform: none !important;
  }

  .providers-map-content h2,
  .providers-map-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {

  .providers-map-content {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .providers-map-content h2,
  .providers-map-content p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .providers-map-content .section-tag {
    text-align: left !important;
  }

}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 6px;
  font-size: 12px;
  color: #ffb3b3;
}

select {
  color: #fff;
}

select option {
  color: #111827;
  background: #fff;
}

button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}


/* SOLO corrige el dropdown, no tu diseño */
select option {
  color: #1a1a1a;     /* texto oscuro */
  background: #ffffff; /* fondo blanco */
}

}

select option {
  color: #111 !important;
  background: #fff !important;
}

.btn-whatsapp,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp i,
.whatsapp-link i {
  font-size: 18px;
}

/* Si quieres mantener tus botones azules pero solo con icono verde */
.btn-whatsapp i {
  color: #25D366;
}

/* Si quieres algunos links de WhatsApp en verde completo */
.whatsapp-link {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-link:hover {
  opacity: 0.9;
}

.btn-siniestro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
  transition: all 0.3s ease;
}

.btn-siniestro i {
  color: #25D366;
}

.btn-siniestro:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.28);
}


.floating-support {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.floating-btn i {
  font-size: 18px;
}

.floating-btn:hover {
  transform: translateY(-3px);
}

.floating-cotiza {
  background: #53c7f0;
  color: #ffffff;
}

.floating-cotiza i {
  color: #25D366;
}

.floating-siniestro {
  background: #25D366;
  color: #ffffff;
}

.floating-siniestro i {
  color: #ffffff;
}

@media (max-width: 768px) {
  .floating-support {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* =========================
   WHATSAPP ICONOS Y BOTONES
========================= */
.btn-whatsapp,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp i,
.whatsapp-link i,
.btn-siniestro i,
.floating-btn i,
.siniestro-menu a i {
  font-size: 18px;
  flex-shrink: 0;
}

.btn-whatsapp i {
  color: #25D366;
}

.whatsapp-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-link:hover {
  opacity: 0.92;
}

/* =========================
   HERO ACTIONS
========================= */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-siniestro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  background: rgba(15, 28, 54, 0.06);
  color: #16233f;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(22, 35, 63, 0.12);
  transition: all 0.3s ease;
}

.btn-siniestro i {
  color: #25D366;
}

.btn-siniestro:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 35, 63, 0.22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   BOTÓN FLOTANTE
========================= */
.floating-support {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(8, 20, 40, 0.18);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: inherit;
}

.floating-btn:hover {
  transform: translateY(-3px);
}

.floating-cotiza {
  background: #53c7f0;
  color: #ffffff;
}

.floating-cotiza i {
  color: #25D366;
}

.floating-siniestro {
  background: #25D366;
  color: #ffffff;
}

.floating-siniestro i {
  color: #ffffff;
}

/* =========================
   MENÚ FLOTANTE SINIESTROS
========================= */
.floating-siniestro-wrapper {
  position: relative;
}

.siniestro-menu {
  position: absolute;
  right: 0;
  bottom: 64px;
  min-width: 250px;
  background: #0f1c36;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  display: none;
}

.siniestro-menu.active {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.siniestro-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.siniestro-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.siniestro-menu a i {
  color: #25D366;
}

.siniestro-menu a div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.siniestro-menu a div strong {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.siniestro-menu a div span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================
   BOTONES DISABLED FORM
========================= */
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .btn-siniestro {
    width: 100%;
    justify-content: center;
  }

  .floating-support {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .floating-btn span {
    display: inline-block;
  }

  .siniestro-menu {
    min-width: 220px;
    bottom: 58px;
  }
}




/* =========================
   FLOATING BUTTONS KIN
========================= */
.kin-floating-wrap {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 12px !important;
}

.kin-float-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
}

.kin-float-btn i {
  flex-shrink: 0 !important;
}

/* =========================
   BOTÓN WHATSAPP
========================= */
.kin-float-cotiza {
  padding: 14px 20px !important;
  border-radius: 999px !important;
  background: #53c7f0 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(8, 20, 40, 0.18) !important;
}

.kin-float-cotiza i {
  font-size: 18px !important;
  color: #25D366 !important;
}

.kin-float-cotiza:hover {
  transform: translateY(-3px) !important;
}

/* =========================
   BOTÓN SINIESTROS
========================= */
.kin-siniestro-wrap {
  position: relative !important;
}

.kin-float-siniestro {
  padding: 18px 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #d62828 0%, #b71c1c 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 40px rgba(214, 40, 40, 0.35) !important;
  font-size: 15px !important;
  letter-spacing: 0.2px !important;
}

.kin-float-siniestro i {
  font-size: 20px !important;
  color: #ffffff !important;
}

.kin-float-siniestro:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 22px 50px rgba(214, 40, 40, 0.45) !important;
}

/* Pulso sutil */
@keyframes kinPulseSiniestro {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(214, 40, 40, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 40, 40, 0);
  }
}

.kin-float-siniestro {
  animation: kinPulseSiniestro 2.4s infinite;
}

/* =========================
   MENÚ SINIESTROS
========================= */
.kin-siniestro-menu {
  position: absolute !important;
  right: 0 !important;
  bottom: 76px !important;
  min-width: 270px !important;
  background: #0f1c36 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  padding: 10px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22) !important;
  display: none !important;
}

.kin-siniestro-menu.active {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.kin-siniestro-menu a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05) !important;
  transition: all 0.25s ease !important;
}

.kin-siniestro-menu a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.kin-siniestro-menu a i {
  font-size: 18px !important;
  color: #d62828 !important;
  flex-shrink: 0 !important;
}

.kin-siniestro-menu a div {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.2 !important;
}

.kin-siniestro-menu a div strong {
  font-size: 14px !important;
  color: #ffffff !important;
}

.kin-siniestro-menu a div span {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .kin-floating-wrap {
    right: 14px !important;
    bottom: 14px !important;
    gap: 10px !important;
  }

  .kin-float-cotiza {
    padding: 12px 16px !important;
    font-size: 14px !important;
  }

  .kin-float-cotiza i {
    font-size: 17px !important;
  }

  .kin-float-siniestro {
    padding: 15px 18px !important;
    font-size: 14px !important;
  }

  .kin-float-siniestro i {
    font-size: 18px !important;
  }

  .kin-siniestro-menu {
    min-width: 220px !important;
    bottom: 66px !important;
  }

  .kin-siniestro-menu a {
    padding: 11px 12px !important;
  }

  .kin-siniestro-menu a div strong {
    font-size: 13px !important;
  }

  .kin-siniestro-menu a div span {
    font-size: 12px !important;
  }
}

.kin-float-cotiza {
  background: #25D366 !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
  border-radius: 999px !important;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35) !important;
}

.kin-float-cotiza i {
  color: #ffffff !important;
  font-size: 18px !important;
}

.kin-float-cotiza:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.45) !important;
}

/* =========================
   ESTILO AZUL UNIFICADO
========================= */
.btn-primary,
.btn-whatsapp,
.hero .btn-primary,
.hero-actions .btn-primary,
.contact .btn-primary,
.navbar .btn-primary {
  background: #53c7f0 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  box-shadow: 0 14px 30px rgba(8, 20, 40, 0.18) !important;
  transition: all 0.3s ease !important;
}

.btn-primary:hover,
.btn-whatsapp:hover,
.hero .btn-primary:hover,
.hero-actions .btn-primary:hover,
.contact .btn-primary:hover,
.navbar .btn-primary:hover {
  transform: translateY(-3px) !important;
}

.btn-primary i,
.btn-whatsapp i,
.hero .btn-primary i,
.hero-actions .btn-primary i,
.contact .btn-primary i,
.navbar .btn-primary i {
  font-size: 18px !important;
  color: #ffffff !important;
}

/* =========================
   FLOATING BUTTONS
========================= */
.kin-floating-wrap {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 12px !important;
}

.kin-float-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
}

.kin-float-btn i {
  flex-shrink: 0 !important;
}

/* WhatsApp flotante */
.kin-float-cotiza {
  padding: 14px 20px !important;
  border-radius: 999px !important;
  background: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35) !important;
}

.kin-float-cotiza i {
  font-size: 18px !important;
  color: #ffffff !important;
}

.kin-float-cotiza:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.45) !important;
}

/* Siniestros */
.kin-siniestro-wrap {
  position: relative !important;
}

.kin-float-siniestro {
  padding: 18px 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #d62828 0%, #b71c1c 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 40px rgba(214, 40, 40, 0.35) !important;
  font-size: 15px !important;
  letter-spacing: 0.2px !important;
}

.kin-float-siniestro i {
  font-size: 20px !important;
  color: #ffffff !important;
}

.kin-float-siniestro:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 22px 50px rgba(214, 40, 40, 0.45) !important;
}

/* Menú */
.kin-siniestro-menu {
  position: absolute !important;
  right: 0 !important;
  bottom: 76px !important;
  min-width: 270px !important;
  background: #0f1c36 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  padding: 10px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(10px) !important;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
  z-index: 100000 !important;
}

.kin-siniestro-menu.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.kin-siniestro-menu a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05) !important;
  transition: all 0.25s ease !important;
}

.kin-siniestro-menu a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.kin-siniestro-menu a i {
  font-size: 18px !important;
  color: #d62828 !important;
  flex-shrink: 0 !important;
}

.kin-siniestro-menu a div {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.2 !important;
}

.kin-siniestro-menu a div strong {
  font-size: 14px !important;
  color: #ffffff !important;
}

.kin-siniestro-menu a div span {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

@media (max-width: 768px) {
  .kin-floating-wrap {
    right: 14px !important;
    bottom: 14px !important;
    gap: 10px !important;
  }

  .kin-float-cotiza {
    padding: 12px 16px !important;
    font-size: 14px !important;
  }

  .kin-float-siniestro {
    padding: 15px 18px !important;
    font-size: 14px !important;
  }

  .kin-siniestro-menu {
    min-width: 220px !important;
    bottom: 66px !important;
  }
}


.kin-siniestro-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

.kin-siniestro-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.kin-floating-wrap {
  position: fixed;
  z-index: 99999;
}

.kin-siniestro-wrap {
  position: relative;
}

.kin-siniestro-menu {
  position: absolute;
  right: 0;
  bottom: 76px;
  z-index: 100000;
}

/* Ocultar flotantes mientras está el preloader */
.hidden-on-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* Mostrar cuando el preloader ya terminó */
.hidden-on-preloader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* =========================================
   MOBILE POLISH - HEADER + FLOATING BUTTONS
========================================= */
@media (max-width: 768px) {

  /* HEADER */
  .site-header .container,
  .header-inner {
    padding: 14px 0 !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .brand {
    gap: 10px !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .brand-mark {
    width: 38px !important;
    height: 38px !important;
    border-radius: 14px !important;
    flex-shrink: 0 !important;
  }

  .brand-mark img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .brand-copy {
    min-width: 0 !important;
  }

  .brand-title {
    font-size: 0.98rem !important;
    line-height: 1 !important;
  }

  .brand-subtitle {
    font-size: 0.56rem !important;
    letter-spacing: 0.22em !important;
    line-height: 1.25 !important;
  }

  .header-actions {
    gap: 8px !important;
    flex-shrink: 0 !important;
  }

  /* Botón superior */
  .header-actions .btn,
  .header-actions .btn-primary,
  .header-actions .btn-whatsapp {
    padding: 10px 14px !important;
    min-height: 44px !important;
    border-radius: 18px !important;
    font-size: 0.9rem !important;
    line-height: 1.15 !important;
    gap: 8px !important;
    box-shadow: 0 10px 22px rgba(8, 20, 40, 0.12) !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .header-actions .btn i,
  .header-actions .btn-primary i,
  .header-actions .btn-whatsapp i {
    font-size: 16px !important;
  }

  /* Si quieres que no ocupe demasiado ancho */
  .header-actions a.btn-whatsapp {
    max-width: 155px !important;
  }

  /* HERO separación para que respire */
  .hero .container,
  .hero-grid {
    padding-top: 34px !important;
  }

  /* FLOATING BUTTONS */
  .kin-floating-wrap {
    right: 12px !important;
    bottom: 12px !important;
    gap: 8px !important;
    align-items: flex-end !important;
  }

  .kin-float-btn {
    border-radius: 999px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
  }

  /* Verde */
  .kin-float-cotiza {
    padding: 11px 14px !important;
    min-height: 42px !important;
    font-size: 13px !important;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22) !important;
  }

  .kin-float-cotiza i {
    font-size: 15px !important;
  }

  /* Rojo */
  .kin-float-siniestro {
    padding: 11px 14px !important;
    min-height: 42px !important;
    font-size: 13px !important;
    box-shadow: 0 10px 24px rgba(214, 40, 40, 0.24) !important;
    animation: none !important; /* en móvil mejor sin pulso */
  }

  .kin-float-siniestro i {
    font-size: 15px !important;
  }

  /* Hacerlos más compactos y elegantes */
  .kin-float-cotiza span,
  .kin-float-siniestro span {
    display: inline-block !important;
    line-height: 1.1 !important;
  }

  /* Menú desplegable de siniestros */
  .kin-siniestro-menu {
    right: 0 !important;
    bottom: 56px !important;
    min-width: 210px !important;
    max-width: calc(100vw - 24px) !important;
    padding: 8px !important;
    border-radius: 16px !important;
  }

  .kin-siniestro-menu a {
    padding: 10px 12px !important;
    border-radius: 12px !important;
    gap: 10px !important;
  }

  .kin-siniestro-menu a i {
    font-size: 16px !important;
  }

  .kin-siniestro-menu a div strong {
    font-size: 12.5px !important;
  }

  .kin-siniestro-menu a div span {
    font-size: 11.5px !important;
  }
}

/* Extra pequeño tipo iPhone SE */
@media (max-width: 430px) {

  .header-actions a.btn-whatsapp {
    max-width: 138px !important;
    padding: 9px 12px !important;
    font-size: 0.84rem !important;
  }

  .brand-title {
    font-size: 0.92rem !important;
  }

  .brand-subtitle {
    font-size: 0.52rem !important;
    letter-spacing: 0.18em !important;
  }

  .kin-float-cotiza,
  .kin-float-siniestro {
    padding: 10px 13px !important;
    font-size: 12.5px !important;
  }

  .kin-siniestro-menu {
    min-width: 195px !important;
  }
}


/* Ocultar flotantes al llegar al footer */
.kin-floating-wrap.hide-near-footer {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(12px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
}

.kin-floating-wrap {
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
}

/* =========================
   FOOTER SOCIAL ICONS
========================= */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(83, 199, 240, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #53c7f0;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #53c7f0;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(83, 199, 240, 0.25);
}

.footer-social a:nth-child(1):hover { background: #1877f2; } /* Facebook */
.footer-social a:nth-child(2):hover { background: #e4405f; } /* Instagram */
.footer-social a:nth-child(3):hover { background: #000000; } /* X */
.footer-social a:nth-child(4):hover { background: #0a66c2; } /* LinkedIn */
.footer-social a:nth-child(5):hover { background: #000000; } /* TikTok */

@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

/* =========================
   FOOTER FINAL LIMPIO
========================= */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  padding: 26px 0 30px; /* espacio extra abajo */
}

.site-footer .container,
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.footer-left,
.site-footer p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(83, 199, 240, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #53c7f0;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #53c7f0;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(83, 199, 240, 0.25);
}

.footer-right,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-right a,
.footer-links a {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-right a:hover,
.footer-links a:hover {
  color: var(--color-primary);
}


/* =========================
   LOCATION SECTION FINAL
========================= */
.location-section {
  padding: 90px 0;
  background: #ffffff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.location-map {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 35, 60, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.location-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.location-info {
  max-width: 560px;
}

.location-title {
  margin: 14px 0 22px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #18243b;
}

.location-text {
  margin: 0 0 24px;
  max-width: 520px;
  font-size: 1.08rem;
  line-height: 1.82;
  color: #5d6f87;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(83, 199, 240, 0.08);
  border: 1px solid rgba(83, 199, 240, 0.12);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.location-card i {
  font-size: 20px;
  color: #53c7f0;
  margin-top: 3px;
}

.location-card strong {
  display: block;
  font-size: 0.95rem;
  color: #18243b;
  margin-bottom: 4px;
}

.location-card span {
  font-size: 0.92rem;
  color: #5d6f87;
  line-height: 1.6;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kin-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.kin-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kin-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.65);
  backdrop-filter: blur(4px);
}

.kin-modal-content {
  position: relative;
  z-index: 2;
  width: min(92%, 760px);
  max-height: 82vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.kin-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
  color: #1e293b;
}

.kin-modal-content h2 {
  margin-bottom: 18px;
  font-size: 2rem;
  color: #16233d;
}

.kin-modal-content p {
  margin-bottom: 14px;
  line-height: 1.75;
  color: #5f6f86;
}

.faq-item {
  padding: 14px 0;
  border-bottom: 1px solid #e5edf5;
}

.faq-item strong {
  display: block;
  margin-bottom: 8px;
  color: #16233d;
  font-size: 1rem;
}

.doc-link {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

/* =========================================
   FIX UBICACIÓN COMPLETA (MAPA + BOTÓN)
========================================= */
@media (max-width: 768px) {

  .location-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .location-info {
    order: 1 !important;
    width: 100% !important;
  }

  .location-map {
    order: 2 !important;
    width: 100% !important;
  }

  .location-map iframe {
    width: 100% !important;
    height: 260px !important;
    border-radius: 16px !important;
  }

  /* Caja dirección */
  .location-card {
    width: 100% !important;
  }

  /* CONTENEDOR BOTÓN */
  .map-actions {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 16px !important;
  }

  /* BOTÓN "CÓMO LLEGAR" */
  .map-actions a,
  .map-actions button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    width: 100% !important;
    max-width: 280px !important;

    padding: 14px 18px !important;
    border-radius: 999px !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    background: #39b9ec !important; /* azul institucional */
    color: #fff !important;

    text-decoration: none !important;
  }
}

/* =========================================
   PROVEEDORES SIN MOVIMIENTO SOLO EN WEB
========================================= */
@media (min-width: 769px) {
  .providers-map .map-card,
  .providers-map .card-top,
  .providers-map .card-right,
  .providers-map .card-bottom,
  .providers-map .card-left {
    animation: none !important;
    transition: box-shadow 0.25s ease, filter 0.25s ease !important;
  }

  .providers-map .map-card:hover {
    filter: none !important;
    box-shadow: 0 10px 24px rgba(19, 35, 61, 0.05) !important;
  }

  .providers-map .card-top,
  .providers-map .card-top:hover {
    transform: translateX(-50%) !important;
  }

  .providers-map .card-right,
  .providers-map .card-right:hover {
    transform: translateY(-50%) !important;
  }

  .providers-map .card-bottom,
  .providers-map .card-bottom:hover {
    transform: translateX(-50%) !important;
  }

  .providers-map .card-left,
  .providers-map .card-left:hover {
    transform: translateY(-50%) !important;
  }

  .providers-map .map-center,
  .providers-map .map-center:hover {
    transform: translate(-50%, -50%) !important;
    transition: none !important;
    animation: none !important;
  }

  .providers-map .map-center::after {
    animation: none !important;
  }
}

/* =========================================
   BOTÓN "CÓMO LLEGAR" SOLO EN WEB
========================================= */
@media (min-width: 769px) {
  .map-actions {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 22px !important;
  }

  .btn-maps,
  .map-actions a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    min-width: 230px !important;
    padding: 16px 28px !important;

    border-radius: 999px !important;
    background: linear-gradient(135deg, #39b9ec, #67d2fb) !important;
    color: #ffffff !important;
    text-decoration: none !important;

    font-size: 1rem !important;
    font-weight: 700 !important;
    box-shadow: 0 12px 28px rgba(57, 185, 236, 0.25) !important;
    transition: all 0.25s ease !important;
  }

  .btn-maps:hover,
  .map-actions a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 34px rgba(57, 185, 236, 0.32) !important;
  }
}