/* Estilos específicos para la vista de términos (terminos.html y terms.html) */

.banner-home {
    margin: 0 !important;
    height: 100vh !important;
}

.terms-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.logo-box {
    background: #ffffff;
    padding: 25px 40px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.logo-box img {
    height: 45px;
    width: auto;
}

.banner-home__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    color: #185480 !important;
    text-transform: uppercase;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    max-width: 800px !important;
}

header {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Contenido de términos: Títulos en negro, Cuerpo en gris */
.terms-content-box {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Kontora Regular', 'Outfit', sans-serif;
    line-height: 1.6;
    text-align: left;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.terms-content-box p {
    color: #6c757d;
    /* Gris para el texto descriptivo */
    margin-bottom: 1.5rem;
    font-family: 'Kontora Regular', sans-serif;
    font-size: 1.15rem;
    line-height: 1.5;
}

.terms-content-box strong {
    color: #000000;
    /* Negro para los encabezados numerados */
    display: block;
    font-weight: 700;
    font-family: 'Kontora', sans-serif;
    font-size: 1.17rem;
    margin-bottom: 0.1rem;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .logo-box {
        padding: 15px 30px;
    }

    .logo-box img {
        height: 35px;
    }

    .banner-home__title {
        font-size: 2.5rem !important;
    }

    .terms-content-box {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}