@import url("font-awesome.min.css");
body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

.layout_padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.heading_container h2.about {
  position: relative;
  font-weight: 550;
  text-transform: none;
  padding-bottom: 10px;
}

.heading_container h2::before {
  content: "";
  width: 40px;
  height: 7px;
  background-color: #e9cb46;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*header section*/

.hero_area {
  min-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0 0 60px 60px; /* Solo en las esquinas inferiores */
  overflow: hidden; /* Evita que la imagen sobresalga */
}

.hero_bg_box .img-box {
  width: 100%;
  height: 100%;
  border-radius: 0 0 60px 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%; /* aquí centramos la imagen */
}
@media (max-width: 768px) {
  .hero_bg_box .img-box {
    background-position: center center; /* Centrado perfecto */
  }
}

/* Huella Bebé */
.brand-content {
  display: flex;
  align-items: center;
}

.icon-small {
  margin-top: 8px;
  height: 60px;
  margin-right: 8px;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 1));
}

/* Mercado Pago AL SCROLLEAR */
.mercado-popup {
  position: fixed;
  bottom: 30px;
  left: -300px; /* empieza fuera de pantalla */
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 12px;
  z-index: 9999;
  transition: left 0.5s ease;
}

.mercado-popup img {
  height: 150px;
  display: block;
  margin: 0 auto;
}

.mercado-popup.show {
  left: 20px; /* se desplaza a la vista */
}

.mercado-popup .close-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #333;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
}

/* Imagen en la barra */
img.pages {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%; /* Mueve la imagen hacia arriba o abajo */
}

.hero_bg_box .img-box {
  width: 100%;
  height: 100%;
  border-radius: 0 0 60px 60px;
  background-image: url("../images/f-inicio.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0%;
}

@media (max-width: 768px) {
  .hero_area {
    min-height: 50vh; /* Menor altura en móviles */
  }

  .hero_bg_box {
    border-radius: 0 0 30px 30px; /* Radio más pequeño para móviles */
  }

  .hero_bg_box .img-box {
    background-position: center center;
  }
}

/* Media Query para pantallas muy pequeñas */
@media (max-width: 400px) {
  .hero_area {
    min-height: 40vh;
  }

  .hero_bg_box {
    border-radius: 0 0 15px 15px;
  }
}

.hero_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.8)),
    to(rgba(255, 255, 255, 0.35))
  );
  background: linear-gradient(
    to right,
    rgba(63, 62, 62, 0.8),
    rgba(255, 255, 255, 0.35)
  );
}

.hero_area.index-2 {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;

  /* min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative; */
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0 0 60px 60px; /* Solo en las esquinas inferiores */
  overflow: hidden; /* Evita que la imagen sobresalga */
}

.header_section {
  padding: 0;
  position: relative;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

#navbarSupportedContent {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 0;
  padding: 35px 15px 10px 15px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  background-color: #1c1c1c;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-brand span {
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 32px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 15px;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 15px;
  top: -10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

/* breadcrumb */
.breadcrumb-wrapper.pages {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.breadcrumb-title {
  font-size: 5rem;
  color: #3b3b3b;
  text-decoration: none;
  font-weight: 500;
  display: block;
}

.breadcrumb-title:hover {
  text-decoration: underline;
}

.pages .breadcrumb-title:hover {
  text-decoration: none;
  cursor: default;
}

.breadcrumb-bar {
  text-align: center;
  background: transparent;
  padding: 0.5rem 1rem;
  font-size: 2.5rem;
  display: inline-block;
}

.breadcrumb {
  background: none;
  display: inline-flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #888;
  padding: 0 8px;
  font-weight: 600;
}

.breadcrumb a {
  color: #3b3b3b;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: #4b4b44;
}

.breadcrumb-item.active {
  color: #c4b427;
  font-weight: 600;
}

@media (max-width: 768px) {
  .breadcrumb-bar {
    font-size: 2rem; /* Más chico en tablets/celulares */
  }
}

@media (max-width: 480px) {
  .breadcrumb-bar {
    font-size: 1.8rem; /* Más chico aún en celulares chicos */
  }
}

/* Breadcrumb title - estilos unificados y responsivos */
.hero_area.index-2 .breadcrumb-title {
  font-size: 4.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  padding: 0 20px;
  margin: 0 auto;
}

.hero_area.index-2 .breadcrumb-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

/* Tablets */
@media (max-width: 768px) {
  .hero_area.index-2 .breadcrumb-title {
    font-size: 2.2rem;
  }
}

/* Celulares */
@media (max-width: 576px) {
  .hero_area.index-2 .breadcrumb-title {
    font-size: 1.6rem;
  }
}

/*end header section*/

/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section .detail-box {
  width: 100%;
  margin: 0 auto;
}

.slider_section .detail-box h1 {
  text-transform: uppercase;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600;
}

.slider_section .detail-box h1 span {
  color: #e9cb46;
}

.slider_section .detail-box p {
  margin-top: 25px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.slider_section .detail-box .btn-box a {
  width: 180px;
  text-align: center;
  margin: 5px;
}

.slider_section .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 10px 35px;
  background-color: #ffffff;
  color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.slider_section .detail-box .btn-box .btn-1:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.slider_section .detail-box .btn-box .btn-2 {
  display: inline-block;
  padding: 10px 35px;
  background-color: #e9cb46;
  color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.slider_section .detail-box .btn-box .btn-2:hover {
  background-color: transparent;
  border-color: #e9cb46;
  color: #e9cb46;
}

.slider_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .idicator_container {
  position: relative;
}

.slider_section ol.carousel-indicators {
  margin: 0;
  bottom: -75px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.slider_section ol.carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  background-color: #e9cb46;
  opacity: 1;
  border: none;
  margin: 0 4px;
}

.slider_section ol.carousel-indicators li.active {
  background-color: #ffffff;
}

.slider_section .carousel-inner {
  height: 60vh;
  display: flex;
  align-items: center;
}

/* Ocultar imagenes en pantallas chicas */
@media (max-width: 768px) {
  .ocultar-en-celular {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .slider_section .carousel-inner {
    height: 45vh;
    min-height: 500px;
    display: flex;
    align-items: center;
  }

  .slider_section .row {
    flex-direction: column;
  }

  .slider_section .col-md-5 {
    display: none !important; /* ocultar imagenes en celular */
  }

  .slider_section .col-md-7 {
    width: 100%;
    text-align: center;
  }

  .slider_section .detail-box {
    padding: 20px;
  }

  .slider_section .detail-box h1 {
    font-size: clamp(2.2rem, 9.5vw, 3.4rem);
    line-height: 1.02;
    margin-bottom: 0.45rem;
    word-break: break-word;
    hyphens: auto;
  }
}

/*end slider section*/

/* about section */
.about_section {
  margin-bottom: 0px;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .img_container .img-box img {
  width: 100%;
  border-radius: 15px;
}

.about_section .detail-box {
  background-color: #ffffff;
  padding: 45px 25px;
  -webkit-box-shadow: 0 0 5px 0 rgb(0, 0, 0);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  margin-left: -45px;
}

.about_section .detail-box p {
  margin-top: 5px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #e9cb46;
  color: #55544f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid transparent;
  text-transform: uppercase;
  border-radius: 10px;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  border-color: #e9cb46;
  color: #e9cb46;
}

.about_section .boton {
  color: #e9cb46;
  font-weight: 510;
}

blockquote {
  font-style: italic;
  font-size: 18px;
  color: #615959;
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: #e9cb46;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .about_section .img_container {
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  .about_section .detail-box {
    margin-left: 0;
    margin-top: 20px;
  }
}

/* end about section */

/* mision section */
.mision_section {
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  min-height: 60vh;
  height: auto;
  padding: 3rem 0;
}

.mision_section .btn-box {
  margin-top: 20px;
}

.parallax__bg {
  background-color: #111; /* fallback mientras carga la imagen */
  aspect-ratio: 16/9;     /* si tu layout lo permite — ayuda a reservar espacio */
  position: absolute;
  inset: 0;
  background-image: url("../images/luz.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.12);
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}

.parallax__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18),
    rgba(255, 255, 255, 0.267)
  );
  z-index: 1;
}

.mision_content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}

.mision_section h2 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.mision_section p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.mision_section h2 {
  font-weight: 510;
  margin-bottom: 20px;
  color: white !important;
}

.btn-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #f1db25;
  color: #5f5c5c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 505;
}
.btn-box a:hover {
  background-color: transparent;
  border-color: #f1db25;
  color: #c4b427;
}

@media (max-width: 1024px) {
  .mision_section {
    min-height: 55vh;
    padding: 2.5rem 0;
  }
  .mision_content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mision_section {
    min-height: 50vh;
    padding: 1.6rem 0;
  }
  .mision_content {
    padding: 1rem;
  }
  .mision_section h2 {
    font-size: clamp(1.4rem, 3.6vw, 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax__bg {
    transition: none;
    transform: none !important;
  }
}

/* end mision section*/

/*history section*/
.history_section {
  background-color: white;
  padding-top: 3rem; /* equivalente a py-5 */
  padding-bottom: 3rem;
  margin-bottom: 60px;
  margin-top: 60px;
}

.history_section h2 {
  font-weight: 510;
  margin-bottom: 20px;
}

.history_section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.history_section h5 {
  font-weight: 505;
}

/* end history section */

/* tabs section */
.tabs {
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tab-buttons button {
  padding: 0.75rem 1.25rem;
  border: none;
  background-color: #c0c0c0;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 501;
}

.tab-buttons button:focus {
  outline: none;
}

.tab-buttons button.active {
  background-color: #e7dd7e;
  color: black;
  font-weight: 501;
}

.tab-content {
  display: block;
}

.hidden {
  display: none;
}

.tab-content h2 {
  color: #c4b427;
  margin-bottom: 0.5rem;
  font-weight: 501;
}

.whatsapp-link a {
  display: inline-block;
  margin-top: 1rem;
  background-color: #25d366;
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.whatsapp-link a:hover {
  background-color: #1ebd5a;
  text-decoration: none;
}

.donaciones-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.donaciones-texto {
  flex: 1 1 55%;
  min-width: 280px;
}

mark {
  background-color: #faf2ab;
  color: #000;
  padding: 0 4px;
  border-radius: 4px;
}

.donaciones-transferencia {
  flex: 1 1 35%;
  min-width: 250px;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.donaciones-transferencia h3 {
  color: #c4b427;
  margin-top: 0;
}

.monto-btn {
  border-color: #f1db25;
  color: #000000;
  background-color: white;
  transition: all 0.3s ease;
}

.monto-btn:hover {
  background-color: #f1db25;
  color: rgb(0, 0, 0);
}

.monto-btn.active {
  background-color: #f1db25;
  color: rgb(0, 0, 0);
  border-color: #f1db25;
}

.qr-box {
  margin-top: 1rem;
  text-align: justify;
}

.qr-img {
  width: 250px;
  height: auto;
}
/* end tabs section*/

.client_section {
  text-align: center;
}

.client_section #carouselExampleControls {
  padding: 0 10%;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
}

.client_section .box .img-box {
  width: 300px;
  height: 300px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.client_section .box .img-box img {
  width: 100%;
}

.client_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.client_section .box .detail-box h4 {
  font-weight: bold;
  font-size: 18px;
  padding: 0 10px;
  border-bottom: 1px solid #ffffff;
}

.client_section .box .detail-box p {
  margin-top: 10px;
}

.client_section .carousel_btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-color: #1c1c1c;
  color: #ffffff;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #f1db25;
}

.client_section .carousel-control-prev {
  left: 0;
}

.client_section .carousel-control-next {
  left: initial;
  right: 0;
}

.subtitulo {
  font-size: 1vw;
}

/*Social section */
.social {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e9cb46;
}

.container h2 {
  font-size: 2rem;
  color: #000000;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.btn-box2 a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #55544f;
  color: #e9cb46;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 505;
}

.btn-box2 a:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: rgb(255, 255, 255);
}

blockquote.segundo {
  font-style: italic;
  font-size: 18px;
  color: #615959;
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: #55544f;
  padding-left: 10px;
}

/* end social section */

/* imagenes section */
.images {
  background-image: url("../images/section-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 850px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.photo {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.images:hover .photo {
  transform: scale(1.05);
}

.grid-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 38px;
  margin: 20px 0;
  color: #000000;
  transition: transform 0.3s ease;
}

.images:hover .grid-title {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .images {
    background-size: cover;
    background-position: center top;
  }
}
@media (max-width: 768px) {
  .images {
    display: none !important;
  }
}

/* end imagenes section */

/* Section New */
.section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #000000;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.section h2::before {
  content: "";
  width: 40px;
  height: 7px;
  background-color: #f1db25;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 50%; /* Centrar */
  transform: translateX(-50%); /* Para que quede perfectamente centrado */
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  width: 250px;
  transition: transform 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #c4b427;
  font-weight: 505;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 300px;
  }
}
/* end Section */

.info_section {
  background-color: #101010;
  color: #ffffff;
  padding: 75px 0 10px 0;
}

.info_section .row > div {
  margin-bottom: 25px;
}

.info_section h5 {
  margin-bottom: 25px;
  font-size: 24px;
}

.info_section .info_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.info_section .info_logo .navbar-brand {
  padding: 0;
  margin-bottom: 20px;
}

.info_section .info_logo .navbar-brand span {
  font-size: 24px;
  color: #ffffff;
}

.info_section .info_links ul {
  padding: 0;
}

.info_section .info_links ul li {
  list-style-type: none;
}

.info_section .info_links ul li a {
  color: #ffffff;
}

.info_section .info_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info_section .info_contact a {
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px; /* espacio entre ícono y texto */
  word-break: break-word;
  text-decoration: none;
}

.info_section .info_contact a i {
  font-size: 20px;
  margin-right: 5px;
}

.info_section .info_form form input {
  outline: none;
  border: none;
  width: 100%;
  padding: 7px 10px;
  border-radius: 30px;
}

.info_section .info_form form button {
  padding: 8px 35px;
  outline: none;
  border: none;
  color: #ffffff;
  background: #f1db25;
  border-radius: 30px;
  margin-top: 15px;
  text-transform: uppercase;
}

.info_section .info_form .social_box {
  margin-top: 25px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_form .social_box a {
  margin-right: 10px;
  color: #ffffff;
  font-size: 20px;
}

.location-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.location-link:hover {
  text-decoration: underline;
  color: #dddddd;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /*proporción 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* social section*/
.location-linkk {
  color: #55544f;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  text-decoration: underline;
}

.location-linkk:hover {
  text-decoration: underline;
  color: #312e2e;
}

/* footer section*/
.footer_section {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  background-color: #101010;
}

.footer_section p {
  color: rgba(254, 254, 255, 0.7);
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: rgba(254, 254, 255, 0.7);
}

/* end footer section*/

/* Estilo para el enlace activo con fondo negro */
.navbar-nav .nav-item .nav-link.active {
  background-color: #000000; /* Cambia el fondo a negro */
  color: #ffffff; /* Asegúrate de que el texto se vea blanco */
}

/* header - media queries */
.header_section {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
