/* =========================================
   Preguntas Frecuentes — Front Page Section
   ========================================= */

.hp-faq {
    background: #e0e0e0;
    padding: 80px 5%;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item summary {
    padding: 20px 25px;
    font-size: 17px;
    font-weight: 600;
    color: #2c2c2c;
    cursor: pointer;
    font-family: 'Muli', sans-serif;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: #b0a0a7;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 25px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-item summary {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-item p {
        padding: 0 20px 18px;
    }
}
