.titulo {
    font-family: 'Hatsch Sans', sans-serif;
    font-weight: 700;
}

.subtitulo {
    font-family: 'Roboto', sans-serif;
}

.texto {
    font-family: 'Hatsch Sans', sans-serif;
    font-size: 1.2rem !important;
}

.faq-lista-section {
    max-width: 1000px;
    width: calc(100% - 2rem);
    margin: 2rem auto;
    background: white;
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(9, 83, 116, 0.1);
    border: 3px solid var(--verde);
    position: relative;
}

.faq-lista-section::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed var(--verde);
    border-radius: 30px;
    pointer-events: none;
    opacity: 0.5;
}

.faq-lista-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.faq-lista-header h2 {
    font-family: 'Hatsch Sans', 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    color: var(--verde);
    margin-bottom: 0.5rem;
}

.faq-lista-header h2 span {
    color: var(--verde);
}

.faq-lista-header p {
    font-family: 'Roboto', sans-serif;
    color: var(--gris);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-lista-contenedor {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-lista-item {
    background: var(--blanco);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(9, 83, 116, 0.05);
}

.faq-lista-item:hover {
    border-color: var(--verde);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(9, 83, 116, 0.1);
}

.faq-lista-item.active {
    border-color: var(--verde);
    background: white;
}

.faq-lista-pregunta {
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
}

.faq-lista-icono {
    width: 36px;
    height: 36px;
    background: var(--verde);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
    flex-shrink: 0;
}

.faq-lista-item:hover .faq-lista-icono {
    background: var(--verde);
    color: var(--gris);
}

.faq-lista-item.active .faq-lista-icono {
    background: var(--verde);
    color: var(--gris);
}

.faq-lista-pregunta h3 {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gris);
}

.faq-lista-flecha {
    color: var(--verde-claro);
    transition: 0.3s;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-lista-item.active .faq-lista-flecha {
    transform: rotate(90deg);
    color: var(--verde);
}

.faq-lista-respuesta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
    font-family: 'Roboto', sans-serif;
    color: var(--gris);
    line-height: 1.6;
}

.faq-lista-item.active .faq-lista-respuesta {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-lista-respuesta p {
    font-size: 1.1rem;
    padding-left: 3rem;
}

.faq-lista-respuesta strong {
    color: var(--azul);
}

.faq-lista-badge {
    display: inline-block;
    background: var(--verde-claro);
    color: var(--gris);
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 3rem;
    margin-top: 0.5rem;
}

.faq-lista-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--verde-claro);
}

.faq-lista-cta p {
    font-family: 'Roboto', sans-serif;
    color: var(--gris);
    margin-bottom: 1rem;
}

.faq-lista-botones {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-lista-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-lista-btn-primario {
    background: var(--azul);
    color: white;
    border: 2px solid var(--verde-claro);
}

.faq-lista-btn-primario:hover {
    background: var(--verde);
    color: var(--gris);
    transform: translateY(-2px);
}

.faq-lista-btn-secundario {
    background: transparent;
    color: var(--azul);
    border: 2px solid var(--azul);
}

.faq-lista-btn-secundario:hover {
    background: var(--azul);
    color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE - ADAPTACIÓN A TODAS LAS PANTALLAS CON MÁRGENES ===== */

/* Escritorio grande (más de 1200px) */
@media (min-width: 1200px) {
    .faq-lista-section {
        max-width: 1000px;
        padding: 3rem;
    }
}

/* Escritorio mediano (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
    .faq-lista-section {
        max-width: 900px;
        padding: 2.5rem;
    }
}

/* Tablet (768px - 992px) */
@media (max-width: 992px) {
    .faq-lista-section {
        max-width: 85%;
        padding: 2rem;
        margin: 1.5rem auto;
    }
    
    .faq-lista-header h2 {
        font-size: 2rem;
    }
    
    .faq-lista-header p {
        font-size: 1rem;
    }
}

/* Móvil grande (576px - 768px) */
@media (max-width: 768px) {
    .faq-lista-section {
        max-width: 90%;
        padding: 1.5rem;
        margin: 1rem auto;
        border-radius: 30px;
    }
    
    .faq-lista-pregunta h3 {
        font-size: 0.95rem;
    }
    
    .faq-lista-respuesta p {
        padding-left: 0;
    }
    
    .faq-lista-badge {
        margin-left: 0;
    }
    
    .texto {
        font-size: 1rem !important;
    }
    
    .faq-lista-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-lista-pregunta {
        padding: 1rem;
    }
    
    .faq-lista-icono {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Móvil pequeño (hasta 576px) */
@media (max-width: 576px) {
    .faq-lista-section {
        max-width: 92%;
        padding: 1.2rem;
        margin: 0.8rem auto;
        border-radius: 25px;
    }
    
    .faq-lista-header {
        margin-bottom: 1.5rem;
    }
    
    .faq-lista-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-lista-header p {
        font-size: 0.9rem;
    }
    
    .faq-lista-pregunta h3 {
        font-size: 0.85rem;
    }
    
    .faq-lista-icono {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .faq-lista-item.active .faq-lista-respuesta {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-lista-respuesta p {
        font-size: 0.9rem;
    }
    
    .faq-lista-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .texto {
        font-size: 0.9rem !important;
    }
}

/* Móvil muy pequeño (hasta 380px) */
@media (max-width: 380px) {
    .faq-lista-section {
        max-width: 95%;
        padding: 1rem;
        margin: 0.6rem auto;
    }
    
    .faq-lista-pregunta {
        padding: 0.8rem;
        gap: 0.5rem;
    }
    
    .faq-lista-pregunta h3 {
        font-size: 0.8rem;
    }
    
    .faq-lista-icono {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .faq-lista-flecha {
        font-size: 0.8rem;
    }
}