.smiley-faq-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 60px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.faq-header .emoji {
    font-size: 36px;
}

.faq-header .subtitle {
    font-size: 16px;
    color: #4a5568;
    margin-top: 10px;
    line-height: 1.5;
}

/* Tabs de categorías */
.faq-category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-category-btn .icon {
    font-size: 20px;
}

.faq-category-btn:hover {
    border-color: #ff0000;
    background: #fff5f5;
}

.faq-category-btn.active {
    background: #33cc33;
    color: #fff;
    border-color: #33cc33;
}

/* FAQ Items */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.faq-item-frontend {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-frontend:hover {
    border-color: #cbd5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-item-frontend.active .faq-question {
    background: #f0fdf4;
}

.faq-question h3 {
    flex: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #33cc33;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-frontend.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-frontend.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    margin: 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Final */
.faq-cta {
    margin-top: 40px;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
}

.faq-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #fff;
}

.faq-cta p {
    font-size: 16px;
    color: #cbd5e0;
    margin: 0 0 25px 0;
}

.faq-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-cta-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .smiley-faq-container {
        padding: 40px 20px;
        margin: 30px 15px;
        border-radius: 16px;
    }
    
    .faq-header h2 {
        font-size: 24px;
    }
    
    .faq-header .emoji {
        font-size: 28px;
    }
    
    .faq-category-tabs {
        flex-direction: column;
    }
    
    .faq-category-btn {
        justify-content: center;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-item-frontend.active .faq-answer {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta h3 {
        font-size: 20px;
    }
}