:root {
    --primary: #E67E22;     /* Laranja Apetite (Bancos/Ações) */
    --secondary: #2C3E50;   /* Azul Marinho Elegante (Textos/Menus) */
    --accent: #F1C40F;      /* Amarelo Ouro (Selos/Highlights) */
    --bg: #FFFDF5;          /* Creme Conforto (Fundo Suave) */
    --surface: #FFFFFF;     /* Branco Puro (Cards/Sessões) */
    --text: #2C3E50;        /* Texto midnight */
    --muted: #7F8C8D;       /* Cinza Discreto */
    --shadow: rgba(44, 62, 80, 0.1);
    --primary-glow: rgba(230, 126, 34, 0.2);
}

/* Configurações Gerais */
body { 
    font-family: 'Outfit', sans-serif; 
    margin: 0; 
    padding: 0; 
    background: var(--bg); 
    color: var(--text);
    line-height: 1.6;
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 20px; 
}

/* Cabeçalho */
header { 
    background: var(--surface); 
    color: var(--secondary); 
    padding: 60px 0; 
    text-align: center;
    border-bottom: 5px solid var(--accent);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

header h1 { 
    font-family: 'Playfair Display', serif;
    margin: 0; 
    font-size: 5rem; 
    letter-spacing: -3px; 
    font-weight: 950;
    line-height: 0.9;
    color: var(--secondary);
}

header span { 
    font-size: 1.1rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 8px;
    color: var(--primary);
    display: block;
    margin-top: 15px;
}

/* Menu */
nav { 
    background: var(--secondary); 
    text-align: center; 
    padding: 20px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

nav a { 
    color: var(--bg); 
    text-decoration: none; 
    margin: 0 30px; 
    font-weight: 800; 
    font-size: 1rem;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: inline-block;
}

nav a:hover { 
    color: var(--accent);
    transform: translateY(-3px);
}

/* Banner e Cards */
.banner { 
    background: linear-gradient(135deg, var(--primary), #D35400); 
    padding: 100px 50px; 
    border-radius: 50px; 
    text-align: center; 
    margin-bottom: 50px; 
    color: var(--surface);
    box-shadow: 0 30px 60px -12px rgba(230, 126, 34, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.banner h2 { 
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.banner p {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.banner p { 
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}

.adsense-top { 
    background: var(--white); 
    min-height: 120px; 
    margin: 30px 0; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    color: #bbb; 
    border: 2px dashed #eee; 
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feed { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
}

.receita-card { 
    background: var(--surface); 
    padding: 0; 
    border-radius: 40px; 
    box-shadow: 0 15px 45px var(--shadow); 
    text-align: center; 
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0,0,0,0.02);
}

.receita-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(44, 62, 80, 0.15);
}

.thumb { 
    height: 240px;
    background: #f0f0f0; 
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: 0.6s;
}

.receita-card:hover .thumb img {
    transform: scale(1.1);
}

.card-info {
    padding: 30px;
}

.receita-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 10px 0;
    font-weight: 900;
}

.receita-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
}

button { 
    background: var(--primary); 
    color: white; 
    border: none; 
    padding: 18px 45px; 
    border-radius: 20px; 
    cursor: pointer; 
    font-weight: 900; 
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: 0.4s;
    box-shadow: 0 10px 25px var(--primary-glow);
}

button:hover { 
    background: #D35400; /* Darker Orange */
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px var(--primary-glow);
}

/* Rodapé */
footer { 
    background: var(--secondary); 
    color: white; 
    padding: 60px 0; 
    text-align: center; 
    margin-top: 80px; 
}

footer p { opacity: 0.7; font-size: 0.9rem; margin-bottom: 15px; }

.links-legais a { 
    color: var(--accent); 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 600;
    margin: 0 10px;
}

.links-legais a:hover { text-decoration: underline; }

/* Estilos para Páginas de Receitas (Post Completo) */
.post-completo { 
    background: var(--white); 
    padding: 60px; 
    border-radius: 40px; 
    box-shadow: 0 20px 50px var(--shadow); 
    margin-top: 30px; 
}

.post-completo h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.8rem; 
    color: var(--secondary); 
    margin-bottom: 25px; 
    font-weight: 900; 
}

.post-completo h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
    color: var(--primary); 
    margin: 40px 0 20px; 
    font-weight: 700; 
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.recipe-hero { 
    width: 100%; 
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 30px; 
    object-fit: cover; 
    margin-bottom: 40px; 
    box-shadow: 0 10px 30px var(--shadow);
}

.info-rapida { 
    display: flex; 
    justify-content: space-around; 
    background: var(--bg); 
    padding: 25px; 
    border-radius: 20px; 
    margin: 30px 0; 
    font-weight: 700; 
    color: var(--secondary);
    border: 1px solid rgba(0,0,0,0.05);
}

.info-rapida span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ingredientes ul, .preparo ol { 
    padding-left: 25px; 
    margin-bottom: 30px; 
}

.ingredientes li, .preparo li { 
    margin-bottom: 15px; 
    font-size: 1.15rem; 
    color: var(--text);
}

.dica-mestre { 
    background: #FFFBCC; /* Fundo amarelinho para destaque de dica */
    border-left: 6px solid var(--accent); 
    padding: 30px; 
    font-style: italic; 
    border-radius: 15px; 
    margin: 40px 0;
}

.dica-mestre strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.adsense-area { 
    background: #f9f9f9; 
    border: 1px dashed #ddd; 
    padding: 30px; 
    text-align: center; 
    margin: 40px 0; 
    color: #999; 
    border-radius: 15px;
    font-size: 0.9rem;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-link { 
    display: inline-flex; 
    align-items: center;
    gap: 8px;
    margin-bottom: 30px; 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: 800; 
    font-size: 1rem;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--secondary);
    transform: translateX(-5px);
}

/* Responsivo para Receitas */
@media (max-width: 768px) {
    .post-completo { padding: 30px 20px; }
    .post-completo h2 { font-size: 2rem; }
    .info-rapida { flex-direction: column; gap: 15px; align-items: center; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 20px;
    right: 20px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    padding: 25px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    border: 1px solid rgba(0,0,0,0.05);
    transform: translateY(150%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 500;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-left: 30px;
}

.btn-cookie-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 8px 15px rgba(85, 107, 47, 0.2);
}

.btn-cookie-accept:hover {
    background: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(47, 79, 79, 0.2);
}


@media (max-width: 600px) {
    .receita-card[style*="display: flex"] {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px !important;
    }
    .receita-card[style*="display: flex"] div[style*="font-size: 8rem"],
    .receita-card[style*="display: flex"] div[style*="font-size: 5rem"] {
        width: 100% !important;
        font-size: 4rem !important;
    }
}
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 25px;
    }
    .cookie-buttons {
        margin-top: 20px;
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

/* Category Explorer */
.cat-explorer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.cat-card {
    text-decoration: none;
    color: #fff;
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.cat-card h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Calculadora de Porções */
.servings-calc {
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    margin: 20px 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #eee;
    font-weight: 700;
    color: var(--secondary);
}

.servings-calc input {
    width: 60px;
    padding: 10px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    text-align: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--primary);
}

.qty {
    color: var(--primary);
    font-weight: 900;
}

/* Estilos de Impressão */
@media print {
    nav, footer, .adsense-area, .back-link, .cookie-banner, .btn-falante, .servings-calc, button {
        display: none !important;
    }
    body { background: #fff; }
    .post-completo { 
        box-shadow: none !important; 
        padding: 0 !important; 
        margin: 0 !important;
    }
    .recipe-hero { 
        height: 300px !important; 
        margin-bottom: 20px !important; 
    }
}

/* --- ESTILOS DE BUSCA PREMIUM --- */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
    padding: 0 15px;
    z-index: 2000 !important;
}

#search-input {
    width: 100%;
    padding: 15px 25px;
    border: 2px solid rgba(85, 107, 47, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    outline: none;
}

#search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(85, 107, 47, 0.2);
    transform: translateY(-2px);
}

#search-results {
    position: absolute;
    top: 65px;
    left: 15px;
    right: 15px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 2001 !important;
    display: none;
    border: 1px solid #eee;
}

.search-item {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f9f9f9;
    transition: background 0.2s;
    text-align: left;
}

.search-item:hover {
    background: #f0f4ea;
}

.search-cat {
    display: block;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.search-title {
    font-weight: 600;
    font-size: 1rem;
}

.search-no-results {
    padding: 20px;
    color: #999;
    text-align: center;
    font-style: italic;
}
/* Redes Sociais no Rodapé */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.footer-contact {
    margin-top: 15px;
    font-size: 1rem;
}

.footer-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.footer-contact a:hover {
    border-bottom-color: var(--primary);
}
/* --- LIVRO DE RECEITAS 2.0: INTERATIVIDADE E HUMANIZAÇÃO --- */
.rating-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stars {
    color: #F1C40F;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.rating-score {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--secondary);
}

.rating-count {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-avalie {
    background: linear-gradient(135deg, #FF8C00, #E67E22);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-avalie:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 126, 34, 0.4);
}

.ingredientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.ingrediente-item {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s;
}

.ingrediente-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.ingrediente-icon {
    font-size: 2rem;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 12px;
}

.comentarios-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.comentarios-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.comentarios-header h3 {
    margin: 0 !important;
    border: none !important;
    padding: 0 !important;
}

/* Badge Premium */
.badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge-premium i { color: #F1C40F; }

@media (max-width: 768px) {
    .rating-container { justify-content: center; text-align: center; }
    .ingredientes-grid { grid-template-columns: 1fr; }
}
/* --- LIVRO DE RECEITAS PREMIUM V3: MOCKUP DESIGN --- */
.recipe-premium-card {
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(0,0,0,0.02);
}

.recipe-header-split {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
}

.recipe-hero-container {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.recipe-hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recipe-info-main {
    flex: 1;
    min-width: 350px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-info-main h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #8D4B1F;
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-weight: 900;
}

.recipe-premium-card .rating-container {
    margin: 0 0 30px 0;
}

.btn-avalie-premium {
    background: #FF6B00;
    color: #fff;
    padding: 15px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    display: inline-block;
    transition: 0.3s;
    text-transform: none;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.btn-avalie-premium:hover {
    transform: translateY(-3px);
    background: #E66000;
}

.ingredients-premium-box {
    background: #FDF5EF;
    margin: 40px;
    padding: 50px;
    border-radius: 30px;
}

.ingredients-premium-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #8D4B1F;
    margin: 0 0 30px 0;
    border: none;
    padding: 0;
}

.ingredients-grid-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 30px;
}

.ingredient-icon-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ingredient-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    margin-bottom: 5px;
}

.ingredient-icon-item span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    line-height: 1.2;
}

.ingredient-icon-item strong {
    color: #333;
    font-weight: 800;
    font-size: 1rem;
}

.recipe-content-split {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    padding: 0 60px 60px;
}

.preparation-premium h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #8D4B1F;
    margin: 0 0 30px 0;
    border: none;
    padding: 0;
}

.preparation-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.preparation-steps li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.7;
}

.preparation-steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #FF6B00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
}

.info-side-premium {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-side-premium h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8D4B1F;
    margin: 0 0 5px 0;
    border: none;
    padding: 0;
}

.info-item-premium {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
}

.info-item-premium strong {
    display: block;
    color: #333;
    font-weight: 800;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .recipe-info-main { padding: 40px; }
    .recipe-info-main h1 { font-size: 2.5rem; }
    .recipe-content-split { grid-template-columns: 1fr; gap: 40px; padding: 0 40px 40px; }
    .ingredients-premium-box { margin: 20px; padding: 30px; }
}

/* --- PROFESSIONAL UPGRADE: SHARING & INTERACTION --- */
.share-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 15px 25px;
    background: var(--surface);
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
    width: fit-content;
}

.share-bar span {
    font-weight: 800;
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-btn {
    width: 40px;
    height: 40px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    transform: scale(1.2) translateY(-3px);
}

.share-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Comment Count Style */
.comment-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0f4ea;
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 10px;
}

/* Floating Share Bar for Mobile */
@media (max-width: 768px) {
    .share-bar {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        margin: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    }
}

/* --- ACTION BUTTONS (AUDIO & PRINT) --- */
.recipe-actions {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.btn-premium-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    color: white;
    box-shadow: 0 8px 20px var(--shadow);
}

.btn-premium-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px var(--shadow);
}

.btn-audio {
    background: linear-gradient(135deg, var(--secondary), #34495e);
}

.btn-audio.speaking {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    animation: pulse-red 2s infinite;
}

.btn-print {
    background: linear-gradient(135deg, #7f8c8d, #95a5a6);
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

@media print {
    nav, footer, .adsense-area, .back-link, .cookie-banner, .recipe-actions, .share-bar, .btn-avalie-premium, #comentarios {
        display: none !important;
    }
    .recipe-premium-card {
        box-shadow: none !important;
        border: none !important;
    }
    .recipe-header-split {
        display: block !important;
    }
    .recipe-hero-container {
        height: 300px !important;
        margin-bottom: 20px !important;
    }
    .recipe-info-main {
        padding: 0 !important;
    }
    .ingredients-premium-box {
        margin: 20px 0 !important;
        padding: 20px !important;
        background: #f9f9f9 !important;
    }
    .recipe-content-split {
        display: block !important;
        padding: 0 !important;
    }
}
/* --- COMPONENTES DE PERFEIÇÃO V1 --- */
.fav-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF0F0;
    color: #E74C3C;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-left: 10px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    animation: heartBeat 2s infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

.utensils-box {
    margin-top: 30px;
    background: #F8F9FA;
    border: 2px solid #EEE;
    border-radius: 25px;
    padding: 25px;
}

.utensils-box h3 {
    margin-top: 0 !important;
    font-size: 1.2rem !important;
    color: var(--secondary) !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.utensils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.utensil-item {
    background: white;
    padding: 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.3s;
}

.utensil-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: var(--primary);
}

.utensil-icon {
    font-size: 1.2rem;
}

/* Ajuste na listagem de ingredientes */
.ingredients-grid-icons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .ingredients-grid-icons {
        grid-template-columns: 1fr 1fr;
    }
}
