/* Wrapper NO afecta body */
.smiley-faq-wrapper {
    background: white;
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    max-width: 1200px;
    margin: 0 auto;
}

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

.faq-title {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
}

.faq-spoiler {
    color: #718096;
}

/* Tabs */
.faq-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-button:hover {
    border-color: #33cc33;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(51, 204, 51, 0.2);
}

.tab-button.active {
    background: linear-gradient(135deg, #33cc33 0%, #28a428 100%);
    color: white;
    border-color: #33cc33;
}

.tab-icon {
    font-size: 1.5rem;
}

/* FAQ Content */
.faq-content {
    display: none;
    animation: fadeIn 0.4s;
}

.faq-content.active {
    display: block;
}

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

/* Accordion Items */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s;
}

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

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

.faq-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #33cc33 0%, #28a428 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 2000px;
    transition: max-height 0.6s ease-in;
}

.faq-answer-content {
    padding: 0 24px 24px 24px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer-content strong {
    color: #1a202c;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.divider {
    border: 0;
    border-top: 2px dashed #e2e8f0;
    margin: 16px 0;
}

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

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: white;
}

.faq-cta p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    color: white;
}

.cta-button {
    background: #ff0000;
    color: #ffffff;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: #33cc33;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(51, 204, 51, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .smiley-faq-wrapper {
        padding: 30px 15px;
        margin: 30px 10px;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 18px;
    }
    
    .faq-answer-content {
        padding: 0 18px 18px 18px;
        font-size: 0.9rem;
    }
    
    .faq-cta {
        padding: 32px 20px;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .smiley-faq-wrapper {
        padding: 35px 25px;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .tab-button {
        padding: 14px 24px;
    }
}

/* Destacar FAQ especial "Desayuno de Despedida" */
.faq-item.faq-featured {
    border: 2px solid #ff0000;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    position: relative;
}

.faq-item.faq-featured::before {
    content: "⭐ CRUCIAL";
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ff0000 0%, #ff6b6b 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.faq-item.faq-featured .faq-question {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.faq-item.faq-featured .faq-icon {
    background: linear-gradient(135deg, #ff0000 0%, #ff6b6b 100%);
}

@media (max-width: 768px) {
    .faq-item.faq-featured::before {
        top: -10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}