    /* Ocultar el modal por defecto */
    #memberCodeModal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
    }
    .modal-content {
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
        width: 80%;
        max-width: 400px;
        text-align: center;
    }
    .close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
    }
 
  @media (min-width: 768px) {
    .header_request_btn2 {
      display: none !important;
    }
}
.header_logo {
    display: flex;
    align-items: center;
    gap: 8px; /* Espacio entre el logo y el checkmark */
}
.checkmark-icon {
    width: 30px; /* Ajusta el tamaño del checkmark */
    height: auto;
}
@media (min-width: 992px) {
  .hide-at-992 {
    display: none !important;
  }
}
  

  
  .call-hover-effect {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  background-color: white;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.call-hover-effect:hover {
  background-color: #e9d5ff; /* Fondo lila suave */
  transform: scale(1.05); /* Más grande al pasar el mouse */
  box-shadow: 0 6px 15px rgba(96, 1, 150, 0.25);
  border-color: #9b00ff;
}

.call-hover-effect:hover svg path {
  stroke: #9b00ff;
}

.call-hover-effect span {
  transition: color 0.3s ease;
}

.call-hover-effect:hover .color_darkblue {
  color: #9b00ff; /* Número resalta */
}

.call-hover-effect:hover .color_lightblack {
  color: #5c007a; /* Título cambia también */
}


        
    /* Estilos básicos para el modal */
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .modal-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 400px;
        text-align: center;
    }
    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }
    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

#carouselWrapper {
  overflow: hidden;
  width: 100%;
  max-width: 400px; /* puedes ajustar según el diseño */
  aspect-ratio: 9 / 24; /* MÁS ALTO que antes */
  margin: 0 auto;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#carouselSlider {
  display: flex;
  transition: transform 1s ease-in-out;
  height: 100%;
}

.carousel_item {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.carousel_overlay {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.carousel_overlay h5 {
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 10px;
  font-family: 'sansita', sans-serif;
  font-size: 1rem;
}


      
  #learnMoreModal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }

  #learnMoreModal.active {
    display: flex;
  }
  
    
         #video1-container,
    #video2-container,
    #video3-container {
      aspect-ratio: 9 / 16;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    #video1,
    #video2,
    #video3 {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    #video-row {
      justify-content: center;
      gap: 1rem;
    }


/* Estilos para el modal */
.modal {
display: none; /* Oculto por defecto */
position: fixed; /* Fijo */
z-index: 1; /* En la parte superior */
left: 0;
top: 0;
width: 100%; /* Ancho completo */
height: 100%; /* Alto completo */
overflow: auto; /* Agregar desplazamiento si es necesario */
background-color: rgb(0,0,0); /* Color de fondo */
background-color: rgba(0,0,0,0.4); /* Negro con opacidad */
}
.modal-content {
background-color: #fefefe;
margin: 30vh auto; /* 15% desde arriba y centrado */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Ancho del modal */
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}

    .modal1 {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9999999;
        align-items: center;
        justify-content: center;
    }
    .modal1-content {
        background: white;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
    }
    .close1 {
        color: white;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
    }
    .text-dark1 {
        font-weight: bold;
        font-size: 27px;
    }
    .modal1-message {
        color: purple;
        font-weight: bold;
    }
