/**
 * FAQ Section - Preguntas Frecuentes
 */

.faq-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 60px;
    font-style: italic;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.faq-item {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #f97316;
}

.faq-item.active {
    border-color: #f97316;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #f97316;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #f97316;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Note from loyal friend */
.faq-note {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border: 2px solid #f97316;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.faq-note-title {
    font-size: 1.5rem;
    color: #f97316;
    margin-bottom: 16px;
    font-weight: 700;
}

.faq-note-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
    
    .faq-note {
        padding: 24px;
    }
    
    .faq-note-title {
        font-size: 1.25rem;
    }
    
    .faq-note-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer p {
        padding: 0 16px 16px 16px;
        font-size: 0.9rem;
    }
}
