/* =====================================================
   CSS ESPECÍFICO PARA A PÁGINA RECEITAS
   ===================================================== */

/* Hero Receitas */
#receitas-hero {
    background: linear-gradient(135deg, #d69063 0%, #963919 100%);
    padding: 6em 0 4em 0;
    text-align: center;
    color: white;
}

#receitas-hero h1 {
    color: #ffe186;
    font-weight: bold;
    margin-bottom: 0.3em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 3px;
}

#receitas-hero .hero-subtitle {
    color: #e7d7c0;
    font-style: italic;
    margin-bottom: 1.5em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#receitas-hero .hero-description {
    color: #f5e6d3;
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Seção Receitas Grid */
#receitas-grid {
    background: linear-gradient(135deg, #f5e6d3 0%, #e7d7c0 100%);
    padding: 5em 0;
}

#receitas-grid .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

/* Seção Partituras do Café */
.receitas-section {
    text-align: left;
}

.receitas-intro {
    text-align: center;
    margin-bottom: 3em;
}

.receitas-intro h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
}

.receitas-intro .subtitle {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    font-style: italic;
}

/* Grid de métodos */
.metodos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    margin: 2em 0;
}

.metodo-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metodo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.metodo-card h3 {
    font-size: 1.1em;
    line-height: 1.3;
}

.metodo-card .nota {
    font-size: 0.9em;
    font-style: italic;
    opacity: 0.9;
}

/* Seção de dicas finais */
.dicas-finais h3 {
    font-size: 1.4em;
}

.dicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5em;
}

.dica-item h4 {
    font-size: 1em;
}

.dica-item p {
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

#receitas-grid .major h2 {
    color: #5b1d08;
    font-size: 3.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8em;
    letter-spacing: 2px;
}

#receitas-grid .major p {
    color: #963919;
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 4em;
    font-style: italic;
}

.receitas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5em;
}

.receita-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(91, 29, 8, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 225, 134, 0.2);
    position: relative;
}

.receita-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #ffe186, #ffd700);
}

.receita-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(91, 29, 8, 0.15);
    border-color: rgba(255, 225, 134, 0.4);
}

.receita-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #d69063, #963919);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3em;
    position: relative;
    overflow: hidden;
}

.receita-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(214, 144, 99, 0.3), rgba(150, 57, 25, 0.3));
}

.receita-image i {
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.receita-content {
    padding: 2.5em 2em;
}

.receita-card h3 {
    color: #5b1d08;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

.receita-categoria {
    display: inline-block;
    background: linear-gradient(135deg, #ffe186, #ffd700);
    color: #5b1d08;
    padding: 0.4em 1em;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2em;
}

.receita-card p {
    color: #7a4b33;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1.8em;
}

.receita-ingredientes {
    background: rgba(245, 230, 211, 0.5);
    border-radius: 15px;
    padding: 1.5em;
    margin-bottom: 2em;
}

.receita-ingredientes h4 {
    color: #5b1d08;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 1em;
}

.receita-ingredientes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.receita-ingredientes li {
    color: #7a4b33;
    font-size: 0.95em;
    padding: 0.3em 0;
    position: relative;
    padding-left: 1.5em;
}

.receita-ingredientes li::before {
    content: '•';
    color: #d69063;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.receita-dificuldade {
    display: flex;
    align-items: center;
    gap: 0.8em;
    margin-bottom: 1.5em;
}

.receita-dificuldade .label {
    color: #5b1d08;
    font-weight: 600;
    font-size: 0.95em;
}

.estrelas {
    display: flex;
    gap: 0.2em;
}

.estrelas i {
    color: #ffd700;
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.receita-tempo {
    display: flex;
    align-items: center;
    gap: 0.8em;
    margin-bottom: 2em;
    color: #7a4b33;
    font-size: 0.95em;
}

.receita-tempo i {
    color: #d69063;
    font-size: 1.1em;
}

.receita-card .button {
    background: linear-gradient(135deg, #d69063, #963919);
    color: white !important;
    padding: 1em 2.5em;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid rgba(214, 144, 99, 0.8);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(214, 144, 99, 0.3);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.receita-card .button:hover {
    background: linear-gradient(135deg, #963919, #5b1d08);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(214, 144, 99, 0.4);
    border-color: rgba(214, 144, 99, 1);
    text-decoration: none;
}

/* Seção Filtros (se necessário) */
.filtros-receitas {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-bottom: 3em;
    flex-wrap: wrap;
}

.filtro-btn {
    background: white;
    color: #5b1d08;
    padding: 0.8em 2em;
    border: 2px solid rgba(91, 29, 8, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.filtro-btn:hover,
.filtro-btn.active {
    background: linear-gradient(135deg, #d69063, #963919);
    color: white;
    border-color: rgba(214, 144, 99, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 144, 99, 0.3);
    text-decoration: none;
}

/* Seção CTA Newsletter */
#newsletter-receitas {
    background: linear-gradient(135deg, #963919 0%, #d69063 100%);
    padding: 5em 0;
    color: white;
    text-align: center;
}

#newsletter-receitas .inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2em;
}

#newsletter-receitas h2 {
    color: #ffe186;
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 0.5em;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#newsletter-receitas p {
    color: #e7d7c0;
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 2.5em;
}

.newsletter-form {
    display: flex;
    gap: 1em;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2em 1.5em;
    border: 2px solid rgba(255, 225, 134, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1em;
    backdrop-filter: blur(10px);
    min-width: 250px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 225, 134, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .button {
    background: linear-gradient(135deg, #ffe186, #ffd700);
    color: #5b1d08 !important;
    padding: 1.2em 3em;
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 225, 134, 0.8);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 225, 134, 0.3);
    text-decoration: none;
}

.newsletter-form .button:hover {
    background: linear-gradient(135deg, #ffcc00, #ff9800);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 225, 134, 0.5);
    border-color: rgba(255, 225, 134, 1);
    text-decoration: none;
}

/* Responsividade Receitas */
@media (max-width: 980px) {
    #receitas-hero {
        padding: 4em 0 3em 0;
    }
    
    #receitas-hero h1 {
        font-size: 3.4em;
    }
    
    #receitas-hero .hero-subtitle {
        font-size: 1.4em;
    }
    
    #receitas-hero .hero-description {
        font-size: 1.1em;
    }
    
    #receitas-grid {
        padding: 4em 0;
    }
    
    #receitas-grid .major h2 {
        font-size: 2.8em;
    }
    
    #receitas-grid .major p {
        font-size: 1.2em;
        margin-bottom: 3em;
    }
    
    .receitas-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2em;
    }
    
    .receita-content {
        padding: 2em 1.8em;
    }
    
    #newsletter-receitas {
        padding: 4em 0;
    }
    
    #newsletter-receitas h2 {
        font-size: 2.5em;
    }
    
    #newsletter-receitas p {
        font-size: 1.2em;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1.5em;
    }
    
    .newsletter-form input,
    .newsletter-form .button {
        min-width: 100%;
    }
}

@media (max-width: 736px) {
    #receitas-hero {
        padding: 3em 0 2em 0;
    }
    
    #receitas-hero h1 {
        font-size: 3.4em;
        letter-spacing: 2px;
    }
    
    #receitas-hero .hero-subtitle {
        font-size: 1.2em;
    }
    
    #receitas-hero .hero-description {
        font-size: 1em;
        padding: 0 1em;
    }
    
    #receitas-grid {
        padding: 3em 0;
    }
    
    #receitas-grid .inner {
        padding: 0 1.5em;
    }
    
    #receitas-grid .major h2 {
        font-size: 2.2em;
    }
    
    #receitas-grid .major p {
        font-size: 1.1em;
        margin-bottom: 2.5em;
    }
    
    .receitas-container {
        grid-template-columns: 1fr;
        gap: 1.8em;
    }
    
    .receita-image {
        height: 220px;
        font-size: 2.5em;
    }
    
    .receita-content {
        padding: 2em 1.5em;
    }
    
    .receita-card h3 {
        font-size: 1.6em;
    }
    
    .receita-card p {
        font-size: 1em;
    }
    
    .receita-ingredientes {
        padding: 1.2em;
    }
    
    .filtros-receitas {
        gap: 1em;
        margin-bottom: 2.5em;
    }
    
    .filtro-btn {
        padding: 0.7em 1.5em;
        font-size: 0.9em;
    }
    
    #newsletter-receitas {
        padding: 3em 0;
    }
    
    #newsletter-receitas .inner {
        padding: 0 1.5em;
    }
    
    #newsletter-receitas h2 {
        font-size: 2em;
    }
    
    #newsletter-receitas p {
        font-size: 1.1em;
        margin-bottom: 2em;
    }
    
    .newsletter-form input,
    .newsletter-form .button {
        padding: 1em 1.5em;
    }
}

@media (max-width: 480px) {
    #receitas-hero h1 {
        font-size: 3.4em;
        letter-spacing: 1px;
    }
    
    #receitas-hero .hero-subtitle {
        font-size: 1.1em;
    }
    
    #receitas-hero .hero-description {
        font-size: 0.95em;
        line-height: 1.6;
    }
    
    #receitas-grid .major h2 {
        font-size: 1.8em;
        letter-spacing: 1px;
    }
    
    #receitas-grid .major p {
        font-size: 1em;
        margin-bottom: 2em;
    }
    
    .receitas-container {
        gap: 1.5em;
    }
    
    .receita-card {
        border-radius: 15px;
    }
    
    .receita-image {
        height: 200px;
        font-size: 2.2em;
    }
    
    .receita-content {
        padding: 1.8em 1.2em;
    }
    
    .receita-card h3 {
        font-size: 1.4em;
    }
    
    .receita-categoria {
        font-size: 0.8em;
        padding: 0.3em 0.8em;
    }
    
    .receita-card p {
        font-size: 0.95em;
        margin-bottom: 1.5em;
    }
    
    .receita-ingredientes {
        padding: 1em;
    }
    
    .receita-ingredientes h4 {
        font-size: 1.1em;
    }
    
    .receita-ingredientes li {
        font-size: 0.9em;
    }
    
    .receita-card .button {
        padding: 0.9em 2em;
        font-size: 0.95em;
    }
    
    .filtros-receitas {
        gap: 0.8em;
        margin-bottom: 2em;
    }
    
    .filtro-btn {
        padding: 0.6em 1.2em;
        font-size: 0.85em;
    }
    
    #newsletter-receitas h2 {
        font-size: 1.8em;
        letter-spacing: 1px;
    }
    
    #newsletter-receitas p {
        font-size: 1em;
    }
    
    .newsletter-form input,
    .newsletter-form .button {
        padding: 0.9em 1.2em;
        font-size: 0.95em;
    }
    
    /* Responsividade para Partituras do Café */
    .metodos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5em;
    }
    
    .receitas-intro h2 {
        font-size: 2.2em;
    }
}

/* Tablets pequenos - Partituras do Café */
@media (max-width: 736px) {
    .receitas-intro {
        margin-bottom: 2em;
    }
    
    .receitas-intro h2 {
        font-size: 2em;
    }
    
    .receitas-intro .subtitle {
        font-size: 1.1em;
        padding: 0 1em;
    }
    
    .metodos-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    
    .metodo-card h3 {
        font-size: 1em;
        line-height: 1.4;
    }
    
    .dicas-grid {
        grid-template-columns: 1fr;
        gap: 1.2em;
    }
    
    .dicas-finais h3 {
        font-size: 1.2em;
        margin-bottom: 1em;
    }
}

/* Smartphones - Partituras do Café */
@media (max-width: 480px) {
    .receitas-intro h2 {
        font-size: 1.8em;
        line-height: 1.2;
    }
    
    .receitas-intro .subtitle {
        font-size: 1em;
        padding: 0 0.5em;
    }
    
    .metodo-card h3 {
        font-size: 0.95em;
    }
    
    .metodo-card li {
        font-size: 0.9em;
    }
    
    .dicas-finais h3 {
        font-size: 1.1em;
    }
    
    .dica-item h4 {
        font-size: 0.9em;
    }
    
    .dica-item p {
        font-size: 0.85em;
    }
}