.instalaciones-page {
  width: 100%;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}
.instalaciones-hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
#carouselInstalaciones,
#carouselInstalaciones .carousel-inner,
#carouselInstalaciones .carousel-item {
  width: 100%;
  height: 100vh;
}
#carouselInstalaciones .carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  filter: none;
  opacity: 1;
}
.instalaciones-caption {
  position: absolute;
  right: 70px;
  left: auto;
  bottom: 90px;
  transform: none;
  z-index: 5;

  width: 40%;
  max-width: 600px;

  background: rgba(0, 0, 0, 0.42);

  backdrop-filter: blur(6px);

  border-radius: 18px;

  padding: 22px 30px;

  text-align: right;
}
.instalaciones-caption h1 {
  color: #ffffff;

  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 800;
  line-height: 1.2;

  margin: 0 0 10px 0;

  letter-spacing: 0.4px;

  text-shadow:
      0 0 4px rgba(255,255,255,0.20),
      0 0 12px rgba(255,255,255,0.12),
      0 2px 8px rgba(0,0,0,0.55);
}

.instalaciones-caption p {
  color: rgba(255, 255, 255, 0.98);

  font-size: clamp(15px, 1.15vw, 20px);

  font-weight: 500;
  letter-spacing: 0.3px;

  line-height: 1.5;

  margin: 0;

  text-shadow:
      0 0 3px rgba(255,255,255,0.12),
      0 0 8px rgba(255,255,255,0.08),
      0 2px 6px rgba(0,0,0,0.65);
}

.instalaciones-caption h1,
.instalaciones-caption p {
    margin-left: auto;
}
.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  z-index: 10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 34px;
  height: 34px;
}

.carousel-indicators {
  bottom: 28px;
  z-index: 10;
}

.carousel-indicators [data-bs-target] {
  width: 35px;
  height: 4px;
  border: none;
  border-radius: 20px;
  background-color: #fff;
  opacity: 0.45;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #b7ff00;
}


/*--------------------------------------------SEGUNDA SESIÓN----------------------------------------*/
/* SEGUNDA SECCIÓN PREMIUM BODYLIFE */

.bl-strength-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #020202;
  color: #fff;
  min-height: auto;
  padding: 70px 2vw 55px;
}

.bl-strength-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/servicios/mujer_fuerte.png");
  background-size: cover;

  background-position: 85% center;

  transform: scale(0.99);
  z-index: 1;
}

.bl-strength-dark {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:

  linear-gradient(
    90deg,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.62) 38%,
    rgba(0,0,0,0.34) 68%,
    rgba(0,0,0,0.60) 100%
  ),

 

  radial-gradient(
    circle at 30% 20%,
    rgba(184,255,44,0.10),
    transparent 28%
  );
}

.bl-strength-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
}

.bl-strength-header {
  max-width: 1100px;
  width: 100%;
}

.bl-strength-header span {
  display: block;
  color: #b8ff2c;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.bl-strength-header h2 {
  margin: 0 0 26px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.90;
  font-weight: 950;
  color: #fff;
  letter-spacing: -4px;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0,0,0,0.65);
  max-width: 1000px;
}

.bl-strength-header h2 strong {
  color: #b8ff2c;
  font-weight: 950;
  text-shadow:
    0 0 18px rgba(184,255,44,0.30),
    0 8px 28px rgba(0,0,0,0.75);
}

.bl-strength-header p {
  position: relative;
  overflow: hidden;

  max-width: 850px;
  margin: 0;

  padding: 24px 30px;

  color: rgba(255,255,255,0.98);

  font-size: 1.28rem;
  line-height: 1.85;
  font-weight: 700;
  letter-spacing: 0.4px;

  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid #b8ff2c;
  border-radius: 18px;

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);

  text-shadow:
    0 2px 8px rgba(0,0,0,0.95),
    0 0 10px rgba(255,255,255,0.16);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.35),
    inset 0 0 28px rgba(255,255,255,0.035);
}

/* brillo pasando encima */
.bl-strength-header p::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -120%;
  width: 38%;
  height: 240%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );

  transform: rotate(18deg);
  animation: brilloTexto 10s infinite;
  pointer-events: none;
}

@keyframes brilloTexto {
  0% {
    left: -120%;
  }

  45% {
    left: 135%;
  }

  100% {
    left: 135%;
  }
}

.bl-strength-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 80px;
  
    align-items: center;
  }

.bl-card {
  min-height: 300px;
  padding: 28px 24px;
  border-radius: 18px;
  background:
  linear-gradient(
    180deg,
    rgba(18,18,18,0.26) 0%,
    rgba(8,8,8,0.38) 100%
  );
  display: flex;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow:
    inset 0 0 35px rgba(255,255,255,0.015),
    0 18px 40px rgba(0,0,0,0.24);

  transition: all 0.35s ease;
  flex-direction: column;
  justify-content: center;
  text-align: center;

  align-items: center;
}

.bl-card:hover {
  transform: translateY(-6px);

  background:
  linear-gradient(
    180deg,
    rgba(18,18,18,0.34) 0%,
    rgba(8,8,8,0.48) 100%
  );

  border-color: rgba(184,255,44,0.32);

  box-shadow:
    0 0 26px rgba(184,255,44,0.08),
    0 20px 46px rgba(0,0,0,0.34);
}

.bl-icon i {
  -webkit-text-stroke: 1px #b8ff2c;
}
.bl-card h3 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: 1.55rem;

  line-height: 1.15;

  font-weight: 900;

  letter-spacing: -0.5px;

  text-shadow:
    0 0 6px rgba(255,255,255,0.10),
    0 2px 14px rgba(0,0,0,0.85);

  transition: all 0.35s ease;
}

.bl-card:hover h3 {
  text-shadow:
    0 0 10px rgba(255,255,255,0.14),
    0 4px 18px rgba(0,0,0,0.92);
}
.bl-card p {
  margin: 0;

  color: rgba(255,255,255,0.96);

  font-size: 1.15rem;

  line-height: 1.75;

  font-weight: 500;

  letter-spacing: 0.4px;

  text-shadow:
    0 2px 10px rgba(0,0,0,0.55);
}

.bl-card span {
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 28px;
  background: #b8ff2c;
  box-shadow: 0 0 12px rgba(184,255,44,0.65);
}

.bl-strength-bottom {
  margin-top: 42px;
  min-height: 150px;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr) 1.05fr;
  align-items: center;
  border: 1px solid rgba(184,255,44,0.65);
  border-radius: 18px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 30px rgba(184,255,44,0.10),
    inset 0 0 35px rgba(184,255,44,0.035);
  overflow: hidden;
}

.bl-bottom-title,
.bl-bottom-item,
.bl-bottom-brand {
  min-height: 150px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bl-bottom-title {
  border-right: 1px solid rgba(184,255,44,0.38);
}

.bl-bottom-title h3 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 950;
  text-transform: uppercase;
}

.bl-bottom-title strong {
  color: #b8ff2c;
  font-size: 1.7rem;
}

.bl-bottom-item {
  text-align: center;
  border-right: 1px solid rgba(184,255,44,0.38);
}

.bl-bottom-item div {
  color: #b8ff2c;
  font-size: 2.25rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(184,255,44,0.35));
}

.bl-bottom-item p {
  margin: 0;

  color: rgba(255,255,255,0.98);

  font-size: 1.12rem;

  line-height: 1.55;

  font-weight: 700;

  letter-spacing: 0.3px;

  text-shadow:
    0 0 6px rgba(184,255,44,0.10),
    0 2px 12px rgba(0,0,0,0.75);
}

.bl-bottom-brand {
  text-align: center;
}

.bl-bottom-brand h4 {
  margin: 0 0 10px;
  color: #b8ff2c;
  font-size: 1.9rem;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(184,255,44,0.28);
}

.bl-bottom-brand p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 700;
}

/* ICONOS PREMIUM */

.bl-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #b8ff2c;
  font-size: 3.2rem;
  line-height: 1;
  text-shadow:
    0 0 8px rgba(184,255,44,0.95),
    0 0 18px rgba(184,255,44,0.55);
}

.bl-icon i,
.bl-bottom-icon i {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  line-height: 1;
  color: #b8ff2c;
}

.bl-bottom-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8ff2c;
  font-size: 2.45rem;
  line-height: 1;
  text-shadow:
    0 0 8px rgba(184,255,44,0.95),
    0 0 16px rgba(184,255,44,0.55);
}
.bl-icon img {
  width: 46px;
  height: 46px;

  object-fit: contain;

  filter:
    brightness(0)
    saturate(100%)
    invert(88%)
    sepia(96%)
    saturate(1352%)
    hue-rotate(22deg)
    brightness(105%)
    contrast(108%)
    drop-shadow(0 0 6px rgba(184,255,44,0.75));
}
.bl-bottom-icon img {
  width: 42px;
  height: 42px;

  filter:
    brightness(0)
    saturate(100%)
    invert(88%)
    sepia(96%)
    saturate(1352%)
    hue-rotate(22deg)
    brightness(105%)
    contrast(108%)
    drop-shadow(0 0 10px rgba(184,255,44,0.95))
    drop-shadow(0 0 22px rgba(184,255,44,0.45));
}


.bl-bottom-icon {
  margin-bottom: 12px;
  text-align: center;
}

.bl-icon {
  width: 100%;
  margin-bottom: 28px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-card {
  text-align: center;
}

.bl-icon i {
  font-size: 3.3rem;
  color: #b8ff2c;
  line-height: 1;

  text-shadow:
    0 0 8px rgba(184,255,44,0.95),
    0 0 18px rgba(184,255,44,0.55);
}


/*----------------------------------------------FOOTER.PHP-------------------------------*/

.footer-main {
  position: relative;
  overflow: hidden;

 
  background: #000000;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 0 1.2rem;

  box-shadow: none;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 0 1.2rem;
 
      box-shadow:
        inset 0 80px 120px rgba(0,255,170,0.03),
        inset 0 -80px 120px rgba(0,140,255,0.03);
    }

.footer-main::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.03), transparent 70%);

  opacity: 0.4;
  pointer-events: none;
}
.footer-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 60%;
  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  filter: blur(2px);
  opacity: 0.6;
}
.footer-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 10px;
  padding-right: 30px;
  box-sizing: border-box;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;   /* clave */
  align-items: center;      /* centra horizontal */
  justify-content: center;
  text-align: center;       /* centra el texto */
  gap: 10px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  margin: 0;
  transform: none;
}
.footer-contact-block{
  display:flex;
  flex-direction:column;

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

  text-align:center;

  transform: translateX(20px);
}
.footer-social{
  display:flex;

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

  gap:0.9rem;

  width:100%;
}
.footer-contact-block h5,
.footer-phone{
  position: relative;
  left: 35px;
}

/* ================= MARCA ================= */



.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  margin-bottom: 5px;
}

.footer-brand-text {
  min-width: 0;
  
  text-align: center;
}
.footer-brand-text h4 {
  margin: 0 0 6px;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: none;
}
.footer-brand-text p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-shadow: none;
}
/* ================= UBICACIÓN ================= */

.footer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  margin-left: 0;
  transform: translateX(75px) !important;
}
.footer-contact-block h5 {
  color: #ffffff;

}
    .footer-info h5,
    .footer-contact-block h5 {
      font-size: 1.4rem;     /* mismo tamaño que BODY LIFE */
      font-weight: 900;
      letter-spacing: 0.8px;
      color: #ffffff;
      transform: translateX(6px); 
    }

.footer-info p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.7;
  word-break: break-word;
}

.footer-location {
  color: #3b82f6;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-location i {
  color: #3b82f6;
}

.footer-location:hover {
  color: #60a5fa;
}

.footer-location:hover i {
  color: #60a5fa;
}
.footer-location i {
  color: #3b82f6;
  text-shadow: 0 0 6px rgba(59,130,246,0.4);
}

/* ================= CONTACTO ================= */


.footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 700;
  transition: all 0.25s ease;
  flex-wrap: wrap;
  word-break: break-word;
}
.footer-phone i {
  color: #3b82f6;
  text-shadow: 0 0 6px rgba(59,130,246,0.5);
}

.footer-phone:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.03),
    0 6px 16px rgba(0,0,0,0.28);
  transition: all 0.28s ease;
}

.footer-social a i {
  font-size: 21px;
  transition: all 0.28s ease;
}

/* Colores sutiles por red */
.footer-social a:nth-child(1) i {
  color: #d96aa7;
}

.footer-social a:nth-child(2) i {
  color: #6ea8ff;
}

.footer-social a:nth-child(3) i {
  color: #4fd17b;
}

/* Hover elegante */
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 12px rgba(255,255,255,0.04),
    0 10px 22px rgba(0,0,0,0.34);
}

.footer-social a:nth-child(1):hover {
  box-shadow:
    0 0 0 1px rgba(217,106,167,0.18),
    0 8px 20px rgba(217,106,167,0.14);
}

.footer-social a:nth-child(2):hover {
  box-shadow:
    0 0 0 1px rgba(110,168,255,0.18),
    0 8px 20px rgba(110,168,255,0.14);
}

.footer-social a:nth-child(3):hover {
  box-shadow:
    0 0 0 1px rgba(79,209,123,0.18),
    0 8px 20px rgba(79,209,123,0.14);
}

.footer-social a:hover i {
  transform: scale(1.06);
}

/* ================= PARTE INFERIOR ================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-top: 1.8rem;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

/*  HOVER AZUL */
.footer-links a:hover {
  color: #1e90ff; /* azul tipo link */
  text-decoration: underline;
}
/* FORZAR TODO EL TEXTO DEL FOOTER A BLANCO */
.footer-brand-text h4,
.footer-brand-text p,
.footer-info h5,
.footer-info p,
.footer-contact-block h5,
.footer-phone
.footer-contact-block {
  color: #ffffff;
}
.footer-contact-block h5,
.footer-phone {
  transform: translateX(-40px); /* ajusta aquí */
}
/* FORZAR MISMO BLANCO REAL QUE UBICACIÓN */
.footer-brand-text h4,
.footer-contact-block h5,
.footer-info h5 {
color: #ffffff !important;


}
.password-help {
  display: block;
  width: 100%;
  
  font-size: 16px;
  font-weight: 500;
  
  color: rgba(255,255,255,0.9);
  
  margin-top: 6px;
  padding: 10px 14px;
  
  border-radius: 10px;
  
  background: rgba(191,255,0,0.08); /* fondo suave verde */
  border-left: 3px solid #bfff00;   /* línea elegante */
  
  text-shadow: 0 0 6px rgba(191,255,0,0.15);
}
.legal-box {
  background: rgba(10, 12, 10, 0.95); /* negro profundo */
  border: 1px solid rgba(191,255,0,0.25);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 8px;

  box-shadow:
      0 10px 30px rgba(0,0,0,0.6),
      0 0 15px rgba(191,255,0,0.08);
}
.legal-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.legal-check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #bfff00;
}

.legal-box p {
  margin: 12px 0 0 32px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
}
/*----------------------------------------------AVISO LEGAL---------------------------------*/
.legal-check span {
  color: #d6d6d6;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* LINKS SIN SUBRAYADO */
.legal-check a {
  color: #c6ff1a; /* verde BODY LIFE */
  text-decoration: none; /* 👈 quitamos subrayado */
  font-weight: 700;

  transition: all 0.2s ease;
}

/* HOVER SUAVE */
.legal-check a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(198,255,26,0.5);
}

/* quitar estilos feos del navegador */
.legal-check a:visited,
.legal-check a:active {
  color: #c6ff1a;
}

.obligatorio {
  color: #ff4d4d;
  font-weight: 900;
  margin-left: 4px;
}

.campo-error {
  border: 2px solid #ff3b3b !important;
  box-shadow:
    0 0 0 4px rgba(255, 59, 59, 0.25),
    0 0 14px rgba(255, 59, 59, 0.35) !important;
}
.mensaje-error-campo {
  color: #ff4d4d;
  font-size: 13px;
  font-weight: 800;
  margin-top: 7px;
  text-align: left;
}
.campo-error:focus {
  border: 2px solid #ff3b3b !important;
  box-shadow:
    0 0 0 4px rgba(255, 59, 59, 0.25),
    0 0 14px rgba(255, 59, 59, 0.35) !important;
}

.info-obligatorio {
  margin: 10px auto 18px;
  text-align: center;

  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);

  letter-spacing: 0.3px;
}


.info-obligatorio span {
  color: rgba(255,255,255,0.35);
  font-weight: 800;
  font-size: 1.2em;

  display: inline-block; /* clave */
  transform: translateY(2px); /* baja el asterisco */
}
.footer-bottom p{
  font-size:1.08rem;
  font-weight:600;

  color:rgba(255,255,255,.9);

  letter-spacing:.3px;

  text-shadow:
    0 0 10px rgba(255,255,255,.08);
}

.footer-links a{
  font-size:1.05rem;
  font-weight:700;

  color:rgba(255,255,255,.92);

  transition:.25s ease;
}

.footer-links a:hover{

  color:#b8ff2c;

  text-shadow:
    0 0 10px rgba(184,255,44,.35);
}
.footer-main .footer-top .footer-info{
  position: relative;
  left: 28px;
}
/*-------------------------------------------------------------------------------FINDEL FOOTER-------------------------------------*/

/* ================= BANNER BODY LIFE ================= */
.inst-banner-section {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 100%;
  z-index: 20;
  background: transparent;
  pointer-events: none;
}

.inst-banner-wrap {
  position: relative;
  width: 100%;
  min-height: auto;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.inst-banner-card-wrap {
  position: relative;
  width: 620px;
  max-width: 60%;
  margin-left: 0;
  z-index: 30;
}

.inst-banner-card {
  position: relative;
  min-height: 140px;
  background: linear-gradient(
      135deg,
      #b6ef2a 0%,
      #a5df1d 45%,
      #8fc914 100%
    );
  
  display: flex;
  align-items: center;
  padding: 1.4rem 2rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  z-index: 2;
}

.inst-banner-triangle {
  position: absolute;
  top: 0;
  right: -170px;
  width: 170px;
  height: 100%;
  background: linear-gradient(
    135deg,
    #a5df1d 0%,
    #85bd12 100%
  );
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 1;
}
.inst-banner-title span {
  display: inline-block;

  margin: 0 14px;

  color: #1a1a1a;

  font-size: 0.7em;

  transform: translateY(-10px);

  opacity: 0.9;
}
.inst-banner-content {
  position: relative;
  z-index: 3;
}

.inst-banner-title {
  margin: 0 0 .55rem;

  font-size: clamp(2.5rem, 5vw, 4.2rem);

  line-height: .9;

  font-weight: 900;

  font-style: normal;

  text-transform: uppercase;

  letter-spacing: -0.05em;

  color: #111;

  text-shadow:
    0 4px 12px rgba(0,0,0,.18),
    0 10px 28px rgba(0,0,0,.22);
}
.inst-banner-sub {
  margin: 0;

  font-size: clamp(1.4rem, 2.5vw, 2.2rem);

  line-height: 1.1;

  font-weight: 500;

  font-style: normal;

  letter-spacing: -0.01em;

  color: #f5f5f5;

  text-shadow:
    0 2px 10px rgba(0,0,0,.45),
    0 6px 20px rgba(0,0,0,.22);
}
.bl-icon i {
  font-size: 2.8rem;
  color: #b8ff2c;

  text-shadow:
    0 0 8px rgba(184,255,44,0.9),
    0 0 18px rgba(184,255,44,0.45);
}
/* ================================TERCERA SESIÓN - POR QUÉ ENTRENAR EN BODYLIFE ================================ */

.bl-why-section {
  position: relative;
  width: 100%;
  min-height: 100vh;

  padding: 7rem 0 7rem;

  overflow: hidden;

  background:
  radial-gradient(
      circle at top right,
      rgba(184,255,44,0.06),
      transparent 30%
  ),

  radial-gradient(
      circle at bottom left,
      rgba(255,255,255,0.03),
      transparent 28%
  ),

  linear-gradient(
      180deg,
      #070707 0%,
      #0d0d0d 35%,
      #101010 65%,
      #080808 100%
  );

  color: #fff;
}
.bl-why-section::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
      linear-gradient(
          90deg,
          transparent 0%,
          rgba(255,255,255,0.015) 50%,
          transparent 100%
      );

  pointer-events: none;

  z-index: 0;
}

.bl-why-section::before {
  content: "BODYLIFE";
  position: absolute;
  left: -35px;
  top: 70px;
  writing-mode: vertical-rl;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(184,255,44,0.28);
  opacity: 1;
  z-index: 1;
  filter:
    drop-shadow(0 0 10px rgba(184,255,44,0.06));
  text-shadow:
    0 0 18px rgba(184,255,44,0.06);
    
}
.bl-why-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: center;

  width: 100%;
  max-width: 100%;

  padding: 0 2rem;
  margin: 0 auto 2rem;

  min-height: 500px;
}

.bl-why-left {
  padding-left: 12rem;
}

.bl-why-mini {
  display: block;
  margin-bottom: 0.8rem;
  font-size: clamp(1rem, 1.6vw, 1.6rem);
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.86);
}
.bl-why-left h2 {
  margin: 0;

  font-size: clamp(3.2rem, 7vw, 6.8rem);

  line-height: 0.9;

  font-weight: 900;

  font-style: italic;

  letter-spacing: -0.05em;

  color: #fff;

  text-shadow: 0 12px 35px rgba(0,0,0,0.7);
}

.bl-why-left h2 span {
  color: #b8ff2c;
  text-shadow:
      0 0 18px rgba(184, 255, 44, 0.35),
      0 12px 35px rgba(0,0,0,0.8);
}

.bl-why-left p {
  max-width: 680px;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.35;
  color: rgba(255,255,255,0.88);
}

.bl-why-left p strong {
  color: #b8ff2c;
  font-weight: 800;
}

.bl-why-image {
  min-height: 580px;
  grid-template-columns: 0.8fr 1.4fr;
  border-radius: 0 0 0 90px;

  background:
  linear-gradient(
      90deg,
      rgba(0,0,0,0.98) 0%,
      rgba(0,0,0,0.82) 6%,
      rgba(0,0,0,0.55) 14%,
      rgba(0,0,0,0.22) 24%,
      rgba(0,0,0,0.05) 100%
  ),
  url("../img/instalaciones_blanco_negro_2.png");

  background-size: cover;
  background-position: center;

  box-shadow:
      inset 0 0 90px rgba(0,0,0,0.85),
      0 30px 70px rgba(0,0,0,0.55);

  position: relative;
}

.bl-why-image::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  width: 8px;
  background: #b8ff2c;
  transform: skewX(-18deg);
  box-shadow: 0 0 25px rgba(184,255,44,0.55);

    top: -35px;
    height: calc(100% + 70px);
  }


/* CARDS */

.bl-why-cards {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 100%;

  padding: 0 2rem;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(6, 1fr);

  border: 1px solid rgba(184, 255, 44, 0.16);

  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
}

.bl-why-card {
  position: relative;
  min-height: 460px;
  padding: 2rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  background-size: cover;
  background-position: center;
  overflow: hidden;

  border-right: 1px solid rgba(255,255,255,0.14);
  text-align: center;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.bl-why-card:last-child {
  border-right: none;
}

.bl-why-card:hover {
  transform: translateY(-8px);
  filter: brightness(1.1);
}

.bl-why-overlay {
  position: absolute;
  inset: 0;
  background:
      linear-gradient(180deg, rgba(4,4,4,0.92) 0%, rgba(5,5,5,0.72) 42%, rgba(5,5,5,0.4) 100%),
      linear-gradient(0deg, rgba(184,255,44,0.12), transparent 45%);
  z-index: 1;
}

.bl-why-icon,
.bl-why-card h3,
.bl-why-card span,
.bl-why-card p {
  position: relative;
  z-index: 2;
}

.bl-why-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 1.4rem;
  border: 2px solid #b8ff2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8ff2c;
  font-size: 2rem;
  box-shadow:
      0 0 20px rgba(184,255,44,0.22),
      inset 0 0 16px rgba(184,255,44,0.08);
}

.bl-why-card h3 {
  margin: 0;
  min-height: 72px;
  font-size: clamp(1rem, 1.15vw, 1.45rem);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 8px 22px rgba(0,0,0,0.9);
}

.bl-why-card span {
  display: block;
  width: 40px;
  height: 3px;
  margin: 1.1rem 0 1.3rem;
  background: #b8ff2c;
  box-shadow: 0 0 14px rgba(184,255,44,0.7);
}

.bl-why-card p {
  position: relative;
  z-index: 3;

  margin: 0;

  padding: 0 0.4rem;

  color: rgba(255,255,255,0.96);

  font-size: 1.08rem;

  line-height: 1.75;

  font-weight: 500;

  text-align: center;

  text-shadow:
      0 2px 10px rgba(0,0,0,0.95),
      0 4px 22px rgba(0,0,0,0.95),
      0 0 30px rgba(0,0,0,0.75);

  max-width: 290px;

  margin-inline: auto;
}
.bl-why-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
      linear-gradient(
          180deg,
          rgba(0,0,0,0.30) 0%,
          rgba(0,0,0,0.58) 45%,
          rgba(0,0,0,0.78) 100%
      );

  z-index: 1;
}

/* BOTTOM */

.bl-why-bottom {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  border: 1px solid rgba(184,255,44,0.55);
  transform: skewX(-18deg);
  background: rgba(0,0,0,0.72);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
    overflow: hidden;
  }
  .bl-why-bottom::before {
    content: "";
  
    position: absolute;
  
    top: -120%;
    left: -35%;
  
    width: 140px;
    height: 320%;
  
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.02) 20%,
            rgba(184,255,44,0.10) 35%,
            rgba(255,255,255,0.55) 50%,
            rgba(184,255,44,0.12) 65%,
            transparent 100%
        );
  
    transform: rotate(18deg);
  
    filter:
        blur(10px)
        drop-shadow(0 0 18px rgba(184,255,44,0.45));
  
    animation: blLightSweep 4.5s linear infinite;
  
    pointer-events: none;
  
    z-index: 2;
  }
  @keyframes blLightSweep {

    0% {
        left: -45%;
        opacity: 0;
    }
  
    8% {
        opacity: 1;
    }
  
    50% {
        opacity: 1;
    }
  
    100% {
        left: 130%;
        opacity: 0;
    }
  }


.bl-why-bottom p {
  margin: 0;
  transform: skewX(18deg);
  text-align: center;
  font-size: clamp(1rem, 1.6vw, 1.7rem);
  letter-spacing: 0.35em;
  color: #fff;
}

.bl-why-bottom strong {
  color: #b8ff2c;
  font-weight: 800;
}
/*--------------------------------------------------FLECHA DE SIGUIENTE-------------------------------*/

.bl-next-services {
  position: absolute;
  right: 55px;
  bottom: 40px;
  z-index: 15;
}

.bl-next-services a {
  position: relative;

  height: 58px;
  min-width: 185px;

  padding: 0 70px 0 30px;

  display: flex;
  align-items: center;

  border-radius: 999px;

  overflow: hidden;

  text-decoration: none;

  background:
      linear-gradient(
          135deg,
          #a7e61f 0%,
          #8ccc12 100%
      );

  box-shadow:
      0 14px 30px rgba(0,0,0,0.42),
      0 0 18px rgba(184,255,44,0.12);

  transition:
      transform .28s ease,
      box-shadow .28s ease;
}

/* RAFAGA DE LUZ */

.bl-next-services a::before {
  content: "";

  position: absolute;

  top: -40%;
  left: -120px;

  width: 70px;
  height: 180%;

  background:
      linear-gradient(
          90deg,
          rgba(255,255,255,0) 0%,
          rgba(255,255,255,0.45) 50%,
          rgba(255,255,255,0) 100%
      );

  transform: rotate(18deg);

  filter: blur(8px);

  animation: blNextLight 3.8s linear infinite;
}

@keyframes blNextLight {

  0% {
      left: -140px;
  }

  100% {
      left: 140%;
  }
}

.bl-next-services a:hover {
  transform: translateY(-6px);

  box-shadow:
      0 22px 44px rgba(0,0,0,0.52),
      0 0 24px rgba(184,255,44,0.18);
}

/* TEXTO */

.bl-next-services a span {
  font-size: 1.02rem;

  font-weight: 900;

  letter-spacing: 0.14em;

  color: #111;

  position: relative;
  z-index: 3;
}

/* CIRCULO */

.bl-next-circle {
  position: absolute;

  right: -6px;
  top: 50%;

  transform: translateY(-50%);

  width: 66px;
  height: 66px;

  border-radius: 50%;

  background:
      linear-gradient(
          135deg,
          #b4f52c 0%,
          #8fd114 100%
      );

  border: 4px solid rgba(78,115,0,0.45);

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

  box-shadow:
      0 0 18px rgba(184,255,44,0.18);

  z-index: 4;
}

.bl-next-circle i {
  font-size: 1.6rem;

  color: #fff;

  text-shadow:
      0 2px 8px rgba(0,0,0,0.35);
}
/*---------------------------------------------------------SIMBOLO QUE BAJAR FLOTANTE-----------------------------------*/

.bl-scroll-force {
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  z-index: 50;

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

  color: #b8ff2c;
  font-size: 30px;
  text-decoration: none;

  background: transparent;
  border: none;
  box-shadow: none;

  animation: blArrowFloat 1.6s ease-in-out infinite;
  transition: all 0.3s ease;
}

.bl-scroll-force:hover {
  color: #d4ff5c;
  transform: translateX(-50%) scale(1.12);
}

@keyframes blArrowFloat {
  0%, 100% {
      transform: translate(-50%, 0);
  }

  50% {
      transform: translate(-50%, 8px);
  }
}
/* =========================================================RESPONSIVE COMPLETO INSTALACIONES.CSS ========================================================= */

/* ===== PANTALLAS GRANDES ===== */
@media (max-width: 1600px) {
  .bl-strength-header h2 {
    font-size: clamp(3rem, 5.2vw, 5.4rem);
  }

  .bl-strength-cards {
    gap: 18px;
  }

  .bl-card {
    min-height: 280px;
  }

  .bl-why-left {
    padding-left: 8rem;
  }

  .bl-why-card {
    min-height: 420px;
  }
}

/* ===== PORTÁTILES / TABLETS GRANDES ===== */
@media (max-width: 1200px) {
  .instalaciones-caption {
    right: 40px;
    bottom: 80px;
    width: 48%;
    padding: 20px 26px;
  }

  .inst-banner-card-wrap {
    width: 520px;
    max-width: 70%;
  }

  .inst-banner-card {
    min-height: 125px;
    padding: 1.2rem 1.7rem;
  }

  .inst-banner-triangle {
    right: -130px;
    width: 130px;
  }

  .bl-strength-section {
    padding: 65px 3vw 50px;
  }

  .bl-strength-cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 55px;
  }

  .bl-strength-bottom {
    grid-template-columns: repeat(3, 1fr);
  }

  .bl-bottom-title,
  .bl-bottom-item,
  .bl-bottom-brand {
    min-height: 135px;
    border-right: 1px solid rgba(184,255,44,0.28);
  }

  .bl-why-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bl-why-left {
    padding-left: 5rem;
  }

  .bl-why-image {
    min-height: 500px;
  }

  .bl-why-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .footer-info {
    transform: none;
  }

  .footer-contact-block h5,
  .footer-phone {
    transform: none;
  }
}

/* ===== TABLETS ===== */
@media (max-width: 992px) {
  .instalaciones-hero,
  #carouselInstalaciones,
  #carouselInstalaciones .carousel-inner,
  #carouselInstalaciones .carousel-item,
  #carouselInstalaciones .carousel-item img {
    height: 100vh;
    min-height: 620px;
  }

  .instalaciones-caption {
    left: 50%;
    right: auto;
    bottom: 95px;
    transform: translateX(-50%);
    width: 82%;
    max-width: 680px;
    text-align: center;
    padding: 20px 24px;
  }

  .instalaciones-caption h1,
  .instalaciones-caption p {
    margin-left: 0;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }

  .inst-banner-section {
    bottom: 70px;
  }

  .inst-banner-card-wrap {
    width: 440px;
    max-width: 78%;
  }

  .inst-banner-card {
    min-height: 110px;
    padding: 1rem 1.4rem;
  }

  .inst-banner-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .inst-banner-sub {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
  }

  .inst-banner-triangle {
    right: -95px;
    width: 95px;
  }

  .bl-strength-bg {
    background-position: 70% center;
  }

  .bl-strength-dark {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.62) 45%,
        rgba(0,0,0,0.88) 100%
      ),
      radial-gradient(
        circle at 35% 20%,
        rgba(184,255,44,0.10),
        transparent 30%
      );
  }

  .bl-strength-header {
    max-width: 100%;
    text-align: center;
  }

  .bl-strength-header h2 {
    max-width: 100%;
    letter-spacing: -2.5px;
  }

  .bl-strength-header p {
    max-width: 100%;
    padding: 22px 24px;
    font-size: 1.1rem;
  }

  .bl-strength-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .bl-bottom-title,
  .bl-bottom-item,
  .bl-bottom-brand {
    min-height: 125px;
    padding: 22px 18px;
  }

  .bl-why-section {
    padding: 5rem 0;
  }

  .bl-why-section::before {
    opacity: 0.35;
    left: -45px;
  }

  .bl-why-left {
    padding-left: 3rem;
    padding-right: 1rem;
  }

  .bl-why-left h2 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .bl-why-left p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  }

  .bl-why-image {
    min-height: 430px;
    border-radius: 0 0 0 55px;
  }

  .bl-why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .bl-why-card {
    min-height: 390px;
  }

  .bl-next-services {
    right: 30px;
    bottom: 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block {
    align-items: center;
    text-align: center;
  }
}

/* ===== MÓVILES GRANDES ===== */
@media (max-width: 768px) {
  .instalaciones-page {
    overflow-x: hidden;
  }

  .instalaciones-caption {
    width: calc(100% - 34px);
    bottom: 105px;
    border-radius: 16px;
    padding: 18px 18px;
    background: rgba(0,0,0,0.55);
  }

  .instalaciones-caption h1 {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }

  .instalaciones-caption p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .carousel-indicators {
    bottom: 45px;
  }

  .carousel-indicators [data-bs-target] {
    width: 24px;
    height: 3px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 26px;
    height: 26px;
  }

  .bl-scroll-force {
    bottom: 20px;
    font-size: 26px;
  }

  .inst-banner-section {
    position: relative;
    bottom: auto;
    padding: 0;
    margin-top: -1px;
  }

  .inst-banner-card-wrap {
    width: 100%;
    max-width: 100%;
  }

  .inst-banner-card {
    min-height: auto;
    padding: 1rem 1.2rem;
  }

  .inst-banner-triangle {
    display: none;
  }

  .inst-banner-title {
    font-size: 2.1rem;
    letter-spacing: -0.04em;
  }

  .inst-banner-title span {
    margin: 0 8px;
    transform: translateY(-6px);
  }

  .inst-banner-sub {
    font-size: 1.15rem;
  }

  .bl-strength-section {
    padding: 55px 18px 45px;
  }

  .bl-strength-bg {
    background-position: center;
    transform: none;
  }

  .bl-strength-header span {
    font-size: .8rem;
    margin-bottom: 18px;
  }

  .bl-strength-header h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
    line-height: .95;
    letter-spacing: -2px;
  }

  .bl-strength-header p {
    padding: 18px 18px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .bl-strength-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 38px;
  }

  .bl-card {
    min-height: auto;
    padding: 26px 20px;
  }

  .bl-card h3 {
    font-size: 1.35rem;
  }

  .bl-card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .bl-icon i {
    font-size: 2.6rem;
  }

  .bl-strength-bottom {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .bl-bottom-title,
  .bl-bottom-item,
  .bl-bottom-brand {
    min-height: auto;
    padding: 22px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(184,255,44,0.28);
  }

  .bl-bottom-brand {
    border-bottom: none;
  }

  .bl-why-section {
    padding: 4rem 0;
  }

  .bl-why-section::before {
    display: none;
  }

  .bl-why-hero {
    padding: 0 1rem;
    min-height: auto;
  }

  .bl-why-left {
    padding: 0;
    text-align: center;
  }

  .bl-why-mini {
    font-size: .95rem;
    letter-spacing: .22em;
  }

  .bl-why-left h2 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .bl-why-left p {
    margin: 1rem auto 0;
    font-size: 1.1rem;
  }

  .bl-why-image {
    min-height: 360px;
    border-radius: 0 0 0 35px;
    background-position: center;
  }

  .bl-why-image::after {
    right: 18px;
    width: 6px;
  }

  .bl-why-cards {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    border: none;
    gap: 16px;
    box-shadow: none;
  }

  .bl-why-card {
    min-height: 330px;
    border-right: none;
    border: 1px solid rgba(184,255,44,0.18);
    border-radius: 18px;
  }

  .bl-why-card h3 {
    min-height: auto;
    font-size: 1.25rem;
  }

  .bl-why-card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .bl-why-bottom {
    max-width: calc(100% - 32px);
    transform: none;
    padding: 1rem;
  }

  .bl-why-bottom p {
    transform: none;
    letter-spacing: .18em;
    font-size: .95rem;
  }

  .bl-next-services {
    position: relative;
    right: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
    margin: 2rem auto 0;
  }

  .bl-next-services a {
    height: 52px;
    min-width: 165px;
    padding: 0 58px 0 22px;
  }

  .bl-next-services a span {
    font-size: .9rem;
  }

  .bl-next-circle {
    width: 58px;
    height: 58px;
  }

  .footer-main {
    padding: 2rem 0 1rem;
  }

  .footer-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-logo {
    width: 52px;
    height: 52px;
  }

  .footer-brand-text h4 {
    font-size: 1.55rem;
  }

  .footer-brand-text p,
  .footer-info p,
  .footer-phone {
    font-size: .92rem;
  }

  .footer-info h5,
  .footer-contact-block h5 {
    font-size: 1.15rem;
    transform: none;
  }

  .footer-social a {
    width: 46px;
    height: 46px;
  }

  .footer-social a i {
    font-size: 18px;
  }
}

/* ===== MÓVILES PEQUEÑOS ===== */
@media (max-width: 576px) {
  .instalaciones-hero,
  #carouselInstalaciones,
  #carouselInstalaciones .carousel-inner,
  #carouselInstalaciones .carousel-item,
  #carouselInstalaciones .carousel-item img {
    min-height: 620px;
  }

  .instalaciones-caption {
    bottom: 90px;
    width: calc(100% - 24px);
    padding: 16px 15px;
  }

  .instalaciones-caption h1 {
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .instalaciones-caption p {
    font-size: .92rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 14%;
  }

  .inst-banner-title {
    font-size: 1.75rem;
  }

  .inst-banner-sub {
    font-size: 1rem;
  }

  .bl-strength-section {
    padding: 48px 14px 38px;
  }

  .bl-strength-header h2 {
    font-size: 2.55rem;
  }

  .bl-strength-header p {
    font-size: .95rem;
    padding: 16px;
  }

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

  .bl-bottom-title h3 {
    font-size: 1.15rem;
  }

  .bl-bottom-title strong {
    font-size: 1.35rem;
  }

  .bl-bottom-item div {
    font-size: 1.8rem;
  }

  .bl-bottom-item p {
    font-size: .95rem;
  }

  .bl-bottom-brand h4 {
    font-size: 1.45rem;
  }

  .bl-why-image {
    min-height: 300px;
  }

  .bl-why-icon {
    width: 64px;
    height: 64px;
    font-size: 1.65rem;
  }

  .bl-why-card {
    min-height: 300px;
    padding: 1.6rem 1rem;
  }

  .bl-why-bottom p {
    letter-spacing: .08em;
  }

  .footer-links {
    gap: .65rem;
  }

  .footer-links a,
  .footer-bottom p {
    font-size: .82rem;
  }
}

/* ===== MÓVILES MUY PEQUEÑOS ===== */
@media (max-width: 400px) {
  .instalaciones-caption h1 {
    font-size: 1.35rem;
  }

  .instalaciones-caption p {
    font-size: .86rem;
  }

  .inst-banner-title {
    font-size: 1.55rem;
  }

  .inst-banner-sub {
    font-size: .92rem;
  }

  .bl-strength-header h2 {
    font-size: 2.25rem;
  }

  .bl-card h3 {
    font-size: 1.15rem;
  }

  .bl-card p {
    font-size: .92rem;
  }

  .bl-why-left h2 {
    font-size: 2.25rem;
  }

  .bl-why-left p {
    font-size: .98rem;
  }

  .bl-next-services a {
    min-width: 145px;
    height: 48px;
    padding: 0 50px 0 18px;
  }

  .bl-next-circle {
    width: 52px;
    height: 52px;
  }

  .footer-brand-text h4 {
    font-size: 1.35rem;
  }
}

/* ===== MÓVIL HORIZONTAL ===== */
@media (max-height: 520px) and (orientation: landscape) {
  .instalaciones-hero,
  #carouselInstalaciones,
  #carouselInstalaciones .carousel-inner,
  #carouselInstalaciones .carousel-item,
  #carouselInstalaciones .carousel-item img {
    height: 120vh;
    min-height: 560px;
  }

  .instalaciones-caption {
    bottom: 65px;
    padding: 14px 18px;
  }

  .instalaciones-caption h1 {
    font-size: 1.35rem;
  }

  .instalaciones-caption p {
    font-size: .9rem;
  }

  .bl-scroll-force {
    bottom: 12px;
  }
}
/* =========================
   CARRUSEL MÁS PEQUEÑO EN MÓVILES
========================= */

@media (max-width: 768px) {

  .instalaciones-hero,
  #carouselInstalaciones,
  #carouselInstalaciones .carousel-inner,
  #carouselInstalaciones .carousel-item {
    height: 72vh;
    min-height: 520px;
  }

  #carouselInstalaciones .carousel-item img {
    height: 72vh;
    min-height: 520px;

    object-fit: cover;
    object-position: center;
  }

  .instalaciones-caption {
    bottom: 70px;
  }

}

/* MÓVILES PEQUEÑOS */

@media (max-width: 400px) {

  .instalaciones-hero,
  #carouselInstalaciones,
  #carouselInstalaciones .carousel-inner,
  #carouselInstalaciones .carousel-item {
    height: 55vh;
    min-height: 400px;
  }

  #carouselInstalaciones .carousel-item img {
    height: 65vh;
    min-height: 470px;
  }

}
/* =========================
   CARDS MÁS PEQUEÑAS EN MÓVILES
========================= */

@media (max-width: 768px) {

  .bl-strength-cards {
    gap: 12px;
    margin-top: 28px;
  }

  .bl-card {
    min-height: 220px;

    padding: 18px 16px;

    border-radius: 16px;
  }

  .bl-icon {
    margin-bottom: 14px;
  }

  .bl-icon i {
    font-size: 2rem;
  }

  .bl-card h3 {
    font-size: 1.15rem;

    line-height: 1.2;

    margin-bottom: 12px;
  }

  .bl-card p {
    font-size: 0.92rem;

    line-height: 1.55;
  }

  .bl-card span {
    width: 55px;

    margin-top: 18px;
  }

}

/* MÓVILES PEQUEÑOS */

@media (max-width: 400px) {

  .bl-card {
    min-height: 175px;

    padding: 12px 10px;
  }

  .bl-icon i {
    font-size: 1.5rem;
  }

  .bl-card h3 {
    font-size: 0.90rem;
  }

  .bl-card p {
    font-size: 0.85rem;

    line-height: 1.45;
  }

}
/* =========================
   CAJAS MÁS PEQUEÑAS EN MÓVILES
========================= */

@media (max-width: 768px) {

  .bl-why-cards {
    gap: 12px;

    padding: 0 14px;
  }

  .bl-why-card {
    min-height: 240px;

    padding: 1.2rem 1rem;

    border-radius: 18px;
  }

  .bl-why-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 14px;

    font-size: 1.4rem;
  }

  .bl-why-card h3 {
    min-height: auto;

    font-size: 1.15rem;

    line-height: 1.1;

    margin-bottom: 10px;
  }

  .bl-why-card span {
    width: 45px;

    margin: 0.8rem 0 1rem;
  }

  .bl-why-card p {
    font-size: 0.9rem;

    line-height: 1.5;

    max-width: 100%;
  }

}

/* MÓVILES PEQUEÑOS */

@media (max-width: 480px) {

  .bl-why-card {
    min-height: 210px;

    padding: 1rem 0.9rem;
  }

  .bl-why-icon {
    width: 50px;
    height: 50px;

    font-size: 1.2rem;
  }

  .bl-why-card h3 {
    font-size: 1rem;
  }

  .bl-why-card p {
    font-size: 0.82rem;

    line-height: 1.4;
  }

}
/* =========================
   MOSTRAR MÁS LA IMAGEN DE FONDO EN MÓVILES
========================= */

@media (max-width: 768px) {

  .bl-why-card {
    background-position: center;
    background-size: cover;
  }

  .bl-why-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.62) 0%,
        rgba(0,0,0,0.45) 45%,
        rgba(0,0,0,0.68) 100%
      ),
      linear-gradient(
        0deg,
        rgba(184,255,44,0.05),
        transparent 45%
      );
  }

  .bl-why-card::before {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.58) 100%
      );
  }

}
/* =========================
   MOSTRAR LA FOTO COMPLETA EN MÓVILES
========================= */

@media (max-width: 768px) {

  .bl-strength-bg {

    background-size: cover;

    background-position: center top;

    transform: scale(1);

    opacity: 1;
  }

  .bl-strength-dark {

    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.35) 35%,
        rgba(0,0,0,0.60) 100%
      ),

      radial-gradient(
        circle at 30% 20%,
        rgba(184,255,44,0.06),
        transparent 30%
      );
  }

  .bl-strength-section {

    padding-top: 45px;

    padding-bottom: 35px;
  }

}

/* MÓVILES PEQUEÑOS */

@media (max-width: 400px) {

  .bl-strength-bg {

    background-size: cover;

    background-position: center center;
  }

  .bl-strength-dark {

    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.30) 0%,
        rgba(0,0,0,0.28) 35%,
        rgba(0,0,0,0.52) 100%
      );
  }

}
/* =========================
   FOTO MÁS PEQUEÑA EN MÓVILES
========================= */

@media (max-width: 768px) {

  .bl-strength-bg {

    background-size: 110%;

    background-position: center top;
  }

}

/* MÓVILES PEQUEÑOS */

@media (max-width: 480px) {

  .bl-strength-bg {

    background-size: 105%;

    background-position: center top;
  }

  
}

/* =========================
   TEXO MÁS PEQUEÑO EN MÓVILES
========================= */

@media (max-width: 768px) {

  .instalaciones-caption h1 {

    font-size: 1.45rem;

    line-height: 1.05;

    margin-bottom: 8px;
  }

  .instalaciones-caption p {

    font-size: 0.82rem;

    line-height: 1.3;
  }

}

/* MÓVILES PEQUEÑOS */

@media (max-width: 480px) {

  .instalaciones-caption h1 {

    font-size: 1.2rem;

    line-height: 1;
  }

  .instalaciones-caption p {

    font-size: 0.72rem;

    line-height: 1.2;
  }

  /* ==================================================
   IPHONE SE - CAJA DE TEXTO MÁS PEQUEÑA
================================================== */

@media (max-width: 380px) {

  .bl-strength-header p {

    max-width: 92%;

    padding: 14px 16px;

    font-size: 0.82rem;

    line-height: 1.55;

    border-radius: 18px;

    margin: 12px auto 0;
  }

}
}
/* ==================================================
   FORZAR CAJAS MÁS PEQUEÑAS EN IPHONE
================================================== */

@media screen and (max-width: 430px) {

  .bl-strength-cards .bl-card {

    min-height: 150px !important;

    padding: 12px 10px !important;

    border-radius: 16px !important;
  }

  .bl-strength-cards .bl-card h3 {

    font-size: 0.9rem !important;

    line-height: 1.05 !important;

    margin-bottom: 8px !important;
  }

  .bl-strength-cards .bl-card p {

    font-size: 0.72rem !important;

    line-height: 1.3 !important;
  }

  .bl-strength-cards .bl-icon {

    margin-bottom: 8px !important;
  }

  .bl-strength-cards .bl-icon i {

    font-size: 1.7rem !important;
  }

  .bl-strength-cards .bl-card span {

    width: 42px !important;

    margin-top: 10px !important;
  }

}

/* ==================================================
   ICONOS IMG MÁS PEQUEÑOS EN MÓVILES
================================================== */

@media screen and (max-width: 430px) {

  .bl-strength-cards .bl-icon {

    width: 42px !important;
    height: 42px !important;

    margin-bottom: 6px !important;
  }

  .bl-strength-cards .bl-icon img {

    width: 22px !important;
    height: 22px !important;

    object-fit: contain !important;
  }

}
/* ==================================================
   CAJAS MÁS ESTRECHAS EN MÓVILES
================================================== */

@media screen and (max-width: 430px) {

  .bl-strength-section {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .bl-strength-cards {
    gap: 8px !important;

    margin-top: 18px !important;
  }

  .bl-strength-cards .bl-card {

    width: 80% !important;

    margin: 0 auto !important;

    padding-left: 10px !important;
    padding-right: 10px !important;
  }

}
/* ==================================================
   MÁS ESTRECHAS DE LOS LADOS EN MÓVILES
================================================== */

@media screen and (max-width: 430px) {

  .bl-strength-bottom {

    width: 82% !important;

    margin: 18px auto 0 !important;
  }

  .bl-bottom-item,
  .bl-bottom-brand {

    width: 100% !important;

    padding-left: 8px !important;
    padding-right: 8px !important;
  }

}
/* ==================================================
   IPAD MINI - CAJAS MÁS ESTRECHAS
================================================== */

@media screen and (min-width: 700px) and (max-width: 820px) {

  .bl-strength-cards {

    width: 82% !important;

    margin: 22px auto 0 !important;

    gap: 14px !important;
  }

  .bl-strength-cards .bl-card {

    width: 100% !important;

    margin: 0 auto !important;

    padding-left: 18px !important;
    padding-right: 18px !important;
  }

}
/* ==================================================
   IPAD MINI - CAJAS INFERIORES MÁS ESTRECHAS
================================================== */

@media screen and (min-width: 700px) and (max-width: 820px) {

  .bl-strength-bottom {

    width: 78% !important;

    margin: 20px auto 0 !important;
  }

  .bl-bottom-title,
  .bl-bottom-item,
  .bl-bottom-brand {

    padding-left: 14px !important;
    padding-right: 14px !important;

    min-height: 110px !important;
  }

}
/* ==================================================
   SURFACE PRO 7 - RESPONSIVE CARRUSEL / BANNER
================================================== */

@media screen and (min-width: 850px) and (max-width: 950px) {

  .instalaciones-hero,
  #carouselInstalaciones,
  #carouselInstalaciones .carousel-inner,
  #carouselInstalaciones .carousel-item {
    height: 78vh !important;
    min-height: 720px !important;
  }

  #carouselInstalaciones .carousel-item img {
    height: 78vh !important;
    min-height: 720px !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .inst-banner-section {
    bottom: 55px !important;
  }

  .inst-banner-card-wrap {
    width: 430px !important;
    max-width: 62% !important;
  }

  .inst-banner-card {
    min-height: 78px !important;
    padding: 0.7rem 1rem !important;
  }

  .inst-banner-triangle {
    right: -70px !important;
    width: 70px !important;
  }

  .inst-banner-title {
    font-size: 1.65rem !important;
    line-height: 0.9 !important;
    margin-bottom: 0.25rem !important;
  }

  .inst-banner-sub {
    font-size: 0.9rem !important;
    line-height: 1.1 !important;
  }

  .carousel-indicators {
    bottom: 22px !important;
  }

  .bl-scroll-force {
    bottom: 5px !important;
    font-size: 24px !important;
  } }
/* ==================================================
   SURFACE PRO 7 - BAJAR MÁS EL BANNER
================================================== */

@media screen and (min-width: 600px) and (max-width: 950px) {

  .inst-banner-section {

    bottom: 5px !important;
  }

}
/* ==================================================
   ASUS ZENBOOK FOLD - BAJAR MÁS EL BANNER
================================================== */

@media screen and (min-width: 820px) and (max-width: 880px) {

  .inst-banner-section {

    bottom: -1090px !important;
  }

}
/* ==================================================
   ASUS ZENBOOK / SURFACE - FONDO MÁS CLARO
================================================== */

@media screen and (min-width: 820px) and (max-width: 950px) {

  .bl-strength-dark {

    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.20) 0%,
        rgba(0,0,0,0.15) 35%,
        rgba(0,0,0,0.45) 100%
      ),

      radial-gradient(
        circle at 30% 20%,
        rgba(184,255,44,0.08),
        transparent 35%
      );
  }

}
/* ========================= ================ ================ ================ FOOTER RESPONSIVE MÓVIL========================= */

@media (max-width: 768px){

  .footer-main{
    padding: 2.2rem 0 1.2rem;
    overflow: hidden;
  }

  .footer-container{
    width: 100%;
    padding: 0 18px !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }

  .footer-top{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block{
    width: 100% !important;
    max-width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    margin: 0 auto !important;
    padding: 0 !important;

    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

  .footer-logo{
    width: 54px;
    height: 54px;
    margin: 0 auto .7rem !important;
  }

  .footer-brand-text h4{
    font-size: 1.55rem;
    line-height: 1.15;
  }

  .footer-brand-text p{
    font-size: .9rem;
    line-height: 1.35;
  }

  .footer-info{
    overflow: hidden;
  }

  .footer-info h5,
  .footer-contact-block h5{
    font-size: 1.35rem;
    margin-bottom: .6rem;
  }

  .footer-info p{
    width: 100%;
    max-width: 310px;

    margin: 0 auto .75rem;

    font-size: .88rem;
    line-height: 1.55;

    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .footer-location,
  .footer-phone{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: .9rem;

    position: static !important;
    left: auto !important;
    transform: none !important;
  }

  .footer-social{
    width: 100% !important;

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

    gap: .9rem;
    margin-top: .9rem;
  }

  .footer-social a{
    width: 48px;
    height: 48px;
  }

  .footer-social a i{
    font-size: 18px;
  }

  .footer-bottom{
    margin-top: 2rem;
    padding-top: 1.4rem;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    gap: .9rem;

    text-align: center !important;
  }

  .footer-author{
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;

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

    margin: 0 auto !important;
    text-align: center !important;
  }

  .footer-author-content{
    align-items: center !important;
    text-align: center !important;
  }

  .footer-author-mini{
    font-size: .55rem;
  }

  .footer-author-name{
    font-size: .9rem;
  }

  .footer-author-phone{
    font-size: .85rem;
  }

  .footer-bottom p{
    width: 100%;
    max-width: 320px;

    margin: 0 auto;

    font-size: .92rem;
    line-height: 1.45;

    text-align: center;
  }

  .footer-links{
    width: 100%;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    gap: .65rem;
  }

  .footer-links a{
    font-size: .95rem;
  }
}
@media (max-width:768px){

  .footer-info p{
    max-width:280px;
    margin:auto;
  }

  .footer-bottom{
    padding-top:1.7rem;
  }

  .footer-links{
    margin-top:.4rem;
  }

}
@media (max-width:768px){

  .footer-main *{
    transform:none !important;
  }

  .footer-container{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block,
  .footer-bottom,
  .footer-author,
  .footer-links{
    width:100% !important;
    max-width:100% !important;

    margin-left:auto !important;
    margin-right:auto !important;

    left:auto !important;
    right:auto !important;

    text-align:center !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .footer-info p{
    max-width:270px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .footer-social{
    justify-content:center !important;
  }
  .footer-contact-block{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    margin:0 auto !important;
    padding:0 !important;

    left:auto !important;
    right:auto !important;
    transform:none !important;
  }

  .footer-contact-block h5,
  .footer-phone,
  .footer-social{
    position:static !important;

    left:auto !important;
    right:auto !important;
    transform:none !important;

    margin-left:auto !important;
    margin-right:auto !important;

    text-align:center !important;
    justify-content:center !important;
  }

  .footer-social{
    width:100% !important;
  }
}
@media (max-width:768px){

  .footer-author{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    margin:0 auto !important;

    position:static !important;
    left:auto !important;
    transform:none !important;
  }

  .footer-author-content{
    width:100%;

    display:flex;
    flex-direction:column;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;
  }

  .footer-author-line{
    display:none;
  }

  .footer-author-mini,
  .footer-author-name,
  .footer-author-phone{
    text-align:center !important;

    margin-left:auto !important;
    margin-right:auto !important;

    left:auto !important;
    transform:none !important;
  }
}
/* =========================
   FOOTER RESPONSIVE FINAL
========================= */

@media (max-width: 1200px){

  .footer-main{
    padding: 2.4rem 0 1.5rem;
  }

  .footer-container{
    width: 100%;
    padding: 0 22px !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }

  .footer-top{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.7rem !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block{
    width: 100% !important;
    max-width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    margin: 0 auto !important;
    padding: 0 !important;

    position: static !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .footer-logo{
    margin: 0 auto .65rem !important;
  }

  .footer-info p{
    max-width: 330px !important;
    margin: 0 auto .7rem !important;
    text-align: center !important;
  }

  .footer-phone{
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;

    position: static !important;
    left: auto !important;
    transform: none !important;
  }

  .footer-social{
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: .85rem !important;
  }

  .footer-bottom{
    width: 100% !important;

    margin-top: 2rem !important;
    padding-top: 1.35rem !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    gap: .85rem !important;

    text-align: center !important;
  }

  .footer-author{
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    margin: 0 auto !important;

    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .footer-author-line{
    display: none !important;
  }

  .footer-author-content{
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
  }

  .footer-author-mini,
  .footer-author-name,
  .footer-author-phone{
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
  }

  .footer-bottom p{
    max-width: 360px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .footer-links{
    width: 100% !important;

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

    flex-wrap: wrap !important;
    gap: 1rem !important;

    margin: 0 auto !important;
    text-align: center !important;
  }
  
}
.footer-author-mini {
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .32em;
  color: rgba(255,255,255,.35);
}

.footer-author-name {
  font-size: .85rem;
  font-weight: 800;
  color: rgba(255,255,255,.35);
}
.footer-author-phone {
  font-size: .82rem;

  color: rgba(255,255,255,.35);
  text-decoration: none;

  text-shadow:
    0 0 8px rgba(255,255,255,.04);
}