:root {
  --alfa-blue: #0b4f8a;
  --alfa-blue-dark: #08375f;
  --alfa-black: #111827;
  --alfa-gray: #6b7280;
  --alfa-light: #f4f7fb;
  --alfa-white: #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; color: var(--alfa-black); }
.navbar { box-shadow: 0 2px 14px rgba(0,0,0,.08); }
.navbar-brand { font-weight: 800; letter-spacing: .4px; color: var(--alfa-blue) !important; }
.nav-link { font-weight: 600; color: #253140 !important; }
.nav-link:hover, .nav-link.active { color: var(--alfa-blue) !important; }
.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 70px 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 55, 95, 0.96) 0%,
      rgba(8, 55, 95, 0.86) 38%,
      rgba(11, 79, 138, 0.48) 65%,
      rgba(11, 79, 138, 0.12) 100%
    ),
    url('../img/imagen_principal.png') center right / cover no-repeat;

  color: white;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4.6rem); font-weight: 800; }
.hero p { font-size: 1.15rem; max-width: 760px; }
.btn-alfa { background: var(--alfa-blue); border-color: var(--alfa-blue); color: white; }
.btn-alfa:hover { background: var(--alfa-blue-dark); border-color: var(--alfa-blue-dark); color: white; }
.section-title { font-weight: 800; color: var(--alfa-blue-dark); }
.service-card { border: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 30px rgba(15,23,42,.09); transition: transform .2s ease; height: 100%; }
.service-card:hover { transform: translateY(-5px); }
.service-image { height: 220px; object-fit: cover; background: #dbe6f1; }
.image-placeholder {
  background: repeating-linear-gradient(45deg,#e8eef5,#e8eef5 12px,#dbe6f1 12px,#dbe6f1 24px);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #49657d;
  font-weight: 700;
  text-align: center;
  padding: 2rem;
}
.page-header { background: linear-gradient(100deg, var(--alfa-blue-dark), var(--alfa-blue)); color: white; padding: 5rem 0 4rem; }
.icon-box { width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: #e7f1fa; color: var(--alfa-blue); font-size: 1.4rem; }
.cta { background: var(--alfa-blue-dark); color: white; border-radius: 24px; }
footer { background: #0b1724; color: #d6deea; }
footer a { color: #d6deea; text-decoration: none; }
footer a:hover { color: white; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 1000; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items:center; justify-content:center; background:#25d366; color:#fff; text-decoration:none; font-size:1.7rem; box-shadow:0 10px 25px rgba(0,0,0,.25); }
.form-control, .form-select { border-radius: 12px; padding: .8rem 1rem; }
@media (max-width: 991px) { .hero { min-height: 64vh; } }

/* ==================================================
   MENÚ PRINCIPAL
================================================== */

.navbar {
  position: relative;
  z-index: 1000;
  border-bottom: 4px solid #d71920;
  box-shadow: 0 3px 12px rgba(8, 24, 39, 0.08);
}

.navbar .nav-link {
  color: #081827;
  font-weight: 600;
  padding: 14px 12px;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #d71920;
}

/* Menú desplegable */
.navbar .dropdown-item {
  padding: 12px 18px;
  color: #1d2731;
  white-space: nowrap;

  border-left: 4px solid transparent;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    padding-left 0.2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  color: #d71920;
  background-color: #e9edf2;

  border-left-color: #d71920;
  padding-left: 23px;
}

/* Evita problemas de superposición con el contenido */
main,
section,
footer {
  position: relative;
  z-index: 1;
}

/* Menú para celulares y tabletas */
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 10px;
    padding: 12px;
    background-color: #ffffff;
    border-top: 3px solid #d71920;
  }

  .navbar .nav-link {
    padding: 10px 8px;
  }

  .navbar .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    margin: 0 0 8px 8px;
    border: 0;
    border-left: 3px solid #d71920;
    border-radius: 0;
    box-shadow: none;
  }

  .navbar .dropdown-item {
    white-space: normal;
  }
}

/* Color rojo al pasar el mouse por el menú principal */
.navbar .navbar-nav .nav-link {
  color: #081827;
  transition: color 0.2s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus {
  color: #d71920 !important;
}

/* Mantiene rojo el enlace cuando el menú desplegable está abierto */
.navbar .navbar-nav .nav-link.show {
  color: #d71920 !important;
}

/* Logo del menú principal */
.logo-alfa {
  width: auto;
  height: 82px;
  max-width: 330px;
  object-fit: contain;
  display: block;
}

@media (max-width: 767.98px) {
  .logo-alfa {
    height: 45px;
    max-width: 180px;
  }
}

/* =========================================
   AJUSTE DEL ENCABEZADO Y LOGO
========================================= */

.navbar {
  min-height: 100px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 35px;
}

.logo-alfa {
  width: auto;
  height: 66px;
  max-width: 250px;
  object-fit: contain;
}

.navbar-nav {
  align-items: center;
  gap: 5px;
}

.navbar .nav-link {
  padding: 12px 11px !important;
  font-size: 18px;
  font-weight: 600;
  color: #081827;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.show {
  color: #e31e24 !important;
}

/* Ajuste para celulares */
@media (max-width: 991.98px) {
  .navbar {
    min-height: auto;
    padding: 8px 0;
  }

  .logo-alfa {
    height: 54px;
    max-width: 205px;
  }

  .navbar-collapse {
    margin-top: 10px;
  }

  .navbar-nav {
    align-items: stretch;
    gap: 0;
  }
}

@media (max-width: 991.98px) {
  .logo-alfa {
    height: 65px;
    max-width: 260px;
  }
}

/* Tamaño definitivo del logo del encabezado */
.navbar .navbar-brand .logo-alfa {
  width: 410px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  display: block;
}

.navbar-brand {
  width: auto;
  flex-shrink: 0;
  padding: 0;
  margin: 0 35px 0 0;
}

.navbar {
  min-height: 105px;
  padding-top: 4px;
  padding-bottom: 4px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand .logo-alfa {
    width: 280px !important;
    height: auto !important;
  }
}

/* Ajuste visual del menú principal */
.navbar .navbar-nav {
  align-items: center;
  gap: 8px;
}

.navbar .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 0 14px !important;

  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #081827;

  transition: color 0.2s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link.show {
  color: #d71920 !important;
}

.navbar-collapse {
  align-items: center;
}

.navbar .container {
  align-items: center;
}

/* =========================================
   FOOTER - CONTACTO Y UBICACIÓN
========================================= */

footer h6 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}


/* Contacto */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.footer-contact i {
  width: 18px;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 16px;
}

.footer-contact a {
  color: #d6deea;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
}


/* Separa contacto del mapa */
.footer-location {
  padding-left: 45px;
}


/* Ubicación */
.footer-location h6 {
  font-weight: 800;
}


/* Tablet y celular */
@media (max-width: 991.98px) {

  .footer-location {
    padding-left: 12px;
  }

}
footer .col-md-3 > p {
  max-width: 280px;
}

/* =========================================
   FOOTER - INFORMACIÓN DE EMPRESA
========================================= */

.footer-company h5 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  white-space: nowrap;

  text-shadow:
    2px 2px 3px rgba(0, 0, 0, 0.75),
    0 0 6px rgba(255, 255, 255, 0.18);
}

.footer-company h5::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  margin-top: 8px;
  background: #d71920;
  border-radius: 2px;
}

.footer-company p {
  max-width: 330px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.footer-company-extra {
  font-size: 15px;
  color: #b9c6d5;
}

.footer-company-tagline {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-map {
  width: 100%;
  max-width: 240px;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 110px;
  display: block;
}

/* =========================================
   FOOTER - TÍTULOS Y ESPACIADO
========================================= */

footer h5,
footer h6 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 14px;

  text-shadow:
    2px 2px 3px rgba(0, 0, 0, 0.75),
    0 0 6px rgba(255, 255, 255, 0.18);
}


/* Más espacio entre teléfonos y correos */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  line-height: 1.45;
}


/* Un poco más de separación entre icono y texto */
.footer-contact i {
  width: 18px;
  flex-shrink: 0;
  font-size: 17px;
}


/* Mantiene los correos cómodos de leer */
.footer-contact a,
.footer-contact span {
  font-size: 16px;
}

/* =========================================
   FOOTER - TÍTULOS UNIFORMES
========================================= */

.footer-contact h6,
.footer-location h6 {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

/* Línea roja debajo de Contacto y Ubicación */
.footer-contact h6::after,
.footer-location h6::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  margin-top: 8px;
  background: #d71920;
  border-radius: 2px;
}

/* =========================================
   MENÚ PRINCIPAL - ACABADO VISUAL DEFINITIVO
========================================= */

/* Fondo del encabezado */
.navbar {
  background-color: #f8fafc !important;
  border-bottom: 4px solid #d71920;
  box-shadow: 0 4px 16px rgba(8, 24, 39, 0.12);
}


/* Opciones principales */
.navbar .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 70px;
  padding: 0 14px !important;

  font-size: 18px;
  font-weight: 700;

  color: #081827 !important;

  border-radius: 8px;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}


/* Al pasar el mouse */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus {
  color: #d71920 !important;
  background-color: #e9edf2;

  box-shadow:
    inset 0 -3px 0 rgba(215, 25, 32, 0.35);
}


/* Servicios / Alquiler cuando el desplegable está abierto */
.navbar .navbar-nav .nav-link.show {
  color: #d71920 !important;
  background-color: #e9edf2;

  box-shadow:
    inset 0 -3px 0 #d71920;
}


/* Mantiene el comportamiento correcto en celular */
@media (max-width: 991.98px) {

  .navbar .navbar-nav .nav-link {
    justify-content: flex-start;
    min-height: auto;
    padding: 12px 10px !important;
    border-radius: 6px;
  }

}


/* =========================================
   HERO - TEXTO MÁS A LA IZQUIERDA
========================================= */

.hero .container {
  max-width: 100%;
  padding-left: 35px;
  padding-right: 40px;
}

/* =========================================
   NOSOTROS - TARJETAS CORPORATIVAS
========================================= */

.corporate-card {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;

  background:
    linear-gradient(
      180deg,
      rgba(11, 79, 138, 0.10) 0%,
      rgba(255, 255, 255, 0.98) 24%,
      rgba(255, 255, 255, 1) 100%
    );

  border-top: 6px solid #0b4f8a;
  border-bottom: 6px solid #d71920;

  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.corporate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.corporate-card .card-body {
  padding: 2.2rem !important;
}

.corporate-card .card-body {
  padding: 2.2rem !important;
  text-align: center;
}

.corporate-title {
  color: #08375f;
  font-weight: 800;
  margin: 0 auto 1.6rem !important;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  text-align: center;
}

.corporate-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 8px;
  background: #d71920;
  border-radius: 2px;
}

.corporate-card p {
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: center;
  color: #111827;
  font-size: 1.25rem;
  font-weight: 600;
}

.corporate-highlight {
  font-weight: 800;
  color: #08375f;
  margin-top: 1.2rem;
  text-align: center;
}

/* fondo suave de la sección */
.bg-light {
  background: linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%) !important;
}

/* =========================================
   NOSOTROS - IMAGEN PRINCIPAL
========================================= */

.nosotros-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;

  border-radius: 18px;

  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.16);
}


/* Tablet */
@media (max-width: 991.98px) {

  .nosotros-image {
    height: 320px;
  }

}


/* Celular */
@media (max-width: 575.98px) {

  .nosotros-image {
    height: 250px;
  }

}

/* =========================================
   NOSOTROS - BLOQUE PRINCIPAL AZUL
========================================= */

.nosotros-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: linear-gradient(110deg, #08375f 0%, #0b4f8a 55%, #1269a8 100%);
  color: #ffffff;
}

/* Patrón tipo estructura metálica */
.nosotros-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Estructura metálica de fondo */
.nosotros-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;

  background:

    /* COLUMNAS / VIGAS VERTICALES */
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 135px,

      rgba(255,255,255,0.04) 135px,
      rgba(255,255,255,0.04) 138px,

      rgba(255,255,255,0.22) 138px,
      rgba(255,255,255,0.22) 148px,

      rgba(255,255,255,0.08) 148px,
      rgba(255,255,255,0.08) 152px,

      transparent 152px,
      transparent 270px
    ),

    /* CORREAS / VIGAS HORIZONTALES */
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 88px,

      rgba(255,255,255,0.03) 88px,
      rgba(255,255,255,0.03) 91px,

      rgba(255,255,255,0.16) 91px,
      rgba(255,255,255,0.16) 99px,

      rgba(255,255,255,0.05) 99px,
      rgba(255,255,255,0.05) 102px,

      transparent 102px,
      transparent 180px
    ),

    /* DIAGONALES TIPO ARRIOSTRE */
    repeating-linear-gradient(
      50deg,
      transparent 0,
      transparent 210px,

      rgba(255,255,255,0.03) 210px,
      rgba(255,255,255,0.03) 214px,

      rgba(255,255,255,0.11) 214px,
      rgba(255,255,255,0.11) 223px,

      rgba(255,255,255,0.03) 223px,
      rgba(255,255,255,0.03) 227px,

      transparent 227px,
      transparent 430px
    ),

    repeating-linear-gradient(
      -50deg,
      transparent 0,
      transparent 210px,

      rgba(255,255,255,0.02) 210px,
      rgba(255,255,255,0.02) 214px,

      rgba(255,255,255,0.08) 214px,
      rgba(255,255,255,0.08) 221px,

      rgba(255,255,255,0.02) 221px,
      rgba(255,255,255,0.02) 225px,

      transparent 225px,
      transparent 430px
    );

  /* hace que se note más a la derecha y menos sobre el texto */
  mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.25) 18%,
    rgba(0,0,0,0.55) 36%,
    rgba(0,0,0,0.9) 58%,
    rgba(0,0,0,1) 100%
  );
}

/* Estructura inclinada en la parte superior derecha, como cubierta */
.nosotros-pattern::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -60px;
  width: 55%;
  height: 42%;
  opacity: 0.20;
  transform: skewX(-22deg);

  background:

    /* correas inclinadas */
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 26px,

      rgba(255,255,255,0.04) 26px,
      rgba(255,255,255,0.04) 28px,

      rgba(255,255,255,0.16) 28px,
      rgba(255,255,255,0.16) 34px,

      rgba(255,255,255,0.05) 34px,
      rgba(255,255,255,0.05) 36px,

      transparent 36px,
      transparent 58px
    );

  border-top: 10px solid rgba(255,255,255,0.16);
  border-left: 10px solid rgba(255,255,255,0.10);
  border-right: 10px solid rgba(255,255,255,0.06);
  border-bottom: none;
  border-radius: 8px;
}

.nosotros-hero-content {
  position: relative;
  z-index: 2;
}

/* Texto */
.nosotros-copy {
  max-width: 560px;
}

.nosotros-copy h1 {
  margin-bottom: 12px;
  font-size: clamp(3rem, 4.5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.nosotros-subtitle {
  margin-bottom: 20px;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.nosotros-red-line {
  width: 78px;
  height: 4px;
  margin: 18px 0 26px;
  background: #d71920;
  border-radius: 3px;
}

.nosotros-copy h2 {
  margin-bottom: 20px;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
}

.nosotros-copy p {
  margin-bottom: 18px;
  font-size: 1.18rem;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

/* Imagen */
.nosotros-photo-wrapper {
  position: relative;
  padding: 6px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.nosotros-photo {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

/* Detalle rojo debajo de la foto */
.nosotros-photo-wrapper::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -3px;
  width: 120px;
  height: 5px;
  background: #d71920;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .nosotros-hero {
    padding: 55px 0;
  }

  .nosotros-copy {
    max-width: 100%;
  }

  .nosotros-copy h2 {
    font-size: 1.75rem;
  }

  .nosotros-photo {
    height: 380px;
  }
}

@media (max-width: 575.98px) {
  .nosotros-hero {
    padding: 42px 0;
  }

  .nosotros-copy h1 {
    font-size: 2.2rem;
  }

  .nosotros-subtitle {
    font-size: 1rem;
  }

  .nosotros-copy h2 {
    font-size: 1.45rem;
  }

  .nosotros-copy p {
    font-size: 1rem;
  }

  .nosotros-photo {
    height: 280px;
  }
}

/* =========================================
   FONDO SECCIÓN IDENTIDAD CORPORATIVA
========================================= */

.identidad-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f7fb 0%, #eef2f6 100%) !important;
}

/* patrón metálico oscuro en el fondo, NO en las tarjetas */
.identidad-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;

  background-image:

    /* columnas / vigas verticales */
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 150px,
      rgba(0, 0, 0, 0.18) 150px,
      rgba(0, 0, 0, 0.18) 154px,
      transparent 154px,
      transparent 300px
    ),

    /* correas / vigas horizontales */
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 100px,
      rgba(0, 0, 0, 0.12) 100px,
      rgba(0, 0, 0, 0.12) 104px,
      transparent 104px,
      transparent 200px
    ),

    /* diagonales tipo arriostramiento */
    repeating-linear-gradient(
      52deg,
      transparent 0,
      transparent 220px,
      rgba(0, 0, 0, 0.10) 220px,
      rgba(0, 0, 0, 0.10) 225px,
      transparent 225px,
      transparent 440px
    ),

    repeating-linear-gradient(
      -52deg,
      transparent 0,
      transparent 220px,
      rgba(0, 0, 0, 0.08) 220px,
      rgba(0, 0, 0, 0.08) 225px,
      transparent 225px,
      transparent 440px
    );
}

/* para que el contenido quede encima del patrón */
.identidad-section > .container {
  position: relative;
  z-index: 2;
}


/* =========================================
   ESCALERAS TIPO GATO - HERO
========================================= */

.escalera-hero {
  position: relative;
  overflow: hidden;

  min-height: 600px;
  padding: 70px 0;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      110deg,
      #08375f 0%,
      #0b4f8a 55%,
      #1269a8 100%
    );

  color: #ffffff;
}


/* Patrón industrial sutil */
.escalera-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0.12;
  pointer-events: none;

  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 180px,
      rgba(255,255,255,.18) 180px,
      rgba(255,255,255,.18) 187px,
      transparent 187px,
      transparent 360px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 120px,
      rgba(255,255,255,.11) 120px,
      rgba(255,255,255,.11) 126px,
      transparent 126px,
      transparent 240px
    ),
    repeating-linear-gradient(
      48deg,
      transparent 0,
      transparent 250px,
      rgba(255,255,255,.10) 250px,
      rgba(255,255,255,.10) 258px,
      transparent 258px,
      transparent 500px
    );
}


.escalera-hero .container {
  position: relative;
  z-index: 2;
}


/* =========================================
   TEXTO
========================================= */

.escalera-hero-copy {
  max-width: 720px;
}

.escalera-badge {
  display: inline-block;

  margin-bottom: 26px;
  padding: 9px 16px;

  background: rgba(255,255,255,.95);
  color: #0b4f8a;

  font-size: 16px;
  font-weight: 800;

  border-radius: 8px;
}


/* Título principal */
.escalera-hero h1 {
  margin-bottom: 0;

  font-size: clamp(4.2rem, 6vw, 6.5rem);
  font-weight: 800;
  line-height: 1.02;

  color: #ffffff;
}


/* Línea roja debajo del título */
.escalera-red-line {
  width: 105px;
  height: 5px;

  margin: 28px 0 30px;

  background: #d71920;
  border-radius: 4px;
}


/* Texto descriptivo */
.escalera-hero-copy p {
  max-width: 700px;

  margin-bottom: 36px;

  font-size: 1.55rem;
  line-height: 1.65;
  font-weight: 600;

  color: rgba(255,255,255,.96);
}


/* Botón */
.escalera-cta {
  padding: 17px 34px;

  background: #ffffff;
  border: 2px solid #ffffff;

  color: #08375f;

  font-size: 1.2rem;
  font-weight: 800;

  border-radius: 10px;

  transition:
    background-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.escalera-cta:hover {
  background: #d71920;
  border-color: #d71920;

  color: #ffffff;

  transform: translateY(-2px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {

  .escalera-hero {
    min-height: auto;
    padding: 55px 0;
  }

  .escalera-hero-copy {
    max-width: 100%;
  }

  .escalera-video {
    height: 480px;
  }

}


@media (max-width: 575.98px) {

  .escalera-hero {
    padding: 45px 0;
  }

  .escalera-hero h1 {
    font-size: 2.7rem;
  }

  .escalera-hero-copy p {
    font-size: 1.1rem;
  }

  .escalera-video {
    height: 420px;
  }

}


/* =========================================
   ESCALERAS - FONDO SECCIÓN DE CONTENIDO
========================================= */

.escalera-content-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f4f7fb 0%,
      #eef3f8 100%
    );
}

/* Patrón estructural suave */
.escalera-content-section::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
  opacity: 0.5;

  background-image:

    /* vigas verticales */
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 135px,
      rgba(8, 55, 95, 0.22) 135px,
      rgba(8, 55, 95, 0.22) 139px,
      transparent 139px,
      transparent 270px
    ),

    /* vigas horizontales */
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 95px,
      rgba(8, 55, 95, 0.14) 95px,
      rgba(8, 55, 95, 0.14) 99px,
      transparent 99px,
      transparent 190px
    ),

    /* arriostramiento diagonal */
    repeating-linear-gradient(
      50deg,
      transparent 0,
      transparent 205px,
      rgba(8, 55, 95, 0.13) 205px,
      rgba(8, 55, 95, 0.13) 210px,
      transparent 210px,
      transparent 415px
    ),

    repeating-linear-gradient(
      -50deg,
      transparent 0,
      transparent 205px,
      rgba(8, 55, 95, 0.09) 205px,
      rgba(8, 55, 95, 0.09) 210px,
      transparent 210px,
      transparent 415px
    );
}

/* Mantiene texto, galería y tarjeta por encima del patrón */
.escalera-content-section > .container {
  position: relative;
  z-index: 2;
}

/* ==================================================
   ESCALERAS - GALERÍA PRINCIPAL DEL HERO
================================================== */

.escalera-gallery-hero {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;

  padding: 8px;

  background: rgba(255, 255, 255, 0.10);

  border: 2px solid rgba(255, 255, 255, 0.20);

  border-radius: 24px;

  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.28);
}


.escalera-gallery-hero .carousel {
  overflow: hidden;
  border-radius: 18px;
}


.escalera-gallery-hero .carousel-inner {
  border-radius: 18px;
}


.escalera-gallery-hero .carousel-item {
  height: 560px;

  background: transparent;
}


.escalera-gallery-hero .carousel-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  border-radius: 18px;
}


.escalera-gallery-hero .carousel-control-prev,
.escalera-gallery-hero .carousel-control-next {
  width: 12%;
}



/* ==================================================
   ESCALERAS - TARJETAS INFERIORES
================================================== */

.escalera-info-card,
.escalera-contact-card {
  height: 100%;

  padding: 38px;

  background: #ffffff;

  border-radius: 24px;

  border-top: 6px solid #0b4f8a;
  border-bottom: 6px solid #d71920;

  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.14);
}


.escalera-info-card h2,
.escalera-contact-card h2 {
  margin-bottom: 24px;

  color: #08375f;

  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
}


.escalera-info-card p,
.escalera-contact-card p {
  margin-bottom: 20px;

  color: #111827;

  font-size: 1.08rem;
  line-height: 1.75;
}


.escalera-info-card strong,
.escalera-contact-card strong {
  font-weight: 800;
}


.escalera-whatsapp-btn {
  margin-top: 10px;

  padding: 15px 22px;

  font-size: 1.06rem;
  font-weight: 800;

  border-radius: 10px;
}



/* ==================================================
   ESCALERAS - AJUSTE DEL HERO
================================================== */

.escalera-hero .row {
  min-height: 620px;
}


.escalera-hero-copy {
  max-width: 620px;
}


.escalera-hero h1 {
  font-size: clamp(4rem, 6vw, 6.2rem);
}


.escalera-hero-copy p {
  max-width: 620px;

  font-size: 1.4rem;
  line-height: 1.6;
}



/* ==================================================
   ESCALERAS - RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

  .escalera-hero .row {
    min-height: auto;
  }

  .escalera-gallery-hero {
    max-width: 520px;
    margin-top: 15px;
  }

  .escalera-gallery-hero .carousel-item {
    height: 520px;
  }

  .escalera-info-card,
  .escalera-contact-card {
    padding: 30px;
  }

}


@media (max-width: 575.98px) {

  .escalera-gallery-hero {
    padding: 6px;
  }

  .escalera-gallery-hero .carousel-item {
    height: 420px;
  }

  .escalera-info-card,
  .escalera-contact-card {
    padding: 24px;
  }

  .escalera-info-card h2,
  .escalera-contact-card h2 {
    font-size: 1.55rem;
  }

  .escalera-info-card p,
  .escalera-contact-card p {
    font-size: 1rem;
  }

}

/* =========================================
   FONDO CON PATRÓN - SECCIÓN SERVICIOS
========================================= */

.services-pattern-section {
  position: relative;
  overflow: hidden;
  background-color: #eef3f8;
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

/* Patrón industrial similar al de otras páginas */
.services-pattern-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;

  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 180px,
      rgba(8, 55, 95, 0.08) 180px,
      rgba(8, 55, 95, 0.08) 184px,
      transparent 184px,
      transparent 360px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 120px,
      rgba(8, 55, 95, 0.06) 120px,
      rgba(8, 55, 95, 0.06) 124px,
      transparent 124px,
      transparent 240px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 240px,
      rgba(8, 55, 95, 0.05) 240px,
      rgba(8, 55, 95, 0.05) 244px,
      transparent 244px,
      transparent 480px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 240px,
      rgba(8, 55, 95, 0.05) 240px,
      rgba(8, 55, 95, 0.05) 244px,
      transparent 244px,
      transparent 480px
    );
}

.services-pattern-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================
   CTA - SECCIÓN COMPACTA
========================================= */

.cta-section {
  background: #ffffff;
  padding: 10px 0 22px;
  margin: 0;
}

.cta-section .container {
  margin-bottom: 0;
}

.cta {
  background: var(--alfa-blue-dark);
  color: #ffffff;
  border-radius: 24px;
  padding: 28px 25px;
  margin-bottom: 0;
}

/* ==================================================
   LÍNEAS DE VIDA - GALERÍA PRINCIPAL DEL HERO
================================================== */

.linea-vida-gallery-hero {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;

  padding: 8px;

  background: rgba(255, 255, 255, 0.10);

  border: 2px solid rgba(255, 255, 255, 0.20);
  border-radius: 24px;

  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.28);
}


/* Contenedor del carrusel */
.linea-vida-gallery-hero .carousel {
  overflow: hidden;
  border-radius: 18px;
}


.linea-vida-gallery-hero .carousel-inner {
  border-radius: 18px;
}


/* Tamaño del área disponible para cada fotografía */
.linea-vida-gallery-hero .carousel-item {
  height: 540px;

  background: transparent;
}

/* IMAGEN COMPLETA - SIN ZOOM NI RECORTE */
.linea-vida-gallery-hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.15);
}

/* Flechas */
.linea-vida-gallery-hero .carousel-control-prev,
.linea-vida-gallery-hero .carousel-control-next {
  width: 12%;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {

  .linea-vida-gallery-hero {
    max-width: 520px;
    margin-top: 20px;
  }

  .linea-vida-gallery-hero .carousel-item {
    height: 520px;
  }

}


@media (max-width: 575.98px) {

  .linea-vida-gallery-hero {
    padding: 6px;
  }

  .linea-vida-gallery-hero .carousel-item {
    height: 360px;
  }

}

/* ==================================================
   LÍNEAS DE VIDA - AJUSTE DE TEXTO DEL HERO
================================================== */

.linea-vida-hero-copy {
  max-width: 700px;
}

.linea-vida-hero h1 {
  font-size: clamp(4rem, 5.5vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 0;
}

.linea-vida-hero-copy p {
  max-width: 680px;
  margin-bottom: 34px;

  font-size: 1.45rem;
  line-height: 1.65;
  font-weight: 600;

  color: rgba(255,255,255,.96);
}

.linea-vida-badge {
  font-size: 16px;
  font-weight: 800;
  padding: 9px 16px;
  margin-bottom: 24px;
}

.linea-vida-red-line {
  width: 105px;
  height: 5px;
  margin: 26px 0 28px;

  background: #d71920;
  border-radius: 4px;
}


/* ==================================================
   BOTÓN COTIZACIÓN - HOVER VERDE
================================================== */

.linea-vida-cta {
  padding: 16px 32px;

  background: #ffffff;
  border: 2px solid #ffffff;

  color: #08375f;

  font-size: 1.2rem;
  font-weight: 800;

  border-radius: 10px;

  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.linea-vida-cta:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;

  transform: translateY(-2px);
}

/* ==================================================
   LÍNEAS DE VIDA - HERO COMPLETO
================================================== */

.linea-vida-hero {
  position: relative;
  overflow: hidden;

  min-height: 620px;
  padding: 70px 0;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      110deg,
      #08375f 0%,
      #0b4f8a 55%,
      #1269a8 100%
    );

  color: #ffffff;
}

/* patrón industrial */
.linea-vida-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0.12;
  pointer-events: none;

  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 180px,
      rgba(255,255,255,.18) 180px,
      rgba(255,255,255,.18) 187px,
      transparent 187px,
      transparent 360px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 120px,
      rgba(255,255,255,.11) 120px,
      rgba(255,255,255,.11) 126px,
      transparent 126px,
      transparent 240px
    ),
    repeating-linear-gradient(
      48deg,
      transparent 0,
      transparent 250px,
      rgba(255,255,255,.10) 250px,
      rgba(255,255,255,.10) 258px,
      transparent 258px,
      transparent 500px
    );
}

.linea-vida-hero .container {
  position: relative;
  z-index: 2;
}

/* TEXTO */

.linea-vida-hero-copy {
  max-width: 650px;
}

.linea-vida-badge {
  display: inline-block;

  margin-bottom: 24px;
  padding: 9px 16px;

  background: rgba(255,255,255,.95);
  color: #0b4f8a;

  font-size: 16px;
  font-weight: 800;

  border-radius: 8px;
}

.linea-vida-hero h1 {
  margin-bottom: 0;

  font-size: clamp(4rem, 5.5vw, 6rem);
  font-weight: 800;
  line-height: 1.05;

  color: #ffffff;
}

.linea-vida-red-line {
  width: 105px;
  height: 5px;

  margin: 28px 0 30px;

  background: #d71920;
  border-radius: 4px;
}

.linea-vida-hero-copy p {
  max-width: 650px;

  margin-bottom: 34px;

  font-size: 1.4rem;
  line-height: 1.65;
  font-weight: 600;

  color: rgba(255,255,255,.96);
}

/* BOTÓN */

.linea-vida-cta {
  padding: 16px 32px;

  background: #ffffff;
  border: 2px solid #ffffff;

  color: #08375f;

  font-size: 1.15rem;
  font-weight: 800;

  border-radius: 10px;

  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.linea-vida-cta:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;

  transform: translateY(-2px);
}

/* GALERÍA */

.linea-vida-gallery-hero {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;

  padding: 8px;

  background: rgba(255,255,255,.10);

  border: 2px solid rgba(255,255,255,.20);
  border-radius: 24px;

  box-shadow:
    0 24px 55px rgba(0,0,0,.28);
}

.linea-vida-gallery-hero .carousel {
  overflow: hidden;
  border-radius: 18px;
}

.linea-vida-gallery-hero .carousel-item {
  height: 540px;
}

.linea-vida-gallery-hero .carousel-item img {

  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
  .linea-vida-hero {
    min-height: auto;
    padding: 55px 0;
  }

  .linea-vida-gallery-hero {
    max-width: 650px;
    margin-top: 20px;
  }

  .linea-vida-gallery-hero .carousel-item {
    height: 600px;
  }
}

@media (max-width: 575.98px) {
  .linea-vida-hero {
    padding: 45px 0;
  }

  .linea-vida-hero h1 {
    font-size: 2.8rem;
  }

  .linea-vida-hero-copy p {
    font-size: 1.1rem;
  }

  .linea-vida-gallery-hero .carousel-item {
    height: 360px;
  }
}

/* ==================================================
   LÍNEAS DE VIDA - SECCIÓN DE INFORMACIÓN
================================================== */

.linea-vida-content-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f4f7fb 0%,
      #eef3f8 100%
    );
}


/* Patrón industrial */
.linea-vida-content-section::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
  opacity: 0.42;

  background-image:

    /* columnas */
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 135px,
      rgba(8, 55, 95, 0.15) 135px,
      rgba(8, 55, 95, 0.15) 139px,
      transparent 139px,
      transparent 270px
    ),

    /* vigas horizontales */
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 95px,
      rgba(8, 55, 95, 0.10) 95px,
      rgba(8, 55, 95, 0.10) 99px,
      transparent 99px,
      transparent 190px
    ),

    /* diagonales */
    repeating-linear-gradient(
      50deg,
      transparent 0,
      transparent 205px,
      rgba(8, 55, 95, 0.09) 205px,
      rgba(8, 55, 95, 0.09) 210px,
      transparent 210px,
      transparent 415px
    ),

    repeating-linear-gradient(
      -50deg,
      transparent 0,
      transparent 205px,
      rgba(8, 55, 95, 0.07) 205px,
      rgba(8, 55, 95, 0.07) 210px,
      transparent 210px,
      transparent 415px
    );
}


/* Contenido sobre el patrón */
.linea-vida-content-section > .container {
  position: relative;
  z-index: 2;
}


/* ==================================================
   TARJETAS
================================================== */

.linea-vida-info-card,
.linea-vida-contact-card {
  height: 100%;

  padding: 38px;

  background: #ffffff;

  border-radius: 24px;

  border-top: 6px solid #0b4f8a;
  border-bottom: 6px solid #d71920;

  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.14);
}


/* Títulos */
.linea-vida-info-card h2,
.linea-vida-contact-card h2 {
  margin-bottom: 24px;

  color: #08375f;

  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
}


/* Texto */
.linea-vida-info-card p,
.linea-vida-contact-card p {
  margin-bottom: 20px;

  color: #111827;

  font-size: 1.08rem;
  line-height: 1.75;
}


.linea-vida-info-card strong,
.linea-vida-contact-card strong {
  font-weight: 800;
}


/* WhatsApp */
.linea-vida-whatsapp-btn {
  margin-top: 10px;

  padding: 15px 22px;

  font-size: 1.06rem;
  font-weight: 800;

  border-radius: 10px;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

  .linea-vida-info-card,
  .linea-vida-contact-card {
    padding: 30px;
  }

}


@media (max-width: 575.98px) {

  .linea-vida-info-card,
  .linea-vida-contact-card {
    padding: 24px;
  }

  .linea-vida-info-card h2,
  .linea-vida-contact-card h2 {
    font-size: 1.55rem;
  }

  .linea-vida-info-card p,
  .linea-vida-contact-card p {
    font-size: 1rem;
  }

} 

/* =========================================
   BOTÓN WHATSAPP DEL HERO DEL INDEX
========================================= */

.hero-quote-btn {
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.hero-quote-btn:hover,
.hero-quote-btn:focus {
  background-color: #25d366;
  border-color: #25d366;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==================================================
   CUBIERTAS - HERO
================================================== */

.cubierta-hero {
  position: relative;
  overflow: hidden;

  min-height: 620px;
  padding: 70px 0;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      110deg,
      #08375f 0%,
      #0b4f8a 55%,
      #1269a8 100%
    );

  color: #ffffff;
}


/* Patrón industrial */
.cubierta-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0.12;
  pointer-events: none;

  background-image:

    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 180px,
      rgba(255,255,255,.18) 180px,
      rgba(255,255,255,.18) 187px,
      transparent 187px,
      transparent 360px
    ),

    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 120px,
      rgba(255,255,255,.11) 120px,
      rgba(255,255,255,.11) 126px,
      transparent 126px,
      transparent 240px
    ),

    repeating-linear-gradient(
      48deg,
      transparent 0,
      transparent 250px,
      rgba(255,255,255,.10) 250px,
      rgba(255,255,255,.10) 258px,
      transparent 258px,
      transparent 500px
    );
}


.cubierta-hero .container {
  position: relative;
  z-index: 2;
}


/* ==================================================
   CUBIERTAS - TEXTO
================================================== */

.cubierta-hero-copy {
  max-width: 650px;
}


.cubierta-badge {
  display: inline-block;

  margin-bottom: 24px;
  padding: 9px 16px;

  background: rgba(255,255,255,.95);
  color: #0b4f8a;

  font-size: 16px;
  font-weight: 800;

  border-radius: 8px;
}


.cubierta-hero h1 {
  margin-bottom: 0;

  font-size: clamp(3.6rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;

  color: #ffffff;
}


.cubierta-red-line {
  width: 105px;
  height: 5px;

  margin: 28px 0 30px;

  background: #d71920;

  border-radius: 4px;
}


.cubierta-hero-copy p {
  max-width: 650px;

  margin-bottom: 34px;

  font-size: 1.4rem;
  line-height: 1.65;
  font-weight: 600;

  color: rgba(255,255,255,.96);
}


/* BOTÓN */

.cubierta-cta {
  padding: 16px 32px;

  background: #ffffff;
  border: 2px solid #ffffff;

  color: #08375f;

  font-size: 1.15rem;
  font-weight: 800;

  border-radius: 10px;

  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}


.cubierta-cta:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;

  transform: translateY(-2px);
}


/* ==================================================
   CUBIERTAS - GALERÍA
================================================== */

.cubierta-gallery-hero {
  width: 100%;
  max-width: 620px;

  margin: 0 auto;

  padding: 8px;

  background: rgba(255,255,255,.10);

  border: 2px solid rgba(255,255,255,.20);

  border-radius: 24px;

  box-shadow:
    0 24px 55px rgba(0,0,0,.28);
}


.cubierta-gallery-hero .carousel {
  overflow: hidden;

  border-radius: 18px;
}


.cubierta-gallery-hero .carousel-inner {
  border-radius: 18px;
}


.cubierta-gallery-hero .carousel-item {
  height: 540px;
}


.cubierta-gallery-hero .carousel-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  border-radius: 18px;
}


/* ==================================================
   CUBIERTAS - FONDO DE CONTENIDO
================================================== */

.cubierta-content-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f4f7fb 0%,
      #eef3f8 100%
    );
}


.cubierta-content-section::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: .42;

  background-image:

    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 135px,
      rgba(8,55,95,.15) 135px,
      rgba(8,55,95,.15) 139px,
      transparent 139px,
      transparent 270px
    ),

    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 95px,
      rgba(8,55,95,.10) 95px,
      rgba(8,55,95,.10) 99px,
      transparent 99px,
      transparent 190px
    ),

    repeating-linear-gradient(
      50deg,
      transparent 0,
      transparent 205px,
      rgba(8,55,95,.09) 205px,
      rgba(8,55,95,.09) 210px,
      transparent 210px,
      transparent 415px
    ),

    repeating-linear-gradient(
      -50deg,
      transparent 0,
      transparent 205px,
      rgba(8,55,95,.07) 205px,
      rgba(8,55,95,.07) 210px,
      transparent 210px,
      transparent 415px
    );
}


.cubierta-content-section > .container {
  position: relative;
  z-index: 2;
}


/* ==================================================
   CUBIERTAS - TARJETAS
================================================== */

.cubierta-info-card,
.cubierta-contact-card {
  height: 100%;

  padding: 38px;

  background: #ffffff;

  border-radius: 24px;

  border-top: 6px solid #0b4f8a;
  border-bottom: 6px solid #d71920;

  box-shadow:
    0 16px 38px rgba(15,23,42,.14);
}


.cubierta-info-card h2,
.cubierta-contact-card h2 {
  margin-bottom: 24px;

  color: #08375f;

  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
}


.cubierta-info-card p,
.cubierta-contact-card p {
  margin-bottom: 20px;

  color: #111827;

  font-size: 1.08rem;
  line-height: 1.75;
}


.cubierta-info-card strong,
.cubierta-contact-card strong {
  font-weight: 800;
}


.cubierta-whatsapp-btn {
  margin-top: 10px;

  padding: 15px 22px;

  font-size: 1.06rem;
  font-weight: 800;

  border-radius: 10px;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

  .cubierta-hero {
    min-height: auto;
    padding: 55px 0;
  }

  .cubierta-gallery-hero {
    max-width: 540px;
    margin-top: 20px;
  }

  .cubierta-gallery-hero .carousel-item {
    height: 480px;
  }

  .cubierta-info-card,
  .cubierta-contact-card {
    padding: 30px;
  }

}


@media (max-width: 575.98px) {

  .cubierta-hero {
    padding: 45px 0;
  }

  .cubierta-hero h1 {
    font-size: 2.7rem;
  }

  .cubierta-hero-copy p {
    font-size: 1.1rem;
  }

  .cubierta-gallery-hero .carousel-item {
    height: 360px;
  }

  .cubierta-info-card,
  .cubierta-contact-card {
    padding: 24px;
  }

}