/* Login */
@import url("login.8a6c1261a5b6.css");

@import url("seleccionar_estacion.d39f60c1f1fe.css");

/* Cuadrícula principal para el Portal */
#portal_root {
    background-color: var(--color-base);
    display: grid;
    min-height: 100%; 
    grid-template-columns: var(--navbar-width) auto;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "header header"
        "main main"
    ;
}

.main-portal {
    grid-area: main;

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100%;

    background-image: url("../imagenes/bomberil_portal_background_v2.3c4359b5a2dc.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main__titulo_pagina-portal {
    display: flex;
    width: 100%;
    height: calc(var(--main-title-height) + 50px);
    justify-content: center;
    align-items: center;
    z-index: var(--title-page-z-index);
}

.portal__modulos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.portal__modulo {
    display: flex;
    flex-direction: column;
    width: 400px;
    height: 300px;
    border-radius: 20px;
    transition: all 60ms ease;
}

.modulo__header {
    display: flex;
    width: 100%;
    height: 50%;
}
.modulo__header img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.modulo__body {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 50%;
    justify-content: start;
    align-items: center;
    text-align: center;
    padding: 10px;
    gap: 10px;
}