/* ===== ESTILOS PARA FAQ - OPTIMIZADOS ===== */
.faq-section {
    padding: 120px 0 80px; /* 👈 Más espacio arriba para evitar solapamiento */
    background: linear-gradient(to bottom, #ffffff 0%, var(--cream) 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-family: 'GROBOLD', sans-serif;
    color: var(--primary-green);
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.faq-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.1);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 22px 28px;
    font-family: 'CARONI', serif;
    font-size: 1.4rem; /* 👈 Más grande */
    color: var(--violet);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: normal;
    background: rgba(122, 92, 140, 0.03);
    transition: background 0.3s ease;
    line-height: 1.3;
}

.faq-question:hover {
    background: rgba(122, 92, 140, 0.08);
}

.faq-question::after {
    content: '+';
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    color: var(--mustard);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
    font-family: 'Quicksand', sans-serif;
}

.faq-item.active .faq-answer {
    padding: 0 28px 28px;
    max-height: 600px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #555;
    margin: 16px 0;
}

.faq-answer p:first-child {
    margin-top: 18px;
}

.faq-answer strong {
    color: var(--primary-green);
    font-weight: 600;
}

.shipping-highlight {
    background: linear-gradient(to right, rgba(230, 184, 77, 0.1), transparent);
    border-left: 3px solid var(--mustard);
    padding: 16px;
    border-radius: 0 8px 8px 0;
    margin: 18px 0;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 100px 0 60px; /* Ajuste móvil */
    }

    .faq-header h1 {
        font-size: 2.2rem;
        padding: 0 15px;
    }

    .faq-header p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .faq-question {
        font-size: 1.25rem;
        padding: 20px 22px;
    }

    .faq-question::after {
        font-size: 1.6rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}