/* ========== SECCIÓN FAQS CORREGIDA ========== */
.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--card-background);
    cursor: pointer;
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-item[open] summary {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    margin-top: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.faq-item[open] p {
    opacity: 1;
    transform: translateY(0);
}

.titulo_preguntas {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}