html {
    font-size: 14px; /* Tamaño base para móviles */
}

@media (min-width: 768px) {
    html {
        font-size: 16px; /* Tamaño base para escritorio */
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0; /* Cambio de 20px a 0 */
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

/* Mejoras para la navegación móvil */
.navbar {
    padding: 0.5rem 1rem; /* Padding más ajustado */
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

    .navbar-brand img {
        max-height: 40px; /* Altura máxima del logo */
        width: auto;
    }

/* Menú móvil */
@media (max-width: 768px) {
    .navbar-collapse {
        max-height: 80vh; /* Altura máxima del menú desplegable */
        overflow-y: auto; /* Scroll vertical si es necesario */
    }

    .navbar-nav {
        margin-top: 10px;
    }

    .navbar .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        text-align: left;
    }

    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 10px;
    }
}

/* Estilos de tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.navbar .nav-link {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #212529;
}

.navbar .navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
}

p, span, div {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

a {
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

/* Mejoras de accesibilidad y usabilidad móvil */
@media (max-width: 768px) {
    /* Asegura elementos táctiles más grandes */
    .nav-link, .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
