@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css');

.fondo-parallax-1{
    background-image: url('../img/bg-1.webp');
    background-attachment: fixed;
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 65vh; /* Ajusta la altura según tus necesidades */
    display: flex;
    align-items: center;
    justify-content: center;
}
.fondo-parallax-2 {
  position: relative; /* Asegúrate de que el contenedor tenga position relativa */
  background-image: url('../img/bg-3.webp');
  background-attachment: fixed;
  background-position: center 0%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20vh; /* Ajusta la altura según tus necesidades */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Asegura que el contenido esté por encima del pseudo-elemento */
}

.fondo-parallax-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Ajusta los valores RGB y la opacidad según lo necesites */
  z-index: -1; /* Coloca el pseudo-elemento detrás del contenido */
}

@media (max-width: 768px) {
    .fondo-parallax-2{
        height: 50vh; /* Ajusta la altura según tus necesidades */
    }
}

.custom-hr {
    background-color: #ddbf99;
    height: 4px;
    border: none;
    opacity: 1;
}

.btn-custom {
  --bs-btn-color: #fff;
  --bs-btn-bg: #34414f; 
  --bs-btn-border-color: #34414f; 
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1d2833; 
  --bs-btn-hover-border-color: #1d2833;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1d2833;
  --bs-btn-active-border-color: #1d2833;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #34414f;
  --bs-btn-disabled-border-color: #34414f;
}

.navbar .nav-link.active {
  color: #9B46FF !important;
  font-weight: bold;
}


@media (max-width: 992px) {
    .fondo-parallax-1{
        height: 120vh !important; /* Asegura que esta regla prevalezca */
    }
    .navbar-collapse {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100%;
      width: 250px;
      background-color: #fff; /* Cambia este color según tus necesidades */
      transition: right 0.3s;
    }

    .navbar-collapse.show {
      right: 0;
    }

    .navbar-nav {
      flex-direction: column;
      padding-top: 1rem;
    }

    .navbar-nav .nav-link {
      padding: 0.5rem 1rem;
    }

    .navbar-toggler {
      border: none;
    }

    .navbar-toggler:focus {
      outline: none;
      box-shadow: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
}
#titulo-center {
  text-align: left;
}
@media (max-width: 768px) {
  #titulo-center {
    text-align: center;
    margin-top: 20px;
  }
}

.img-section {
  max-width: 120px;
  height: auto;
}

.footer-text {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-top: 30px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 30%;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float i {
  color: white;
  font-size: 3.5rem; /* Puedes aumentar más si quieres */
}