:root {
  --accent: #b8ff2c;
}

/* =========================
   RESET SOLO SERVICIOS
========================= */
/* AHORA */
.page-servicios {
  margin: 0;
  background: #0b0c0f;
  color: #fff;
  overflow-x: hidden;
}

.page-servicios * {
  box-sizing: border-box;
}

/* =========================
   HERO / CARRUSEL PRINCIPAL
========================= */
.page-servicios .services-hero {
  position: relative;
  width: 100%;
  margin: 0;
}

.page-servicios #servicesCarousel,
.page-servicios #servicesCarousel .carousel-inner,
.page-servicios #servicesCarousel .carousel-item {
  height: 100vh;
}

.page-servicios #servicesCarousel .carousel-item {
  position: relative;
}

.page-servicios #servicesCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CAPA OSCURA */
.page-servicios .services-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 25%, rgba(184, 255, 44, 0.18), transparent 60%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.55) 42%,
      rgba(0, 0, 0, 0.25) 70%,
      rgba(0, 0, 0, 0.15) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* TEXTOS HERO */
.page-servicios .services-caption {
  position: absolute;
  z-index: 2;
  left: 7%;
  right: 7%;
  bottom: 18%;
  text-align: left;
}

.page-servicios .services-caption .caption-kicker {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.page-servicios .services-caption .caption-title {
  font-weight: 900;
  line-height: 1.03;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 0.65rem;
  color: #fff;
  max-width: 900px;
}

.page-servicios .services-caption .caption-sub {
  color: rgba(255, 255, 255, 0.96);
  max-width: 700px;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.1px;
  margin-bottom: 0;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.9),
    0 6px 18px rgba(0, 0, 0, 0.8),
    0 12px 35px rgba(0, 0, 0, 0.7);
}

/* CONTROLES */
.page-servicios #servicesCarousel .carousel-control-prev,
.page-servicios #servicesCarousel .carousel-control-next,
.page-servicios #servicesCarousel .carousel-indicators {
  z-index: 3;
}
         
/*=====================================================
  INTRO SERVICIOS
=====================================================*/

.page-servicios .bl-services-intro {
  position: relative;
  width: 100%;
  padding: 4rem 0 3rem;
  background: #000;
  overflow: hidden;
}

.page-servicios .bl-services-intro-content {
  position: relative;
  z-index: 2;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-servicios .bl-services-mini {
  margin-bottom: 1rem;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(184,255,44,.35);
}

.page-servicios .bl-services-title-box {
  position: relative;
  padding: 1.5rem 4rem;
}

.page-servicios .bl-services-title-box::before,
.page-servicios .bl-services-title-box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 14px rgba(184,255,44,.4);
}

.page-servicios .bl-services-title-box::before {
  top: 0;
}

.page-servicios .bl-services-title-box::after {
  bottom: 0;
}

.page-servicios .bl-services-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-servicios .bl-services-arrow {
  margin-top: 1.1rem;
  color: var(--accent);
  font-size: 1.3rem;
  text-decoration: none;
  animation: blArrowMove 2s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(184,255,44,.45);
}

@keyframes blArrowMove {
  0%, 100% {
    transform: translateY(0);
    opacity: .65;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* =====================================================
   SERVICIOS ENUMERADOS PREMIUM BODYLIFE
===================================================== */

.page-servicios .bl-services-list {
  position: relative;

  padding: 2.5rem 0 6rem;

  overflow: hidden;

  background:
    linear-gradient(
      rgba(0,0,0,0.70),
      rgba(0,0,0,0.70)
    ),
    url('../img/IMC/bodylife_pesas.png');

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-servicios .bl-services-list::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(184,255,44,0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(184,255,44,0.05),
      transparent 28%
    );

  pointer-events: none;
}
.page-servicios .bl-services-list .container {
  width: 96%;
  max-width: 1600px;
}
.page-servicios .bl-services-list {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}


.page-servicios .bl-service-card {
  position: relative;
  min-height: 500px;
  margin-bottom: 4.9rem;
  padding: 3.8rem 4.9rem;

  display: grid;
  grid-template-columns: 60px 3px 2fr 700px;
  align-items: center;
  gap:3rem;

  border-radius: 26px;
  overflow: hidden;

  background: #000000;

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
  0 20px 55px rgba(0,0,0,0.75),
  inset 0 1px 0 rgba(255,255,255,0.03);

  transition: all .35s ease;
}

.page-servicios .bl-service-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(184,255,44,0.03) 45%,
      transparent 70%
    );

  opacity: 0;

  transition: opacity .35s ease;

  pointer-events: none;
}

.page-servicios .bl-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184,255,44,0.32);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.7),
    0 0 28px rgba(184,255,44,0.12);
}

.page-servicios .bl-service-card:hover::before {
  opacity: 1;
}

.page-servicios .bl-service-number-box {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-servicios .bl-service-number {
  font-size: clamp(4.6rem, 6vw, 7rem);
  line-height: .9;
  font-weight: 900;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -4px;

  text-shadow:
    0 0 12px rgba(184,255,44,0.35),
    0 0 28px rgba(184,255,44,0.18);
}

.page-servicios .bl-service-number-box i {
  margin-top: .5rem;
  font-size: 1.45rem;
  color: rgba(184,255,44,0.95);
  text-shadow: 0 0 14px rgba(184,255,44,0.35);
}

.page-servicios .bl-service-divider {
  position: relative;
  z-index: 2;
  width: 2px;
  height: 95px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 14px rgba(184,255,44,0.35);
}

.page-servicios .bl-service-content {
  position: relative;
  z-index: 2;
}

.page-servicios .bl-service-content h2 {
  margin: 0 0 .65rem;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.page-servicios .bl-service-content p {
  margin: 0;
  max-width: 630px;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
}

.page-servicios .bl-service-image {
  position: relative;
  z-index: 2;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;

  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);

 
}

.page-servicios .bl-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  filter: brightness(.72) contrast(1.08) saturate(.9);
  transition: transform .45s ease, filter .45s ease;
}

.page-servicios .bl-service-card:hover .bl-service-image img {
  transform: scale(1.05);
  filter: brightness(.9) contrast(1.12) saturate(1);
}

/* ========================= BANNER FINAl========================= */

/* 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 SIGUIENTE
========================= */

.page-servicios .bl-next-zone {
  position: relative;
  width: 100%;
  min-height: 120px;
  background: #0b0c0f;
}

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

.page-servicios .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;
}

.page-servicios .bl-next-services a::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -120px;
  width: 70px;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: rotate(18deg);
  filter: blur(8px);
  animation: blNextLight 3.8s linear infinite;
}

@keyframes blNextLight {
  0% {
    left: -140px;
  }

  100% {
    left: 140%;
  }
}

.page-servicios .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);
}

.page-servicios .bl-next-services a span {
  position: relative;
  z-index: 3;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: #111;
}

.page-servicios .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;
}

.page-servicios .bl-next-circle i {
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}



/*----------------------------------------------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;
}
/*--------------------------------------------------------------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);
}
.bl-next-zone {
  position: relative;
  width: 100%;
  min-height: 110px;
  background: #0b0c0f;
}

.bl-next-services {
  position: absolute;
  right: 55px;
  bottom: 25px;
  z-index: 15;
}
/*=====================================================
  INTRO SERVICIOS
=====================================================*/

.bl-services-intro{
  position: relative;

  width: 100%;

  padding: 4rem 0 3rem;

  background: #000;

  overflow: hidden;
}

/* CONTENIDO */

.bl-services-intro-content{
  position: relative;

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

  text-align: center;

  z-index: 2;
}

/* TEXTO PEQUEÑO */

.bl-services-mini{
  position: relative;

  display: inline-block;

  margin-bottom: 1rem;

  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 2px;

  color: #b8ff2c;

  text-transform: uppercase;

  text-shadow:
      0 0 8px rgba(184,255,44,.25);
}

/*=====================================================
CAJA DEL TÍTULO
=====================================================*/

.bl-services-title-box{
  position: relative;

  padding: 1.6rem 4rem;

  overflow: hidden;
}

/* LÍNEAS SUPERIOR E INFERIOR */

.bl-services-title-box::before,
.bl-services-title-box::after{
  content: "";

  position: absolute;
  left: 0;

  width: 100%;
  height: 2px;

  background:
      linear-gradient(
          90deg,
          transparent 0%,
          #b8ff2c 15%,
          #b8ff2c 85%,
          transparent 100%
      );

  box-shadow:
      0 0 12px rgba(184,255,44,.35);
}

/* LÍNEA SUPERIOR */

.bl-services-title-box::before{
  top: 0;
}

/* LÍNEA INFERIOR */

.bl-services-title-box::after{
  bottom: 0;
}

/* TÍTULO */

.bl-services-title{
  margin: 0;

  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: 1px;

  color: #fff;

  text-transform: uppercase;

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

/* FLECHA */

.bl-services-arrow{
  position: relative;

  width: 100%;

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

  margin-top: 1rem;

  font-size: 1.2rem;

  color: #b8ff2c;

  animation: blArrowMove 2s ease-in-out infinite;

  text-shadow:
      0 0 12px rgba(184,255,44,.35);
}

/* ANIMACIÓN */

@keyframes blArrowMove{

  0%{
      transform: translateY(0);
      opacity: .6;
  }

  50%{
      transform: translateY(8px);
      opacity: 1;
  }

  100%{
      transform: translateY(0);
      opacity: .6;
  }

}
/* ========================================================= RESPONSIVE SERVICIOS BODYLIFE========================================================= */


/* ================= PANTALLAS GRANDES ================= */
@media (min-width: 1600px){

  .page-servicios .bl-services-list .container{
    max-width: 1700px;
  }

  .page-servicios .bl-service-card{
    grid-template-columns: 70px 3px 2fr 760px;
  }

  .page-servicios .bl-service-image{
    height: 430px;
  }
}


/* ================= PORTÁTILES ================= */
@media (max-width: 1400px){

  .page-servicios .bl-service-card{
    grid-template-columns: 55px 3px 2fr 540px;
    gap: 2.2rem;
    padding: 3rem 3.2rem;
  }

  .page-servicios .bl-service-image{
    height: 360px;
  }

  .page-servicios .bl-service-content h2{
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  }
}


/* ================= TABLETS GRANDES ================= */
@media (max-width: 1200px){

  .page-servicios .services-caption{
    left: 6%;
    right: 6%;
    bottom: 16%;
  }

  .page-servicios .bl-service-card{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.8rem;
    padding: 3rem 2.5rem;
    min-height: auto;
  }

  .page-servicios .bl-service-divider{
    width: 120px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }

  .page-servicios .bl-service-content p{
    margin-left: auto;
    margin-right: auto;
  }

  .page-servicios .bl-service-image{
    width: 100%;
    height: 420px;
  }

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

  .footer-info{
   transform: translateX(45px);
  }
  .footer-contact-block{
    align-items: center;
    text-align: center;
  }

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


/* ================= TABLETS ================= */
@media (max-width: 992px){

  .page-servicios #servicesCarousel,
  .page-servicios #servicesCarousel .carousel-inner,
  .page-servicios #servicesCarousel .carousel-item{
    height: 86vh;
  }

  .page-servicios .services-caption{
    bottom: 14%;
    text-align: center;
  }

  .page-servicios .services-caption .caption-title{
    max-width: 100%;
  }

  .page-servicios .services-caption .caption-sub{
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-servicios .bl-services-title-box{
    padding: 1.3rem 2.5rem;
  }

  .page-servicios .bl-services-list{
    padding-left: .8rem;
    padding-right: .8rem;
    background-attachment: scroll;
  }

  .page-servicios .bl-service-card{
    padding: 2.5rem 2rem;
    margin-bottom: 3.5rem;
    border-radius: 22px;
  }

  .page-servicios .bl-service-number{
    font-size: 4.2rem;
  }

  .page-servicios .bl-service-image{
    height: 360px;
  }

  .bl-why-bottom{
    max-width: 760px;
    padding: .9rem 1.5rem;
  }

  .page-servicios .bl-next-services,
  .bl-next-services{
    right: 28px;
    bottom: 22px;
  }
}


/* ================= MÓVILES ================= */
@media (max-width: 768px){

  .page-servicios #servicesCarousel,
  .page-servicios #servicesCarousel .carousel-inner,
  .page-servicios #servicesCarousel .carousel-item{
    height: 78vh;
    min-height: 560px;
  }

  .page-servicios #servicesCarousel .carousel-item img{
    object-position: center;
  }

  .page-servicios .services-overlay{
    background:
      radial-gradient(600px 420px at 50% 25%, rgba(184,255,44,.13), transparent 60%),
      linear-gradient(
        180deg,
        rgba(0,0,0,.50) 0%,
        rgba(0,0,0,.72) 55%,
        rgba(0,0,0,.92) 100%
      );
  }

  .page-servicios .services-caption{
    left: 20px;
    right: 20px;
    bottom: 11%;
    text-align: center;
  }

  .page-servicios .services-caption .caption-kicker{
    font-size: .82rem;
    letter-spacing: 1px;
  }

  .page-servicios .services-caption .caption-title{
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .page-servicios .services-caption .caption-sub{
    font-size: .98rem;
    line-height: 1.5;
  }

  .page-servicios .bl-services-intro,
  .bl-services-intro{
    padding: 3rem 1rem 2.4rem;
  }

  .page-servicios .bl-services-title-box,
  .bl-services-title-box{
    padding: 1.1rem 1.2rem;
  }

  .page-servicios .bl-services-title,
  .bl-services-title{
    font-size: clamp(1.8rem, 9vw, 2.7rem);
    line-height: 1.05;
  }

  .page-servicios .bl-services-mini,
  .bl-services-mini{
    font-size: .78rem;
    letter-spacing: 1.3px;
  }

  .page-servicios .bl-services-list{
    padding: 2rem .7rem 4rem;
  }

  .page-servicios .bl-services-list .container{
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .page-servicios .bl-service-card{
    padding: 2rem 1.2rem;
    margin-bottom: 2.5rem;
    border-radius: 18px;
    gap: 1.4rem;
  }

  .page-servicios .bl-service-number{
    font-size: 3.4rem;
    letter-spacing: -2px;
  }

  .page-servicios .bl-service-number-box i{
    font-size: 1.1rem;
  }

  .page-servicios .bl-service-divider{
    width: 95px;
  }

  .page-servicios .bl-service-content h2{
    font-size: clamp(1.55rem, 8vw, 2.15rem);
    line-height: 1.1;
  }

  .page-servicios .bl-service-content p{
    font-size: .95rem;
    line-height: 1.6;
  }

  .page-servicios .bl-service-image{
    height: 260px;
    border-radius: 15px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
  }

  .bl-why-bottom{
    transform: none;
    max-width: 92%;
    padding: 1rem;
    border-radius: 14px;
  }

  .bl-why-bottom p{
    transform: none;
    font-size: .9rem;
    letter-spacing: .16em;
    line-height: 1.5;
  }

  .page-servicios .bl-next-zone,
  .bl-next-zone{
    min-height: 105px;
  }

  .page-servicios .bl-next-services,
  .bl-next-services{
    position: relative;
    right: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
    margin: 24px auto 0;
  }

  .page-servicios .bl-next-services a,
  .bl-next-services a{
    height: 52px;
    min-width: 160px;
    padding: 0 58px 0 22px;
  }

  .page-servicios .bl-next-services a span,
  .bl-next-services a span{
    font-size: .82rem;
    letter-spacing: .08em;
  }

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

  .page-servicios .bl-next-circle i,
  .bl-next-circle i{
    font-size: 1.35rem;
  }

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

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

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

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

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


/* ================= MÓVILES PEQUEÑOS ================= */
@media (max-width: 480px){

  .page-servicios #servicesCarousel,
  .page-servicios #servicesCarousel .carousel-inner,
  .page-servicios #servicesCarousel .carousel-item{
    height: 72vh;
    min-height: 500px;
  }

  .page-servicios .services-caption{
    left: 14px;
    right: 14px;
    bottom: 9%;
  }

  .page-servicios .services-caption .caption-title{
    font-size: clamp(1.75rem, 11vw, 2.45rem);
  }

  .page-servicios .services-caption .caption-sub{
    font-size: .9rem;
  }

  .page-servicios .bl-services-title-box,
  .bl-services-title-box{
    padding: 1rem .7rem;
  }

  .page-servicios .bl-services-title,
  .bl-services-title{
    font-size: clamp(1.55rem, 10vw, 2.2rem);
  }

  .page-servicios .bl-service-card{
    padding: 1.6rem .95rem;
  }

  .page-servicios .bl-service-number{
    font-size: 2.9rem;
  }

  .page-servicios .bl-service-content h2{
    font-size: 1.45rem;
  }

  .page-servicios .bl-service-content p{
    font-size: .88rem;
  }

  .page-servicios .bl-service-image{
    height: 210px;
  }

  .bl-why-bottom p{
    font-size: .8rem;
    letter-spacing: .10em;
  }

  .page-servicios .bl-next-services a,
  .bl-next-services a{
    min-width: 145px;
    height: 48px;
    padding: 0 52px 0 18px;
  }

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

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

  .footer-links{
    flex-direction: column;
    gap: .5rem;
  }
}


/* ================= MÓVILES MUY PEQUEÑOS ================= */
@media (max-width: 360px){

  .page-servicios .services-caption .caption-title{
    font-size: 1.55rem;
  }

  .page-servicios .services-caption .caption-sub{
    font-size: .82rem;
  }

  .page-servicios .bl-service-image{
    height: 185px;
  }

  .page-servicios .bl-service-content h2{
    font-size: 1.25rem;
  }

  .page-servicios .bl-service-content p{
    font-size: .82rem;
  }
}
/* =========================================================
   CORRECCIÓN REAL RESPONSIVE TARJETAS SERVICIOS MÓVIL
========================================================= */

@media (max-width: 768px){

  .page-servicios .bl-service-card{
    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;

    padding: 2rem 1rem !important;
    margin: 0 auto 2.2rem !important;

    gap: 1.2rem !important;

    min-height: auto !important;

    overflow: hidden !important;
  }

  .page-servicios .bl-service-number-box{
    width: 100% !important;
    align-items: center !important;
  }

  .page-servicios .bl-service-number{
    font-size: 3rem !important;
    letter-spacing: -1px !important;
  }

  .page-servicios .bl-service-divider{
    width: 90px !important;
    height: 2px !important;
    margin: 0 auto !important;
  }

  .page-servicios .bl-service-content{
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .page-servicios .bl-service-content h2{
    max-width: 100% !important;

    font-size: 1.55rem !important;
    line-height: 1.15 !important;

    text-align: center !important;

    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .page-servicios .bl-service-content p{
    max-width: 100% !important;

    font-size: .92rem !important;
    line-height: 1.6 !important;

    text-align: center !important;

    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .page-servicios .bl-service-image{
    width: 100% !important;
    max-width: 100% !important;

    height: 230px !important;

    border-radius: 16px !important;
  }

  .page-servicios .bl-service-image img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

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

  .page-servicios .bl-service-card{
    padding: 1.6rem .85rem !important;
  }

  .page-servicios .bl-service-content h2{
    font-size: 1.32rem !important;
  }

  .page-servicios .bl-service-content p{
    font-size: .84rem !important;
  }

  .page-servicios .bl-service-image{
    height: 190px !important;
  }

}
/* =========================
   CAJAS MÁS PEQUEÑAS PARA ESTA PANTALLA
========================= */

@media (max-width: 768px) {

  .instalaciones-caption {

    width: 78%;

    max-width: 320px;

    padding: 12px 14px;

    border-radius: 18px;

    bottom: 60px;
  }

  .instalaciones-caption h1 {

    font-size: 1.2rem;

    line-height: 1;

    margin-bottom: 6px;
  }

  .instalaciones-caption p {

    font-size: 0.72rem;

    line-height: 1.2;

    margin: 0;
  }

}

/* MÓVILES PEQUEÑOS */

@media (max-width: 480px) {

  .instalaciones-caption {

    width: 74%;

    max-width: 280px;

    padding: 10px 12px;

    bottom: 55px;
  }

  .instalaciones-caption h1 {

    font-size: 1rem;
  }

  .instalaciones-caption p {

    font-size: 0.65rem;
  }

}
/* ==================================================
   FOOTER RESPONSIVE - PANTALLAS 1024 x 600
================================================== */

@media (min-width: 900px) and (max-width: 1100px) and (max-height: 700px) {

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    text-align: center;
  }

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

  .footer-info {
    margin: 0;
  }

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

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

  .footer-brand-text p {
    font-size: 0.9rem;
  }

  .footer-info h5,
  .footer-contact-block h5 {
    font-size: 1.25rem;
    transform: none !important;
    margin-bottom: 8px;
  }

  .footer-info p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .footer-phone {
    font-size: 0.95rem;
    transform: none !important;
  }

  .footer-social {
    margin-top: 0.7rem;
    gap: 0.75rem;
  }

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

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

  .footer-bottom {
    margin-top: 1.2rem;
    padding-top: 0.8rem;
  }

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

  .footer-main,
  .footer-container,
  .footer-top,
  .footer-bottom{
    width:100%;
  }

  .footer-container{
    padding:0 18px !important;
    margin:0 auto !important;
  }

  .footer-top{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    gap:2.1rem !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:relative !important;
    left:0 !important;
    right:0 !important;
    transform:none !important;
  }

  .footer-brand-text,
  .footer-info p,
  .footer-contact-block h5,
  .footer-phone{
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;

    left:0 !important;
    transform:none !important;
  }

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

  .footer-bottom{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
  }

  .footer-author{
    position:static !important;
    transform:none !important;
    margin:0 auto !important;
    justify-content:center !important;
  }

  .footer-links{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }
}
/* =========================
   FOOTER TABLET / IPAD CORRECTO
========================= */

@media (min-width: 769px) and (max-width: 1200px){

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

  .footer-container{
    padding:0 32px !important;
  }

  .footer-top{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;

    gap:1.8rem !important;

    text-align:center !important;
  }

  .footer-brand,
  .footer-info,
  .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;

    position:relative !important;
    left:0 !important;
    right:0 !important;
    transform:none !important;
  }

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

  .footer-brand-text{
    text-align:center !important;
  }

  .footer-brand-text h4{
    font-size:1.6rem;
    margin-bottom:.35rem;
  }

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

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

  .footer-info p{
    font-size:.9rem;
    line-height:1.55;
    margin-bottom:.6rem;
  }

  .footer-location,
  .footer-phone{
    font-size:.9rem;
    justify-content:center !important;
    position:static !important;
    left:auto !important;
    transform:none !important;
  }

  .footer-social{
    width:100% !important;
    justify-content:center !important;
    gap:.9rem;
    margin-top:.85rem;
  }

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

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

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

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

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

    gap:.9rem !important;

    text-align:center !important;
  }

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

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

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

  .footer-bottom p{
    font-size:.9rem;
    max-width:360px;
    line-height:1.45;
    margin:0 auto;
  }

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

  .footer-links a{
    font-size:.85rem;
  }
}
.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);
}
