body {
    scroll-snap-type: y mandatory;
    /* Configuración de scroll snapping vertical */
    overflow-y: scroll;
    /* Asegura que el scroll esté habilitado */
    margin: 0;
    /* Eliminar márgenes para un mejor control del scroll */
    height: 100vh;
    /* Mantener altura del viewport */
}

.section {
    scroll-snap-align: start;
    /* Define dónde se alinea cada sección */
    width: 100%;
    height: 100vh;
    /* Cada sección ocupa el 100% de la altura de la ventana */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.section-logo{
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.911) 0%, rgba(255, 255, 255, 0) 70%), url('/static/img/bg-one.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0px;
}

.section-apps {
    background-image: radial-gradient(circle, rgba(52, 52, 52, 0.79) 0%, rgba(255, 255, 255, 0) 70%), url('/static/img/bg-two.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0px;
    color: white;
}

#logo-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#kt_app_header {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}

.content {
    background-color: #f8f9fa;
    padding-bottom: 150px;
}

.card {
    position: relative;
    width: 220px;
    height: 320px;
    background: rgba(232, 232, 232, 0.404) 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
}

.card::before,
.card::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    transition: all 0.5s;
}

.card::before {
    top: 0;
    right: 0;
    border-radius: 0 15px 0 100%;
}

.card::after {
    bottom: 0;
    left: 0;
    border-radius: 0 100% 0 15px;
}

.card:hover::before,
.card:hover:after {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.5s;
}

.consultaLC:hover:after {
    padding: 10px;
    content: "Consulta LC";
    /* Usar \A para salto de línea */

}

.consultaR:hover:after {
    padding: 10px;
    content: "Consulta R";
}

.ingresa:hover:after {
    padding: 10px;
    content: "Ingresar";
}

.btn-navbar {
    background-color: #ffffff;
    /* Color de fondo claro */
    color: #000000;
    /* Color de texto */
    border: 1px solid #cccccc;
    /* Borde gris claro */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Transición suave */
}

.btn-navbar:hover,
.btn-navbar:active,
.btn-navbar:focus {
    background-color: #f1f1f1;
    /* Fondo gris claro al pasar el ratón y al hacer clic */
    color: #333333;
    /* Color de texto un poco más oscuro */
    border-color: #bbbbbb;
    /* Borde un poco más oscuro en hover y active */
    outline: none;
    /* Elimina el borde de enfoque azul */
}

.minimal-footer {
    background-color: #f1f1f1;
    /* Color de fondo gris claro */
    color: #333;
    /* Color de texto */
    text-align: center;
    /* Centrar el texto */
    padding: 20px 0;
    /* Espaciado vertical */
    border-top: 1px solid #e0e0e0;
    /* Línea sutil en la parte superior */
    position: relative;
    /* Asegura que no interfiera con otros elementos */
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1000px;
    /* Ancho máximo para centrar el contenido */
    margin: 0 auto;
    /* Centrar el contenido horizontalmente */
}

.footer-content p {
    margin: 5px 0;
    /* Espaciado entre párrafos */
    font-size: 14px;
    /* Tamaño de fuente más pequeño */
    color: #555;
    /* Color de texto gris para menor contraste */
}

.footer-content a {
    color: #007bff;
    /* Color de enlaces */
    text-decoration: none;
    /* Sin subrayado */
}

.footer-content a:hover {
    text-decoration: underline;
    
}


.responsive-text {
    text-align: center;
    font-size: 1.2vw;
    color: white;
    
}

.min-title{
    display: none;
    color: white;
}

.app-container{
padding: 0px !important;
}

@media (max-width: 1200px) {
    .responsive-text {
        font-size: 3vw;
        
    }
}

@media (max-width: 768px) {
    .responsive-text {
        font-size: 4vw;
        
    }
    .content {
        padding-top: 550px;
        padding-bottom: 650px
    }
    .min-title {
        display: block;
    }
}

@media (max-width: 480px) {
    .responsive-text {
        font-size: 5vw;
        
    }
    .min-title {
        display: block;
    }
}

@media (max-width: 768px) {
    #logo {
        width: 50%;
        /* Ajusta el ancho del logo en pantallas más pequeñas */
    }
}

@media (max-width: 480px) {
    #logo {
        width: 40%;
        /* Ajusta aún más para pantallas muy pequeñas */
    }
}
