/* Estilos específicos para la página FAQ */
.faq-section {
    padding: 120px 0 80px;
    background-color: var(--light-color);
    min-height: calc(100vh - 100px);
}

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

.faq-header h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.faq-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-category {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-category:hover {
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.category-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.category-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-question {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question:before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-color);
    line-height: 1.8;
    padding-left: 35px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question:before {
    content: '\f058';
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 10px;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.search-box {
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input:focus {
    box-shadow: 0 0 10px rgba(0, 153, 204, 0.3);
}

.search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: var(--text-color);
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-categories {
        grid-template-columns: 1fr;
    }

    .faq-category {
        padding: 20px;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .faq-answer {
        padding-left: 25px;
    }
}