#map { height: 100vh; margin-top: 90px; }
.leaflet-routing-container {
    display: none;
}
.navbar {
    position: fixed;
    padding: 20px;
    background-color: orangered;
    width: 100%;
    z-index: 999999;
    top: 0px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.navbar span{
    margin-right: 60px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #fff;
}
.arriba {
    position: fixed;
    bottom: 20px;
    z-index: 999999;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}


.btn {
    display: inline-block;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border: 2px gray solid;
}
.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
    padding: 15px;
}
.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}
.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}


/* Estilos para la sección */
section {
    padding: 20px;
    background-color: #f0f0f0;
}

/* Estilos para el contenedor de las columnas */
.contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estilos para las columnas */
.columna {
    flex: 1;
    padding: 20px;

}

/* Estilos específicos para la imagen */
.columna img {
    max-width: 100%;
    height: auto;
}

/* Estilos específicos para el texto */
.columna h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.columna p {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.padin{
    padding: 90px;
}

.padin2{
    padding: 30px;
}


.medio-de-pago{
    background-color: #ffc107;
    padding: 30px;
    text-align: center;
}


.medio-de-pago img{
    margin: auto;
}

.medio-de-pago h3{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.contenedor-img{
    width: 40%;
    margin: auto;
}

footer{
   background-color: #343434;
   color: #fff;
   padding: 30px;
}
footer a{
    color: #fff!important;
}

h3{
    font-family: 'Poppins', sans-serif; 
}
li{
    font-family: 'Poppins', sans-serif; 
}
/* Media query para dispositivos con un ancho máximo de 768px (tablets y móviles) */
@media (max-width: 768px) {
    /* Cambiamos la dirección de las columnas a vertical */
    .contenedor {
        flex-direction: column;
    }

    /* Estilos específicos para cada columna en dispositivos móviles */
    .columna {
        margin-bottom: 20px; /* Añadimos margen entre las columnas */
    }

    .padin{
        padding: 20px;
    }

    .contenedor-img{
        width: 100%;
        margin: auto;
    }
}