/* ===== RICH SNIPPETS CSS - FABENE MASSAS ===== */

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
    background: #741818;
    color: white;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #8b1a1a;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #555;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: white;
    padding: 80px 0;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-header {
    margin-bottom: 20px;
}

.review-rating {
    margin-bottom: 15px;
}

.stars {
    font-size: 1.5rem;
    color: #ffc107;
}

.review-title {
    color: #741818;
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.4;
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.review-author span:first-child {
    font-weight: 600;
    color: #741818;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

/* ===== HOWTO SECTION (Modo de Preparo) ===== */
.preparation-hero {
    background: linear-gradient(135deg, #741818 0, #8b1a1a 50%, #a01c1c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.preparation-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.preparation-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.preparation-main {
    padding: 40px 0;
    background: #f8f9fa;
}

.preparation-intro {
    text-align: center;
    margin-bottom: 60px;
}

.preparation-intro h2 {
    color: #741818;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.preparation-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Step by Step */
.preparation-steps {
    margin-bottom: 60px;
}

.preparation-steps h3 {
    color: #741818;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    background: #741818;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #741818;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-tip {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tip-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-tip strong {
    color: #856404;
}

.step-tip p {
    margin: 0;
    color: #856404;
}

/* Important Tips */
.important-tips {
    margin-bottom: 60px;
}

.important-tips h3 {
    color: #741818;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.tip-card .tip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tip-card h4 {
    color: #741818;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.tip-card ul {
    text-align: left;
    padding-left: 20px;
}

.tip-card li {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Recipe Variations */
.recipe-variations {
    margin-bottom: 60px;
}

.recipe-variations h3 {
    color: #741818;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.variations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.variation-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.variation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.variation-card h4 {
    color: #741818;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.variation-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Preparation CTA */
.preparation-cta {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.preparation-cta h3 {
    color: #741818;
    font-size: 2rem;
    margin-bottom: 20px;
}

.preparation-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-item {
        padding: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .tips-grid,
    .variations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .preparation-hero h1 {
        font-size: 2.5rem;
    }
    
    .preparation-hero p {
        font-size: 1.1rem;
    }
    
    .preparation-intro h2 {
        font-size: 2rem;
    }
    
    .preparation-steps h3,
    .important-tips h3,
    .recipe-variations h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .faq-section,
    .reviews-section,
    .preparation-main {
        padding: 30px 0;
    }
    
    .preparation-hero {
        padding: 60px 0;
    }
    
    .preparation-hero h1 {
        font-size: 2rem;
    }
    
    .preparation-hero p {
        font-size: 1rem;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .preparation-cta {
        padding: 30px 20px;
    }
    
    .preparation-cta h3 {
        font-size: 1.8rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item,
.review-item,
.step-item,
.tip-card,
.variation-card {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.review-item:nth-child(1) { animation-delay: 0.1s; }
.review-item:nth-child(2) { animation-delay: 0.2s; }
.review-item:nth-child(3) { animation-delay: 0.3s; }

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.5s; }
