/* FAQ Accordion Component Styles - DronAgro Red System */
.faq-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #dc2626; /* Rojo DronAgro */
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.faq-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #4b5563;
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.active {
    border-color: #dc2626;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.08);
}

.faq-question-btn {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question-btn:hover {
    color: #dc2626;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background-color: #dc2626;
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.35s ease-out;
    padding: 0 28px;
    background-color: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 22px 28px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}
