/* ═══════════════════════════════════════
   GESENCRO IPS — Custom Design System
   Bootstrap 5.3 override layer
   ═══════════════════════════════════════ */

/* ── VARIABLES DE MARCA ── */
:root {
  --gc-blue-dark: #003174;
  --gc-blue: #0054C2;
  --gc-green: #009243;
  --gc-green-dark: #238F4F;
  --gc-wa: #25D366;
  --gc-bg: #F7F9FC;
  --gc-text: #0D1F3C;
  --gc-text-mid: #475569;
  --gc-text-light: #94A3B8;
  --gc-border: rgba(0, 49, 116, 0.09);
  --gc-shadow: 0 2px 20px rgba(0, 49, 116, 0.07);
  --gc-shadow-hover: 0 8px 32px rgba(0, 49, 116, 0.13);
  --gc-radius: 16px;

  --bs-primary: #0054C2;
  --bs-primary-rgb: 0, 84, 194;
  --bs-success: #009243;
  --bs-body-bg: #F7F9FC;
  --bs-body-color: #0D1F3C;
  --bs-body-font-family: 'DM Sans', sans-serif;
  --bs-border-radius-lg: 16px;
  --bs-border-radius: 10px;
  --bs-border-radius-sm: 8px;
}

/* ── TIPOGRAFÍA ── */
body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--gc-bg);
  color: var(--gc-text);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Clases utilitarias de marca */
.text-gc-blue {
  color: var(--gc-blue) !important;
}

.text-gc-dark {
  color: var(--gc-blue-dark) !important;
}

.text-gc-green {
  color: var(--gc-green) !important;
}

.text-gc-mid {
  color: var(--gc-text-mid) !important;
}

.bg-gc-dark {
  background-color: var(--gc-blue-dark) !important;
}

.bg-gc-blue {
  background-color: var(--gc-blue) !important;
}

.bg-gc-green {
  background-color: var(--gc-green) !important;
}

.bg-gc-light {
  background-color: var(--gc-bg) !important;
}

/* ── BOTONES PERSONALIZADOS ── */
.btn-gc-primary {
  background-color: var(--gc-blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gc-primary:hover {
  background-color: var(--gc-blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 84, 194, 0.30);
}

.btn-gc-green {
  background-color: var(--gc-green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gc-green:hover {
  background-color: var(--gc-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 146, 67, 0.30);
}

.btn-gc-outline-white {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.40);
  color: #fff;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gc-outline-white:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-gc-wa {
  background-color: var(--gc-wa);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.btn-gc-wa:hover {
  filter: brightness(0.90);
  color: #fff;
}

/* ── TOPBAR ── */
.topbar {
  background-color: var(--gc-blue-dark);
  height: 40px;
  display: flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #CBD5E0;
}

.topbar .separator {
  color: rgba(255, 255, 255, 0.20);
  margin: 0 14px;
}

.topbar a {
  color: #7DD3FC;
  font-weight: 500;
  text-decoration: none;
}

.topbar a:hover {
  color: #fff;
}

/* ── NAVBAR ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 49, 116, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
  min-height: 72px;
}

#navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 49, 116, 0.10);
}

#navbar .navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

#navbar .navbar-brand img {
  height: 40px;
  width: auto;
}

#navbar .brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--gc-blue);
  letter-spacing: 0.02em;
}

#navbar .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gc-text);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

#navbar .nav-link:hover,
#navbar .nav-link.active {
  color: var(--gc-blue);
  background: rgba(0, 84, 194, 0.06);
}

#navbar .nav-link.linea-etica {
  color: var(--gc-text-mid);
  font-weight: 400;
}

#navbar .nav-email {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--gc-text-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

#navbar .nav-email:hover {
  color: var(--gc-blue);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* ===== CARRUSEL HERO ===== */

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  min-height: 100vh;
  width: 100%;
}

.hero-carousel .carousel-item {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-slide .hero-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay para mejorar lectura */

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(135deg,
      rgba(0, 49, 116, .78) 0%,
      rgba(0, 49, 116, .60) 50%,
      rgba(0, 31, 60, .70) 100%);

  z-index: 1;
}

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

/* ======================================
   TEXTO DECORATIVO DEL HERO
====================================== */

.hero-bg-text span {

  position: absolute;

  top: 20%;
  left: 50%;

  transform: translate(-50%, -50%);

  font-size: clamp(180px, 22vw, 320px);

  font-weight: 800;

  letter-spacing: 10px;

  color: rgba(0, 0, 0, 0.18);

  white-space: nowrap;

  user-select: none;

  filter: blur(1px);

  text-transform: uppercase;

  animation: floatBackground 18s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 49, 116, 0.78) 0%,
      rgba(0, 49, 116, 0.60) 50%,
      rgba(0, 31, 60, 0.70) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  padding: 8px 18px;
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gc-green);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes floatBackground {

  0% {

    transform:
      translate(-50%, -50%) translateY(0px);

  }

  50% {

    transform:
      translate(-50%, -50%) translateY(-18px);

  }

  100% {

    transform:
      translate(-50%, -50%) translateY(0px);

  }

}


.hero h1 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.15;
  margin-bottom: 24px;

  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: -1px;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, .18);

  animation: heroTitle 1s ease-out;

  position: relative;
}

.hero h1::after {
  display: none;
}

.hero-carousel h1 {
  margin-bottom: 0;
}

.hero-line {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 12px;
  margin-bottom: 20px;
  background: #7DD3FC;
  border-radius: 20px;
  transform: scaleX(0);
  transform-origin: left;
}

.carousel-item.active .hero-line {
  animation: lineGrow 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero h1 em {

  color: #A5E3FF;

  font-style: normal;

  font-weight: 600;

}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  animation: heroSubtitle 1.4s ease;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
}

.trust-item i {
  color: var(--gc-green);
  font-size: 16px;
}

/* Tarjeta flotante hero */
.hero-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
}

.hero-discount-number {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  font-weight: 700;
  color: var(--gc-green);
  line-height: 1;
}

.sede-chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 5px 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #CBD5E0;
  margin: 3px;
}

.hero-mini-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0, 49, 116, 0.20);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-mini-card i {
  color: var(--gc-blue);
  font-size: 20px;
}

.hero-mini-card .title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gc-text);
}

.hero-mini-card .sub {
  font-size: 11px;
  color: var(--gc-text-mid);
}

/* ── SECCIÓN ACCIONES ── */
#acciones {
  background: #fff;
  padding: 72px 0;
}

#acciones h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--gc-blue-dark);
  margin-bottom: 48px;
}

.accion-card {
  background: var(--gc-bg);
  border: 1.5px solid var(--gc-border);
  border-radius: var(--gc-radius);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  height: 100%;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.accion-card:hover {
  background: #fff;
  border-color: var(--gc-blue);
  box-shadow: var(--gc-shadow-hover);
  transform: translateY(-5px);
  color: inherit;
}

.accion-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  object-fit: contain;
}

.accion-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gc-blue-dark);
  margin-bottom: 8px;
}

.accion-card p {
  font-size: 13px;
  color: var(--gc-text-mid);
  line-height: 1.6;
  flex-grow: 1;
}

.accion-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gc-green);
  text-decoration: none;
  margin-top: 16px;
  display: block;
}

.accion-link:hover {
  color: var(--gc-blue);
}

.horario-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gc-text-mid);
  margin-top: 36px;
}

.horario-bar i {
  color: var(--gc-green);
}

/* ── SECCIÓN LABORATORIO ANCLA ── */
#servicios {
  background: var(--gc-blue-dark);
  padding: 96px 0;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #E2E8F0;
  margin-bottom: 12px;
  line-height: 1.5;
}

.check-list li i {
  color: var(--gc-green);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.lab-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  backdrop-filter: blur(8px);
  position: relative;
  height: 100%;
}

.lab-discount {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  font-weight: 700;
  color: var(--gc-green);
  line-height: 1;
}

.lab-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--gc-green);
  color: #fff;
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
}

/* ── SECCIÓN CHEQUEOS ── */
#chequeos {
  background: var(--gc-bg);
  padding: 96px 0;
}

.chequeo-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 146, 67, 0.08);
  border: 1px solid rgba(0, 146, 67, 0.22);
  border-radius: 9999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gc-green);
  margin-top: 16px;
}

.chequeo-card {
  background: #fff;
  border: 1.5px solid var(--gc-border);
  border-radius: var(--gc-radius);
  padding: 26px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow: var(--gc-shadow);
}

.chequeo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gc-shadow-hover);
  border-color: var(--gc-blue);
}

.chequeo-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 84, 194, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.chequeo-icon-wrap i {
  font-size: 22px;
  color: var(--gc-blue);
}

.chequeo-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gc-blue-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.chequeo-card .para {
  font-size: 12px;
  color: var(--gc-text-mid);
  flex-grow: 1;
  line-height: 1.5;
}

.chequeo-divider {
  border: none;
  border-top: 1px solid #F1F5F9;
  margin: 14px 0;
}

.chequeo-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gc-blue);
  text-decoration: none;
}

.chequeo-cta:hover {
  color: var(--gc-green);
}

.badge-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gc-blue);
  color: #fff;
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
}

.badge-nuevo {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gc-green);
  color: #fff;
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
}

.chequeo-bottom-note {
  background: rgba(0, 84, 194, 0.04);
  border: 1px solid rgba(0, 84, 194, 0.10);
  border-radius: var(--gc-radius);
  padding: 24px;
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--gc-text-mid);
}

.chequeo-bottom-note a {
  color: var(--gc-blue);
  font-weight: 500;
  text-decoration: none;
}

.chequeo-bottom-note a:hover {
  color: var(--gc-green);
}

/* ── SECCIÓN SEDES ── */
#sedes {
  padding: 80px 0;
  background: #fff;
}

.sede-card {
  background: var(--gc-bg);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius);
  padding: 28px 24px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sede-card:hover {
  border-color: var(--gc-blue);
  box-shadow: var(--gc-shadow-hover);
}

.sede-card.principal {
  border-color: var(--gc-blue);
  background: rgba(0, 84, 194, 0.03);
}

.sede-badge {
  display: inline-block;
  background: var(--gc-green);
  color: #fff;
  border-radius: 9999px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.sede-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gc-blue-dark);
  margin-bottom: 4px;
}

/* ── QUIÉNES SOMOS ── */
#conocenos {
  padding: 80px 0;
  background: var(--gc-bg);
}

.metric-card {
  background: #fff;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius);
  padding: 32px 24px;
  height: 100%;
  box-shadow: var(--gc-shadow);
}

.metric-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gc-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-number.green {
  color: var(--gc-green);
}

/* ── FAQ ── */
#faq {
  padding: 80px 0;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  background: rgba(0, 84, 194, 0.05);
  color: var(--gc-blue-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--gc-text);
  font-size: 16px;
}

/* ── NOTICIAS ── */
#noticias {
  padding: 72px 0;
  background: var(--gc-bg);
}

.noticia-card {
  background: #fff;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius);
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.noticia-card:hover {
  box-shadow: var(--gc-shadow-hover);
  transform: translateY(-3px);
}

.noticia-img-placeholder {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noticia-img-placeholder.bg-medicina {
  background: linear-gradient(135deg, #003174, #0054C2);
}

.noticia-img-placeholder.bg-lab {
  background: linear-gradient(135deg, #0054C2, #009243);
}

.noticia-img-placeholder.bg-lenus {
  background: linear-gradient(135deg, #009243, #238F4F);
}

.noticia-img-placeholder i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.50);
}

.noticia-body {
  padding: 20px;
}

.noticia-categoria {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gc-blue);
  margin-bottom: 8px;
}

.noticia-titulo {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gc-blue-dark);
  line-height: 1.4;
  margin-bottom: 8px;
}

.noticia-extracto {
  font-size: 13px;
  color: var(--gc-text-mid);
  line-height: 1.6;
}

/* ── CONTACTO / FORMULARIO ── */
#contacto {
  background: linear-gradient(135deg, var(--gc-blue-dark) 0%, #0054C2 100%);
  padding: 96px 0;
}

.form-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-card .form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.form-card .form-control,
.form-card .form-select {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
}

.form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-card .form-control:focus,
.form-card .form-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
  color: #fff;
}

.form-card .form-select option {
  background: var(--gc-blue-dark);
  color: #fff;
}

.form-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.50);
  text-align: center;
  margin-top: 12px;
}

.contact-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.contact-meta i {
  color: var(--gc-green);
  font-size: 16px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
#footer {
  background: var(--gc-blue-dark);
  padding: 56px 0 24px;
  color: #CBD5E0;
}

#footer h6 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 16px;
}

#footer a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
  display: block;
  margin-bottom: 8px;
}

#footer a:hover {
  color: #fff;
}

#footer .footer-brand-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.6;
  margin-top: 12px;
}

#footer .social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-right: 6px;
}

#footer .social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* =====================================================
   WIDGET DE WHATSAPP
===================================================== */

.wa-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
}

/* BOTÓN */

.wa-float {

  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: var(--gc-wa);

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);

  transition: .25s;
}

.wa-float:hover {

  transform: scale(1.08);

  box-shadow: 0 6px 28px rgba(37, 211, 102, .55);

}

.wa-float i {

  color: #fff;

  font-size: 26px;

}


/* MENSAJE */

.wa-message {

  position: absolute;

  right: 0;

  bottom: 70px;

  width: 290px;

  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 12px 35px rgba(0, 0, 0, .18);

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition: .35s;

}

.wa-message.show {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}


/* Encabezado */

.wa-header {

  background: #25D366;

  color: #fff;

  padding: 14px 18px;

  font-size: 15px;

}

.wa-header small {

  opacity: .85;

}


/* Texto */

.wa-text {

  padding: 18px;

  font-size: 15px;

  line-height: 1.6;

  color: #444;

}


/* Flecha */

.wa-message::after {

  content: "";

  position: absolute;

  bottom: -8px;

  right: 18px;

  width: 16px;

  height: 16px;

  background: #fff;

  transform: rotate(45deg);

}


/* Botón cerrar */

.close-msg {

  position: absolute;

  right: 12px;

  top: 10px;

  color: #fff;

  font-size: 20px;

  cursor: pointer;

}


/* Responsive */

@media(max-width:480px) {

  .wa-message {

    width: 240px;

  }

}



/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .topbar .topbar-left {
    display: none !important;
  }

  .topbar {
    justify-content: center;
  }

  #navbar .nav-email {
    display: none;
  }

  .hero-content {
    padding-top: 80px;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-card {
    display: none;
  }

  .trust-bar {
    gap: 12px;
  }

  .trust-item {
    font-size: 12px;
  }

  .accion-card {
    padding: 24px 18px;
  }

  .lab-discount {
    font-size: 72px;
  }

  #servicios,
  #chequeos,
  #contacto {
    padding: 64px 0;
  }
}


/* ── ANIMACIONES TITULO ── */
@keyframes heroTitle {

  from {

    opacity: 0;
    transform: translateY(-25px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

@keyframes heroSubtitle {

  from {

    opacity: 0;
    transform: translateY(20px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}