/* Componente: Sección FAQ con estilo Liquid Glass */

.faq-section {
    padding: 80px 0;
}

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

.faq-header .section-title {
    margin-bottom: 10px;
}

.faq-header .section-subtitle {
    color: #cccccc;
    margin: 0 auto;
}

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

.faq-item {
    background: rgba(17, 17, 17, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 6px 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item:focus-within {
    border-color: rgba(59, 167, 118, 0.5);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    user-select: none;
}

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

.faq-item summary span {
    flex: 1;
}

.faq-item summary svg {
    width: 24px;
    height: 24px;
    color: #3BA776;
    transition: transform 0.3s ease;
}

.faq-item[open] summary svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 10px;
}

.faq-answer p {
    margin: 16px 0 0;
    color: #cccccc;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        padding: 6px 18px;
    }

    .faq-item summary {
        font-size: 1rem;
        flex-direction: row;
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-item summary svg {
        transition: none;
    }
}











