@font-face {
    font-family: 'Biome Std';
    src: url('../fonts/BiomeStd-Wide.otf') format('opentype'); /* Formato especificado */
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Biome Std', sans-serif; /* Sans-serif como fallback */
}

.nonSelectionable {
    user-select: none;
}


.button-red{
    font-family: "Biome Std";
    font-size: 20;
    background-color: #EA1C24;
    border: 1px solid #EA1C24; 
    color: #fff;
    border-radius: 100px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.button-red:hover{
    font-family: "Biome Std";
    font-size: 20;
    border: 1px solid #ea1c23; 
    background-color: #fff;
    color: #ea1c23;
    border-radius: 100px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
}





@media (max-width: 768px) {
    .banner-principal{
        padding: 20px 0px;
    
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        color:#fff;

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .title-page {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .title-page h1 {
        font-size: 20px;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
    
    .banner-principal p{
        font-size: 13px;
        width: 90%;
        text-align: center;
    }

    .ubicacion {
        padding: 15px;
        font-size: 13px;
        border-bottom: 1px solid black;
        background-color: #fff;
    }
    
    .page {
        width: 180px;
        white-space: nowrap;       /* Evita saltos de línea */
        overflow: hidden;          /* Oculta el contenido que desborda */
        text-overflow: ellipsis;   /* Agrega "..." al final */
        margin: 0;
    }

    .ruta-ubi { 
        display: flex;
    }
}

@media (min-width: 768px) {
    .banner-principal{
        padding: 50px 0px;
    
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    
        color:#fff;
    
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .title-page h1{
        font-size: 25px;
        width: 500px;
        height: 50px;
        margin: 30px 0;
        text-align: center;
    }
    
    .banner-principal p{
        font-size: 15px;
        width: 570px;
        text-align: justify;
    }

    .ubicacion{
        padding: 15px;
        display: flex;
        font-size: 13px;
        border-bottom: 1px solid black;
        background-color: #fff;
    }
}

@media (min-width: 1024px) {
    .banner-principal{
        padding: 100px 30px;
    
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    
        color:#fff;
    
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .ubicacion{
        padding: 15px;
        display: flex;
        font-size: 13px;
        border-bottom: 1px solid black;
        background-color: #fff;
    }
}

.ruta-ubi{
    display: flex;
    
}

.ruta-ubi a{
    text-decoration: none;
    
}

.ruta-ubi :hover{
    color: #EA1C24;
}


.ruta-page{
    color: #000;
    margin: 0;
    margin-left: 5px;
}
.page{
    color: #EA1C24;
    margin: 0;
    margin-left: 5px;
}


.contenedor_carga{
    background-color: rgba(250, 240, 245, 0);
    height: 100%;
    width: 100%;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10000;
    padding: 50px 0;
}

.carga{
    border: 10px solid #ccc;
    border-top-color: #f4266a;
    border-top-style: groove;
    height: 50px;
    width: 50px;
    border-radius: 100%;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;

    -webkit-animation: girar 1.5s linear infinite;
        -o-animation: girar 1.5s linear infinite;
        animation:  girar 1.5s linear infinite;
}

#contenedor_carga{
    background-color: rgba(250, 240, 245, 0);
    height: 100%;
    width: 100%;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10000;
    padding: 50px 0;
    position: fixed;
}

#carga{
    border: 10px solid #ccc;
    border-top-color: #f4266a;
    border-top-style: groove;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    position: relative;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;

    -webkit-animation: girar 1.5s linear infinite;
        -o-animation: girar 1.5s linear infinite;
        animation:  girar 1.5s linear infinite;
}

@keyframes girar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Div de carga 
    <div class="contenedor_carga" style="display: none;">
        <div class="carga"></div>
    </div>
*/