/* ===== Estilos base ===== */

.text-white {
    color: white;
}

.ingresar-img {
    width: 150px;
    max-width: 100%;
}

#logo-container {
    padding: 2rem 1rem; /* espacio arriba/abajo y laterales */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

#logo {
    max-width: 100%;
    height: auto;
}

.section-apps {
    padding: 2rem 1rem;
    text-align: center;
}

/* Estilo para los textos responsivos */
.responsive-text {
    font-size: 1.8rem;
    line-height: 1.4;
}

.min-title {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin-top: 0.5rem;
}

/* Estilo para el botón "Ingresar" */
.card.ingresa {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: transform 0.2s ease;
}

.card.ingresa:hover {
    transform: scale(1.05);
}

/* ===== Media Queries (Responsividad) ===== */

@media (max-width: 480px) {
    .responsive-text {
        font-size: 1.4rem;
    }

    .ingresar-img {
        width: 120px;
    }

    .min-title {
        font-size: 1rem;
    }

    #logo-container {
        padding-top: 80px; /* espacio simulado del header oculto */
    }
}

@media (min-width: 481px) and (max-width: 991px) {
    .responsive-text {
        font-size: 1.6rem;
    }

    .ingresar-img {
        width: 130px;
    }
}

@media (min-width: 992px) {
    .responsive-text {
        font-size: 2rem;
    }

    .ingresar-img {
        width: 150px;
    }
}
