@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;
}

.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-evenly;
    align-items: center;
}

.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;
}



.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{
    font-size: 2.5rem;
}


.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 */
}

.titulo-cards{
    border: 2px solid rgba(0, 0, 255, 0); 
    padding-top: 3vh; 
    color: #13434d; 
    font-size: 6vh;
}

.parrafo-cards{
    font-size: 1.7rem; 
    color: #13434d;
}

.card-parrafo1,
.card-parrafo2,
.card-parrafo3,
.card-parrafo4{
    text-align: start; 
    color: black; 
    font-size: 1.5rem;
}


.icono-mapa{
    width: 90%;
}


.card-titulo-1,
.card-titulo-2,
.card-titulo-3,
.card-titulo-4{
    color: black; 
    text-align: start;
    font-size: 2rem;
}

.card1,
.card2,
.card3,
.card4{
    border: 2px solid rgba(0, 0, 255, 0); 
    padding: 2vh;
    width: 50%;
}


.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: 1024px) {
    .card-parrafo1, .card-parrafo2, .card-parrafo3, .card-parrafo4 {
        text-align: start;
        font-size: 1.3rem;
    }
}

@media (max-width: 992px){
    .navbar-gray{
        padding: 1vh;
    }
    .card1,
    .card2,
    .card3,
    .card4{
        flex: 0 0 auto;
        width: 100%;
    }
    .navbar-toggler {
        background-color: #13434d; /* Ajusta el color si es necesario */
    }

    .show{
        padding: 3vh;
    }

    .contenedor-boton-pagar{
        display: flex;
        justify-content: center;
    }
    .pagar{
        width: 50%;
    }
}

@media (max-width: 884px){
    .col-md-5 {
        width: 100%;
    }
    .titulo-cards {
        font-size: 4vh;
    }
}


@media (max-width: 767px) {
    .titulo-cards{
        font-size: 4vh;
    }
    .parrafo-cards{
        font-size: 1.2rem;
        text-align: justify;
    }
    .card-parrafo1, .card-parrafo2, .card-parrafo3, .card-parrafo4 {
        font-size: 1.2rem;
    }
    .card1,
    .card2,
    .card3,
    .card4{
        width: 100%;
    }
    /*--------------- 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%;
    }
  
    .titulo-cards{
        font-size: 3vh;
        text-align: center;
    }
  }

  @media (max-width: 425px){
    .titulo-cards{
        text-align: center;
    }

    .card-parrafo1,
    .card-parrafo2,
    .card-parrafo3,
    .card-parrafo4
    {
        font-size: 1rem;
    }
  }

  @media (max-width: 325px) {

    .card-titulo-1,
    .card-titulo-2,
    .card-titulo-3,
    .card-titulo-4{
        color: black;
        text-align: start;
        font-size: 1.1rem;     
    }
  }