@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: 'Poppins';
}

#navbarp{
    justify-content: space-between;
}

/* Estilo general para el enlace */
.nav-link {
    padding-right: 45px; /* Asegúrate de que esto se aplique a todos los enlaces */
    font-weight: 700;
    color: #13434d;
    text-decoration: none; /* Asegúrate de que no haya subrayado */
}

/* Estilo para el enlace en estado hover */
.nav-link:hover {
    color: #FFA726;
}

/* Estilo para el enlace activo en la barra de navegación */
.nav-item .nav-link.active {
    font-weight: bold; /* Hace que el texto del enlace activo sea más grueso */
    color: #FFA726; /* Cambia el color del texto del enlace activo */
    border-radius: 5px; /* Agrega esquinas redondeadas al botón */
    background-color: transparent; /* Asegúrate de que el fondo sea transparente */
}

/* Estilo adicional para los enlaces que están activos o mostrados */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #FFA726;
}



::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: none !important;
    text-align-last: none !important;
    display: none;
    color: transparent;
}

.boton-amarillo{
    padding-right: 20px;
    padding-left: 20px; 
    border-radius: 20px; 
    background-color: #FFA726; 
    font-weight: 700; 
    color: white;
    text-align: center;
}


.grupo-botones-footer{
    display: flex;
}

.btn {
    background: #FFA726;
    border-color: transparent;
    margin-bottom: 12px;
    width: 100%;
    font-weight: 700;
    font-size: 20px;
    color: #13434d;
}

.boton-1,
.boton-2,
.boton-3{
    width: 100%;
}


.titulo-inicio{
    font-size: 2rem;
}

/*----------------------------------------------*/
.contenedor-cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 3vh;
}

.custom-card {
    position: relative;
    overflow: hidden;
    height: 50vh;
    border-radius: 35px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-image {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255, 255, 255);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}


.custom-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h2 {
    margin: 0;
    font-size: 1.5em;
}

.card-content p {
    margin: 10px 0;
    font-size: 1em;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #13434d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #FFA726;
    color: #13434d;
}

.arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-left: 25px;
    border-radius: 50%;
    background-color: #ffffff00;
    border: 2px solid #FFA726;
    color: #0283ce;
    font-size: 1.5em;
}

.titulo-cards{
    border: 2px solid rgba(0, 0, 255, 0); 
    padding-top: 2vh; 
    font-size: 5vh; 
    text-align: center;
}


.btn-link {
    text-align: end;
    font-size: 1.15rem;
    font-weight: 500;
    color: #0283ce; /* Color del texto por defecto */
    text-decoration: none; /* Quita el subrayado del enlace */
    transition: color 0.3s ease-in-out; /* Transición suave para el cambio de color */
}

.btn-link:hover {
    color: #FFA726; /* Color del texto al hacer hover */
}

.navbar-principal{
    background-color: #e0e0e0;
    padding: 1vh;
}

.card-1,
.card-2,
.card-3{
    border: 2px solid rgba(0, 0, 255, 0); 
    padding: 1vh;
}

.parrafo-inicio-card{
    font-size: 1.5rem; 
    color: #13434d;
    text-align: justify;
}

.boton-pagar{
    display: flex;
    justify-content: center;
}
.navbar-toggler {
    background-color: #13434d; /* Cambia el color de fondo del botón */
    border: none; /* Opcional: si quieres quitar el borde predeterminado */
  }

  button.navbar-toggler {
    background-color: #13434d !important; /* El uso de !important asegura que este estilo tenga prioridad */
    border: none; /* Elimina el borde si no lo necesitas */
  }
  
  /*------------ FOOTER 2 -----------------*/
.footer-2{
    background-color: #4658ff;
    display: none;
}

.contenedor-sala-ventas{
    text-align: center;
}
.contenedor-sala-ventas2{
    border: 2px solid rgba(255, 0, 0, 0);
    text-align: start;
}

.footer-p1{
    text-align: end;
}

.footer-p2{
    text-align: start;
}

.logo-footer{
    padding: 1vh; 
    border: 2px solid rgba(255, 255, 255, 0); 
    margin-bottom: 0; 
    border-radius: 0; 
    box-shadow: none;
    align-items: center;
    background-color: transparent;
}

/******/
  
@media (max-width: 992px){
    .card-1,
    .card-2,
    .card-3{
        width: 50%;
    }

    .show{
        padding: 3vh;
    }
    .contenedor-boton-pagar{
        display: flex;
        justify-content: center;
    }
    .pagar{
        width: 50%;
    }
}

@media (max-width: 767px){
    .card-1, .card-2, .card-3 {
        width: 100%;
    }

    .titulo-cards {
        font-size: 4vh;
    }
    .navbar-toggler {
        background-color: #13434d; /* Ajusta el color si es necesario */
      }
      /*--------------- FOOTER 2 -------------*/
    .footer-2{
        display: block;
        background-color: #13434d;
    }
    .contenedor-footer{
        display: none;
    }
    
    .grupo-botones-footer2{
        display: flex;
        flex-direction: column;
    }

    .boton-f1,
    .boton-f2,
    .boton-f3{
        background-color: rgb(216, 216, 216); 
        color: #13434d; 
        border-radius: 1px 10px 0px 10px; 
        padding: 8px; 
        margin: 8px;
    }
    .boton-f1{
        width: auto;
    }
    .boton-f2{
        width: auto;
    }
    .boton-f3{
        width: auto;
    }
    .logo-footer2{
        align-items: start;
        background-color: transparent;
        margin-bottom: 0; 
        border-radius: 0; 
        box-shadow: none;
    }
}


@media (max-width: 576px) {
    .overlay-form {
      width: 90%; /* Ajusta el ancho en pantallas aún más pequeñas */
      right: 5px; /* Reduce el espacio desde el borde izquierdo */
      top: 5px; /* Reduce el espacio desde la parte superior */
    }
  
    .grupo-botones-footer{
      flex-direction: column;
      align-items: center;
  
    }
  
    .boton-1,
    .boton-2,
    .boton-3{
      width: 50%;
    }
}

@media (max-width: 425px){
    .parrafo-inicio-card {
        font-size: 1.3rem;
        color: #13434d;
    }

    .titulo-cards {
        font-size: 1.8rem;
    }
    
}