@charset "UTF-8";

.top_header {
  background: var(--bs-primary);
  color: white;
  padding: 10px 0;
  font-size: 15px;
}

.top_header a {
  color: white;
}

.top_header .social_links a {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

#bannerCarousel {
  margin-top: 118px;
}


.site_header .site_logo img {
  width: 100px;
}


.site_header.sticky .site_logo img {
  width: 50px;
}

.site_footer_content .site_logo img {
  width: 100px;
}

.page_content {
  padding-top: 120px;
}

.site_footer_content h3 {
  color: white;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
}

.section_home_unete {
  margin: 150px 0;
}

.service_item a {
  color: var(--bs-dark);
}

.banner-section {
  background-size: cover;
  background-position: center;
  height: 400px; /* Puedes cambiarlo a 100vh para pantalla completa */
  position: relative;
  overflow: hidden;
}

.banner-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 22, 53, 0.6); /* Oscurecimiento con transparencia */
  z-index: 1;
}

.banner-section .banner-content {
  z-index: 2;
}

.banner-section .banner-content span {
  background: var(--bs-primary);
  font-size: 38px;
  padding: 20px;
  border-radius: 25px;
  margin-top: 20px;
  display: inline-block;
}

@media (max-width: 768px) {
  .banner-section .banner-content {
    width: 90%;
  }
  .banner-section .banner-content span {
    font-size: 24px;
  }
}

.cta-pink {
  background-color: var(--bs-primary);
  text-align: center;
  padding: 50px;
}

.cta-pink h2 {
  color: white;
  font-weight: 500;
}

.section-full {
  width: 100%;
  padding: 0;
  margin: 0;
}

.text-block {
  padding: 5rem;
}

@media (max-width: 768px) {
  .text-block {
    padding: 2.8rem;
  }
}

.contact_section {
  background-color: var(--bs-primary);
  color: white;
  padding: 120px;
}

@media (max-width: 768px) {
  .contact_section {
    padding: 30px;
  }
}

.contact_section h2 {
  color: white;
}

.info_list_bye > li {
  font-weight: 400;
  line-height: 24px;
  font-size: var(--bs-body-font-size);
}
.info_list_bye.unordered_list_block > li:not(:last-child) {
  margin-bottom: 16px;
}
.info_list_bye .info_icon {
  float: left;
  width: 21px;
  margin: 0 8px 0 0;
}
.info_list_bye .info_icon i {
  color: var(--bs-primary);
}
.info_list_bye .info_text {
  display: table;
}
.info_list_bye a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--bs-body-color);
}
.info_list_bye a:hover {
  color: var(--bs-primary);
}

.box-precios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.box-precio {
  padding: 20px;
  flex: 1 1 calc(20% - 24px); /* 5 divs en fila con espacio entre ellos */
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 767px) {
  .box-precio {
    flex: 1 1 100%;
  }
}

.pricing_item p {
  min-height: 170px;
}

@media (max-width: 767px) {
  .pricing_item p {
    min-height: auto;
  }
}

.box-packs-wrapper {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('tu-imagen.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.box-packs-wrapper h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.box-packs-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid ;
}

.box-packs-item:last-child {
  border-bottom: none;
}

.box-packs-price {
  background-color: var(--bs-primary);
  color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.box-packs-description {
  text-align: left;
  font-size: 20px;
}

@media (max-width: 768px) {
  .box-packs-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .box-packs-price {
    margin-bottom: 10px;
  }

  .box-packs-description {
    text-align: center;
  }
}

.banner-localizaciones {
    position: relative;
    background: url('/assets/images/banners/bg-centros.webp') center center / cover no-repeat;
    color: #fff;
    padding: 50px 20px;
    text-align: left;
}

.banner-localizaciones::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* velo oscuro */
    z-index: 0;
}

.banner-localizaciones .contenido {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.banner-localizaciones .mapa {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.banner-localizaciones .mapa img {
    width: 80%;
    height: auto;
    display: block;
}

.banner-localizaciones .lista {
    flex: 1;
    min-width: 250px;
}

.banner-localizaciones .lista a {
    display: flex;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
    font-style: italic;
}

.banner-localizaciones .lista a::before {
    content: "";
    display: inline-block;
    background-image: url('/assets/images/pin-bbv.png');
    background-size: contain;
    width: 25px;
    height: 37px;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-localizaciones .contenido {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner-localizaciones .lista a {
        justify-content: center;
        font-size: 1.4rem;
    }
    .banner-localizaciones .mapa img {
      width: 100%;
    }
}

.contact_info_box .item_contact span {
  color: #111;
  font-size: 15px;
}

.item_contact_2 p {
  min-height: 170px;
}

@media (max-width: 768px) {
  .item_contact_2 p {
    min-height: auto;
  }
}