/* Estilos específicos para la vista de FAQ (faq.html) */

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

.faq-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 FAQ: Preguntas en negro, Respuestas en gris */
.faq-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;
}

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

.faq-content-box strong {
    color: #000000;
    /* Negro para la pregunta */
    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;
    }

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

/* Banner de contacto final */
.faq-cta {
    background: #f4f6f9;
    padding: 3.5rem 2rem;
    text-align: center;
}

.faq-cta__title {
    color: #185480;
    font-family: 'Kontora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.faq-cta__desc {
    color: #6c757d;
    font-family: 'Kontora Regular', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta__btn {
    display: inline-block;
    background: #185480;
    color: #ffffff;
    padding: 0.6rem 3rem;
    border-radius: 999px;
    font-family: 'Kontora', 'Outfit', sans-serif;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.15rem;
    border: none;
    cursor: pointer;
}

.faq-cta__btn:hover {
    background: #113c5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 60, 92, 0.3);
}


