:root {
    /* ===== PALETA MARICE — Doceria Artesanal Premium ===== */

    /* Verde floresta escuro (fundo da logo) */
    --primary-color:     #2C5F3F;
    /* Rosa blush suave (texto/elementos da logo) */
    --secondary-color:   #E8B4A0;
    /* Verde profundo para hover/acento escuro */
    --accent-color:      #1A3D29;
    /* Rosa mais claro — destaques sutis */
    --highlight-color:   #F5CFC0;
    /* Creme quente — fundo geral */
    --background-color:  #FAF6F2;
    /* Creme mais escuro — fundos alternados de seção */
    --surface-alt:       #F3EDE7;
    /* Sálvia suave — elemento complementar */
    --sage-color:        #7A9E8B;
    /* Texto principal — carvão suave */
    --text-color:        #2C2C2C;
    /* Texto secundário */
    --text-muted:        #6B6B6B;
    /* Superfícies brancas (cards) */
    --surface-color:     #FFFFFF;
    /* Sombra padrão com verde */
    --shadow-green:      rgba(44, 95, 63, 0.12);
    /* Borda suave */
    --border-color:      rgba(44, 95, 63, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    padding: 0.3rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 120px;
    white-space: nowrap;
    cursor: pointer;
}

.logo-container img {
    height: 100%;
    width: auto;
    max-height: 120px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    color: white;
    white-space: nowrap;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.logo-text .texto-curto,
.logo-text .texto-minimo {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.88);
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a:last-child {
    margin-right: 2em;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
	padding-top: 100px;
}

.hero-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: -3rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 0.3rem;
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 2rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--accent-color);
}

/* Sobre Section */
.sobre {
    padding: 5rem 0;
}

.valores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.valor-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Chef Section */
.chef-section {
    margin-top: 5rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chef-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.chef-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.chef-text {
    flex: 1;
}

.chef-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Valor Item Icons */
.valor-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Produtos Section - Versão Corrigida */
.produtos {
    padding: 5rem 0;
    background-color: white;
}

.produtos h2 {
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.categorias {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.categoria-btn {
    padding: 0.8rem 2.5rem;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.categoria-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 95, 63, 0.3);
}

.categoria-btn.ativo {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(44, 95, 63, 0.4);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.produto-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 450px;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.produto-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-img {
    transform: scale(1.05);
}

.produto-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    background-color: white;
    position: relative;
    z-index: 2;
}

.produto-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.produto-info .descricao {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.produto-card .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.produto-card .cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 63, 0.3);
}

.produto-card .cta-button i {
    font-size: 1.1rem;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
    .produtos {
        padding: 3rem 0;
    }
    
    .produtos h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .categorias {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .categoria-btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .produto-card {
        min-height: 400px;
    }
    
    .produto-img {
        height: 200px;
    }
    
    .produto-info {
        padding: 1.2rem;
    }
    
    .produto-info h3 {
        font-size: 1.3rem;
    }
    
    .produto-info .descricao {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 480px) {
    .categorias {
        flex-direction: column;
        align-items: center;
    }
    
    .categoria-btn {
        width: 200px;
    }
    
    .produto-card {
        min-height: 380px;
    }
    
    .produto-img {
        height: 180px;
    }
    
    .produto-info {
        padding: 1rem;
    }
    
    .produto-info h3 {
        font-size: 1.2rem;
    }
}

/* Animação de carregamento */
.produto-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.produto-card:nth-child(1) { animation-delay: 0.1s; }
.produto-card:nth-child(2) { animation-delay: 0.2s; }
.produto-card:nth-child(3) { animation-delay: 0.3s; }
.produto-card:nth-child(4) { animation-delay: 0.4s; }
.produto-card:nth-child(5) { animation-delay: 0.5s; }
.produto-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state */
.produtos-grid.loading .produto-card {
    opacity: 0.5;
    pointer-events: none;
}

/* Estados de erro para imagens */
.produto-img[style*="display: none"] + .produto-info::before {
    content: "📷 Imagem não disponível";
    display: block;
    height: 250px;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
}

/* Contato Section */
.contato {
    padding: 5rem 0;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contato-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.dev-credits {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.dev-credits a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.dev-credits a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-color);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0.5rem 0;
        display: block;
    }

    .hero-logo {
        max-width: 150px;
        margin-bottom: 0.2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .logo-text {
        display: none;
    }
}

/* CTA Especial */
.cta-especial {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--surface-alt);
}

.cta-especial h2 {
    margin-bottom: 1rem;
}

.cta-especial p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contato Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

.contato-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contato-item a:hover {
    color: var(--primary-color);
}

/* Ajustando responsividade */
@media (max-width: 992px) {
    .logo-text .texto-completo {
        display: none;
    }
    
    .logo-text .texto-curto {
        display: inline;
        font-size: 1.4rem;
    }
    
    .logo-text {
        display: block;
    }
}

@media (max-width: 576px) {
    .logo-text {
        display: none;
    }
}

/* Ajustando o container da logo para telas menores */
@media (max-width: 992px) {
    .logo-container {
        height: 100px;
    }
    
    .logo-container img {
        max-height: 100px;
    }
}

/* Logo no hero */
.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: -3rem;
    position: relative;
    z-index: 1;
}

/* Escondendo as diferentes versões do texto */
.logo-text .texto-curto,
.logo-text .texto-minimo {
    display: none;
}

/* Ajuste na seção da chef para mobile */
@media (max-width: 768px) {
    .chef-info {
        flex-direction: column;
        text-align: center;
    }

    .chef-img {
        margin: 0 auto 2rem;
    }

    .chef-text {
        text-align: left;
    }
}

/* Responsividade do texto da logo */
@media (max-width: 992px) {
    .logo-container {
        height: 100px;
    }
    
    .logo-container img {
        max-height: 100px;
    }

    .logo-text .texto-completo {
        display: none;
    }
    
    .logo-text .texto-curto {
        display: inline;
        font-size: 1.4rem;
    }
    
    .logo-text {
        display: block;
    }
}

@media (max-width: 576px) {
    .logo-container {
        height: 80px;
    }
    
    .logo-container img {
        max-height: 80px;
    }

    .logo-text .texto-curto {
        display: none;
    }
    
    .logo-text .texto-minimo {
        display: inline;
        font-size: 1.2rem;
    }
}

/* Responsividade da logo no hero */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 150px;
        margin-bottom: -2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
}

/* Modal Tabela Nutricional */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.active {
    opacity: 1;
}

.modal-content {
    background-color: var(--background-color);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 15px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform 0.2s;
}

.close-modal:hover {
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.produtos-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.produto-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.produto-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.produto-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.info-section:last-child {
    border-bottom: none;
}

.info-section h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.dietetico {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.tabela-nutricional {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: white;
}

.tabela-nutricional th,
.tabela-nutricional td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.tabela-nutricional th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.tabela-nutricional tr:last-child td {
    border-bottom: none;
}

.tabela-nutricional tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header {
        border-radius: 0;
        padding: 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .produto-card {
        padding: 1rem;
    }

    .tabela-nutricional th,
    .tabela-nutricional td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Adicione estas regras ao final do seu arquivo style.css existente */

/* Filtros de Dietas */
.filtros-dietas-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.filtros-dietas {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filtros-dietas h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.filtros-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.filtro-dieta-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filtro-dieta-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 95, 63, 0.2);
}

.filtro-dieta-btn.ativo {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(44, 95, 63, 0.3);
}

.filtro-dieta-btn.limpar {
    border-color: #dc3545;
    color: #dc3545;
}

.filtro-dieta-btn.limpar:hover,
.filtro-dieta-btn.limpar.ativo {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

/* Badges de Dietas no Card do Produto */
.produto-dietas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.dieta-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background-color: #f8f9fa;
    color: var(--text-color);
    border: 1px solid #dee2e6;
}

.dieta-badge.vegano {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.dieta-badge.funcional {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.dieta-badge.diet {
    background-color: #ffc107;
    color: var(--text-color);
    border-color: #ffc107;
}

/* Preço do Produto */
.produto-preco {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

/* Mensagem de nenhum produto encontrado */
.nenhum-produto {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.nenhum-produto i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.nenhum-produto p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.nenhum-produto .limpar-filtros {
    margin-top: 0;
    display: inline-block;
    padding: 0.8rem 2rem;
}

/* Ajuste na responsividade */
@media (max-width: 768px) {
    .filtros-dietas {
        padding: 1rem;
    }
    
    .filtros-botoes {
        gap: 0.5rem;
    }
    
    .filtro-dieta-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .produto-dietas {
        gap: 0.3rem;
    }
    
    .dieta-badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .produto-preco {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .filtros-botoes {
        justify-content: center;
    }
    
    .filtro-dieta-btn {
        width: calc(50% - 0.25rem);
        text-align: center;
        white-space: normal;
    }
}

/* Filtros de dois eixos */
.filtros-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filtros-categoria, .filtros-restricoes {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.filtros-restricoes {
    border-bottom: none;
}

.filtros-categoria h4, .filtros-restricoes h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filtros-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.filtro-categoria-btn, .filtro-restricao-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filtro-categoria-btn:hover, .filtro-restricao-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 95, 63, 0.2);
}

.filtro-categoria-btn.ativo, .filtro-restricao-btn.ativo {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(44, 95, 63, 0.3);
}

.filtro-restricao-btn.limpar {
    border-color: #6c757d;
    color: #6c757d;
}

.filtro-restricao-btn.limpar:hover,
.filtro-restricao-btn.limpar.ativo {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

/* Badges de Dietas - Cores atualizadas */
.dieta-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background-color: #f8f9fa;
    color: var(--text-color);
    border: 1px solid #dee2e6;
}

.dieta-badge.funcional {
    background-color: #2C5F3F;  /* Verde principal da marca */
    color: white;
    border-color: #2C5F3F;
}

.dieta-badge.vegano {
    background-color: #4CAF50;  /* Verde mais claro */
    color: white;
    border-color: #4CAF50;
}

.dieta-badge.sem-gluten {
    background-color: #2196F3;  /* Azul */
    color: white;
    border-color: #2196F3;
}

.dieta-badge.sem-lactose {
    background-color: #9C27B0;  /* Roxo */
    color: white;
    border-color: #9C27B0;
}

.dieta-badge.sem-acucar {
    background-color: #FF9800;  /* Laranja */
    color: white;
    border-color: #FF9800;
}

/* Botão Ver Mais */
.ver-mais-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.ver-mais-btn:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.ver-mais-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Descrição completa */
.descricao-completa {
    margin: 0.5rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Ajuste no card do produto */
.produto-info {
    display: flex;
    flex-direction: column;
}

.produto-info .descricao {
    margin: 0.5rem 0;
}

.produto-info .cta-button {
    margin-top: 0.5rem;
}

/* Mensagem de nenhum produto */
.nenhum-produto {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.nenhum-produto i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.nenhum-produto p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.nenhum-produto .limpar-tudo {
    margin-top: 0;
    display: inline-block;
    padding: 0.8rem 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .filtros-categoria, .filtros-restricoes {
        padding: 1rem;
    }
    
    .filtros-botoes {
        gap: 0.5rem;
    }
    
    .filtro-categoria-btn, .filtro-restricao-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .dieta-badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .filtros-botoes {
        justify-content: center;
    }
    
    .filtro-categoria-btn, .filtro-restricao-btn {
        width: calc(50% - 0.25rem);
        text-align: center;
        white-space: normal;
    }
}

/* ===== NOVAS CLASSES PARA MELHORAR ESPAÇAMENTO ===== */

/* Seção Onde Encontrar */
.onde-encontrar {
    padding: 5rem 0;
    background-color: white;
}

.onde-encontrar h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.onde-encontrar p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.endereco-box {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(44,95,63,0.1);
}

.endereco-box p {
    margin-bottom: 0;
    line-height: 2;
    font-size: 1.1rem;
}

.endereco-box strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.whatsapp-button {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.whatsapp-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,95,63,0.3);
}

/* Seção FAQ */
.faq-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(44,95,63,0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44,95,63,0.1);
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    padding-bottom: 0.8rem;
}

.faq-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Ajustes na Hero */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content p {
    margin-bottom: 1.5rem;
    color: var(--background-color);
}

.hero-content p:last-child {
    margin-bottom: 0;
}

/* Ajustes na seção Sobre */
.sobre p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sobre p:last-child {
    margin-bottom: 0;
}

/* Ajustes na seção Produtos */
.produtos p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* CTA Especial */
.cta-especial {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.cta-especial .container {
    text-align: center;
}

.cta-especial h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.cta-especial p {
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contato */
.contato-item p {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .onde-encontrar h2,
    .faq-section h2,
    .cta-especial h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .onde-encontrar,
    .faq-section,
    .cta-especial {
        padding: 3rem 0;
    }
    
    .onde-encontrar h2,
    .faq-section h2,
    .cta-especial h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .endereco-box {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .endereco-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .onde-encontrar h2,
    .faq-section h2,
    .cta-especial h2 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1.2rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .endereco-box {
        padding: 1.2rem;
    }
}
/* ===== NOVA SEÇÃO: VEJA TAMBÉM ===== */
.veja-tambem {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-top: 1px solid rgba(44,95,63,0.1);
    border-bottom: 1px solid rgba(44,95,63,0.1);
}

.veja-tambem h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.veja-tambem > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.veja-tambem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.veja-tambem-card {
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(44,95,63,0.1);
    position: relative;
    overflow: hidden;
}

.veja-tambem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44,95,63,0.15);
    border-color: var(--primary-color);
}

.veja-tambem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.veja-tambem-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(44,95,63,0.2);
}

.card-icon i {
    font-size: 2.2rem;
    color: white;
}

.veja-tambem-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.veja-tambem-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.veja-tambem-card:hover .card-link {
    gap: 0.8rem;
}

.veja-tambem-card:hover .card-link i {
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 992px) {
    .veja-tambem h2 {
        font-size: 2.2rem;
    }
    
    .veja-tambem-grid {
        gap: 1.5rem;
    }
    
    .veja-tambem-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .veja-tambem {
        padding: 3rem 0;
    }
    
    .veja-tambem h2 {
        font-size: 2rem;
    }
    
    .veja-tambem-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .veja-tambem-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .veja-tambem h2 {
        font-size: 1.8rem;
    }
    
    .veja-tambem > .container > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}
/* Ajustes para os SVGs na seção veja-tambem */
.veja-tambem-card .svg-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1); /* Torna o SVG branco para contrastar com o fundo verde */
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(44,95,63,0.2);
}

/* Caso seus SVGs já sejam coloridos e você queira manter as cores originais, remova o filter acima e use: */
.veja-tambem-card .svg-icon.colored {
    width: 50px;
    height: 50px;
    filter: none;
}
/* ===== NOVAS SEÇÕES PARA O INDEX.HTML ===== */

/* Categorias Especiais (Cards com Ícones) */
.categorias-especiais {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.categorias-especiais h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.categorias-especiais > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.categorias-especiais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.categoria-especial-card {
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(44,95,63,0.1);
    position: relative;
    overflow: hidden;
}

.categoria-especial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44,95,63,0.15);
    border-color: var(--primary-color);
}

.categoria-especial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.categoria-especial-card:hover::before {
    transform: scaleX(1);
}

.categoria-especial-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(44,95,63,0.2);
}

.categoria-especial-card .card-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1); /* Torna o SVG branco */
}

.categoria-especial-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.categoria-especial-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.categoria-especial-card .card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.categoria-especial-card .card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.categoria-especial-card:hover .card-link {
    gap: 0.8rem;
}

.categoria-especial-card:hover .card-link i {
    transform: translateX(5px);
}

/* Depoimentos */
.depoimentos {
    padding: 5rem 0;
    background-color: white;
}

.depoimentos h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.depoimentos > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.depoimento-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(44,95,63,0.1);
    transition: transform 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44,95,63,0.1);
}

.depoimento-card .fa-quote-left {
    color: var(--secondary-color);
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.depoimento-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cliente-info {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.cliente-info strong {
    color: var(--primary-color);
    display: block;
    font-size: 1.1rem;
}

.cliente-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Feiras */
.feiras {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.feiras h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feiras > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.feiras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.feira-card {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(44,95,63,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feira-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44,95,63,0.1);
    border-color: var(--primary-color);
}

.feira-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(44,95,63,0.2);
}

.feira-icon i {
    font-size: 2rem;
    color: white;
}

.feira-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feira-dia {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feira-local {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feira-obs {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(44,95,63,0.2);
}

.feiras-obs-geral {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1rem;
    background-color: rgba(44,95,63,0.05);
    border-radius: 10px;
    margin-top: 1em!important;
}

/* ===== SEÇÃO DE CADASTRO WHATSAPP - CORRIGIDA ===== */

.cadastro-whatsapp {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    color: white;
}

.cadastro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cadastro-whatsapp h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cadastro-whatsapp p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 2rem auto;
}

/* CORREÇÃO AQUI - Ícones e textos visíveis */
.beneficio-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: white; /* Fundo branco */
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-color); /* Texto escuro */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.beneficio-item i {
    font-size: 1.5rem;
    color: var(--primary-color); /* Ícones verdes */
    opacity: 1;
}

.beneficio-item span {
    font-weight: 500;
    color: var(--text-color); /* Texto escuro */
}

.whatsapp-cadastro {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background-color: #25D366;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin: 1rem 0;
}

.whatsapp-cadastro i {
    color: white;
    font-size: 1.4rem;
}

.whatsapp-cadastro:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.cadastro-obs {
    font-size: 0.9rem !important;
    margin-top: 1.5rem;
    color: white !important;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .cadastro-whatsapp h2 {
        font-size: 2rem;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .beneficio-item {
        padding: 0.8rem 1.2rem;
    }
    
    .whatsapp-cadastro {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cadastro-whatsapp {
        padding: 3rem 0;
    }
    
    .cadastro-whatsapp h2 {
        font-size: 1.8rem;
    }
    
    .beneficio-item {
        font-size: 0.95rem;
    }
}
/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: white;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(44,95,63,0.05);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44,95,63,0.1);
    border-color: var(--primary-color);
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.faq-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Ajustes nos contatos */
.contato-obs {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.contato-item p {
    margin-top: 0.5rem;
}

/* Responsividade */
@media (max-width: 1200px) {
    .categorias-especiais-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categorias-especiais h2,
    .depoimentos h2,
    .feiras h2,
    .faq-section h2,
    .cadastro-whatsapp h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .categorias-especiais-grid,
    .depoimentos-grid,
    .feiras-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .categorias-especiais,
    .depoimentos,
    .feiras,
    .faq-section,
    .cadastro-whatsapp {
        padding: 3rem 0;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .categorias-especiais h2,
    .depoimentos h2,
    .feiras h2,
    .faq-section h2,
    .cadastro-whatsapp h2 {
        font-size: 1.8rem;
    }
    
    .categoria-especial-card {
        padding: 2rem 1rem;
    }
    
    .depoimento-card {
        padding: 1.5rem;
    }
    
    .beneficio-item {
        padding: 0.8rem;
    }
    
    .whatsapp-cadastro {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}
/* ===== PÁGINA DE CONTATO ===== */

/* Hero da página */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Cards de contato */
.contato-cards {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contato-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(44,95,63,0.1);
    display: flex;
    flex-direction: column;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44,95,63,0.1);
    border-color: var(--primary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.whatsapp-bg { background: linear-gradient(135deg, #25D366, #128C7E); }
.endereco-bg { background: linear-gradient(135deg, #dc3545, #bb2d3b); }
.email-bg { background: linear-gradient(135deg, #007bff, #0056b3); }
.social-bg { background: linear-gradient(135deg, #833AB4, #E4405F); }

.contato-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-destaque {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.card-info {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.card-acoes {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-whatsapp, .btn-lista, .btn-mapa, .btn-agenda, .btn-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-lista {
    background: var(--secondary-color);
    color: var(--text-color);
}

.btn-lista:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-mapa {
    background: #dc3545;
    color: white;
}

.btn-mapa:hover {
    background: #bb2d3b;
    transform: translateY(-2px);
}

.btn-agenda {
    background: var(--primary-color);
    color: white;
}

.btn-agenda:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-email {
    background: #007bff;
    color: white;
}

.btn-email:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Redes sociais */
.social-links-contato {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 1.5rem;
}

.social-link.instagram {
    background: linear-gradient(45deg, #833AB4, #E4405F);
}

.social-link.facebook {
    background: #3b5998;
}

.social-link:hover {
    transform: translateX(5px);
    filter: brightness(1.1);
}

/* Feiras */
.feiras-contato {
    padding: 4rem 0;
    background: white;
}

.feiras-contato h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.feiras-contato h2 i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.feiras-contato > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.feiras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feira-card {
    background: linear-gradient(135deg, #f9f9f9, white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(44,95,63,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.feira-dia {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.feira-local, .feira-horario {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #444;
}

.feira-local i, .feira-horario i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.feiras-obs {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 2rem;
    font-style: italic;
}

/* FAQ Contato */
.faq-contato {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9f9f9, white);
}

.faq-contato h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-contato h2 i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.faq-contato-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-contato-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(44,95,63,0.05);
}

.faq-contato-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-contato-item h3 i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.faq-contato-item p {
    color: #555;
    line-height: 1.7;
    margin-left: 2.5rem;
}

/* Mapa */
.mapa-section {
    padding: 4rem 0;
    background: white;
}

.mapa-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.mapa-section h2 i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.mapa-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Final */
.cta-final {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-grande {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button-grande:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Active nav */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 3px solid var(--primary-color);
}

/* Responsividade */
@media (max-width: 992px) {
    .contato-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .faq-contato-grid {
        grid-template-columns: 1fr;
    }
    
    .feiras-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .contato-card {
        padding: 2rem 1.5rem;
    }
    
    .card-destaque {
        font-size: 1.1rem;
        word-break: break-all;
    }
    
    .cta-button-grande {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}
/* ===== PÁGINA SOBRE ===== */

/* Hero específico */
.sobre-hero {
    background: linear-gradient(135deg, #1A3D29 0%, #2C5F3F 50%, #E8B4A0 100%);
}

/* Nossa História */
.nossa-historia {
    padding: 5rem 0;
    background: white;
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.historia-texto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.historia-destaque {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.historia-texto p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.historia-imagem img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.legenda {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Nossa Fundadora */
.nossa-fundadora {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9, white);
}

.nossa-fundadora h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.fundadora-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(44,95,63,0.1);
}

.fundadora-imagem {
    text-align: center;
}

.fundadora-img {
    width: 100%;
    max-width: 250px;
    border-radius: 50%;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    border: 5px solid var(--secondary-color);
}

.fundadora-texto h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.fundadora-titulo {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.fundadora-descricao {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.fundadora-timeline {
    margin-bottom: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e0e0e0;
}

.timeline-ano {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
}

.timeline-desc {
    color: #666;
}

.fundadora-social {
    display: flex;
    gap: 1rem;
}

.fundadora-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fundadora-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Nossos Valores */
.nossos-valores {
    padding: 5rem 0;
    background: white;
}

.nossos-valores h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.valor-card {
    background: linear-gradient(135deg, #f9f9f9, white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(44,95,63,0.1);
    transition: all 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44,95,63,0.1);
    border-color: var(--primary-color);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--text-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.valor-icon i {
    font-size: 2rem;
    color: white;
}

.valor-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.valor-card p {
    color: #666;
    line-height: 1.7;
}

/* Diferenciais */
.diferenciais {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9, white);
}

.diferenciais h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.diferencial-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(44,95,63,0.1);
    position: relative;
    overflow: hidden;
}

.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.03;
    border-radius: 0 0 0 100%;
}

.diferencial-numero {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.diferencial-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.diferencial-item p {
    color: #666;
    line-height: 1.7;
}

/* Linha do tempo visual */
.linha-tempo {
    padding: 5rem 0;
    background: white;
}

.linha-tempo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-visual {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--text-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(44,95,63,0.3);
}

.timeline-content {
    background: #f9f9f9;
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #555;
    max-width: 120px;
    margin: 0 auto;
}

/* Frase da fundadora */
.frase-fundadora {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3D7A55 100%);
    color: white;
}

.frase-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.frase-content .fa-quote-left {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.frase {
    font-size: 2rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.frase-autora {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
}

/* CTA Sobre */
.cta-sobre {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.cta-sobre h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-sobre p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .historia-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fundadora-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fundadora-img {
        margin: 0 auto;
    }
    
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-track {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .timeline-track::before {
        display: none;
    }
    
    .timeline-step {
        flex: 0 0 auto;
        width: 140px;
    }
}

@media (max-width: 768px) {
    .valores-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .frase {
        font-size: 1.5rem;
    }
    
    .historia-texto h2,
    .nossa-fundadora h2,
    .nossos-valores h2,
    .diferenciais h2,
    .linha-tempo h2 {
        font-size: 2rem;
    }
    
    .fundadora-card {
        padding: 2rem 1.5rem;
    }
}

/* Active nav */
.nav-links a.active {
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom: 3px solid var(--secondary-color);
}
/* ===== PÁGINA DE PRODUTOS - SEO ENRIQUECIDO ===== */

/* Hero com estatísticas */
.page-hero {
    background: linear-gradient(135deg, #1A3D29 0%, #2C5F3F 50%, #E8B4A0 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.hero-subtitulo {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-numero {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Introdução SEO */
.seo-intro {
    padding: 4rem 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Cards de categorias rápidas */
.categorias-rapidas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.categoria-rapida {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f9f9f9, white);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid rgba(44,95,63,0.1);
    transition: all 0.3s ease;
}

.categoria-rapida:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(44,95,63,0.1);
}

.categoria-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.categoria-nome {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.categoria-count {
    font-size: 0.85rem;
    color: #666;
}

/* Filtros */
.filtros-wrapper {
    background: #f9f9f9;
    padding: 2rem 0;
    border-top: 1px solid rgba(44,95,63,0.1);
    border-bottom: 1px solid rgba(44,95,63,0.1);
}

.filtros-header {
    text-align: center;
    margin-bottom: 2rem;
}

.filtros-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.filtros-header h3 i {
    margin-right: 0.5rem;
}

.filtros-header p {
    color: #666;
}

/* Benefícios */
.beneficios {
    padding: 5rem 0;
    background: white;
}

.beneficios h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.beneficio-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    background: #f9f9f9;
    transform: translateY(-5px);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.beneficio-icon i {
    font-size: 2rem;
    color: white;
}

.beneficio-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.beneficio-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Produtos */
.faq-produtos {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9, white);
}

.faq-produtos h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(44,95,63,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(44,95,63,0.1);
    border-color: var(--primary-color);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3 i {
    color: var(--secondary-color);
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    margin-left: 2rem;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* CTA Encomendas */
.cta-encomendas {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    text-align: center;
    color: white;
}

.cta-encomendas-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-encomendas h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cta-encomendas p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--background-color);
}

.cta-button-grande {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button-grande:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Footer melhorado */
footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .categorias-rapidas {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .categorias-rapidas {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        margin-left: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
/* ===== BENEFÍCIOS - CORREÇÃO DE ALINHAMENTO ===== */

.beneficios {
    padding: 5rem 0;
    background: white;
    text-align: center; /* Centraliza o título */
}

.beneficios h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto; /* Centraliza o grid */
    padding: 0 1rem;
}

.beneficio-item {
    text-align: center; /* Centraliza TODO o conteúdo do card */
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid rgba(44,95,63,0.05);
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    justify-content: flex-start;
}

.beneficio-item:hover {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44,95,63,0.1);
    border-color: var(--primary-color);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--text-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem; /* auto nas laterais centraliza */
    box-shadow: 0 10px 20px rgba(44,95,63,0.15);
}

.beneficio-icon i {
    font-size: 2rem;
    color: white;
}

.beneficio-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    width: 100%; /* Garante que o título ocupe toda largura */
}

.beneficio-item p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 auto; /* Centraliza o parágrafo */
    max-width: 280px; /* Limita largura para melhor leitura */
    text-align: center; /* Garante texto centralizado */
}

/* Responsividade */
@media (max-width: 992px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .beneficios h2 {
        font-size: 2rem;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .beneficio-item {
        padding: 2rem 1.5rem;
    }
    
    .beneficio-item p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .beneficios {
        padding: 3rem 0;
    }
    
    .beneficio-icon {
        width: 70px;
        height: 70px;
    }
    
    .beneficio-icon i {
        font-size: 1.8rem;
    }
    
    .beneficio-item h3 {
        font-size: 1.2rem;
    }
}
/* ===== FOOTER PADRÃO PARA TODAS AS PÁGINAS ===== */

footer {
    background: #1a2e1f;
    color: #e0e0e0;
    padding: 4rem 0 0;
    margin-top: 2rem;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.8fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Colunas */
.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

/* Coluna Sobre */
.footer-about {
    text-align: left;
}

.footer-about p {
    color: #b0b0b0;
    line-height: 1.7;
    margin: 1.2rem 0 1.5rem;
    font-size: 0.95rem;
    text-align: left;
}

.footer-logo {
    max-width: 140px;
    height: auto;
    filter: none;
    opacity: 1;
    background: transparent;
    display: inline-block;
	margin-bottom: -2rem;
}

/* REDES SOCIAIS - CORRIGIDO */
.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color); /* Fundo verde claro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2e1f; /* Texto escuro para contrastar */
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    outline: none;
}

.footer-social a i {
    display: block;
    line-height: 1;
    color: #1a2e1f; /* Ícones escuros */
}

.footer-social a:hover {
    background: white;
    transform: translateY(-3px);
    color: #1a2e1f;
}

.footer-social a:hover i {
    color: #1a2e1f;
}

/* Links */
.footer-links {
    text-align: left;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Contato */
.footer-contact {
    text-align: left;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-info li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    display: inline-block;
}

.footer-contact-info li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info li a:hover {
    color: var(--secondary-color);
}

/* Linha de Feiras */
.footer-feiras {
    background: rgba(0,0,0,0.2);
    padding: 1.2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
}

.footer-feiras p {
    color: #b0b0b0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-feiras i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.footer-feiras strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Copyright e CNPJ */
.footer-bottom {
    padding: 2rem 2rem 2.5rem;
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-cnpj {
    color: #a0a0a0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    /* border-top: 1px dashed rgba(255,255,255,0.1); */
    display: inline-block;
}

.dev-credits {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.dev-credits a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-credits a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsividade do Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-col {
        text-align: center !important;
    }
    
    .footer-about {
        text-align: center;
    }
    
    .footer-about p {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
        display: block;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0) translateY(-2px);
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact-info li {
        justify-content: center;
    }
    
    .footer-feiras p {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }
    
    .footer-contact-info li i {
        margin-bottom: 0.2rem;
    }
}
/* Linha de Feiras */
.footer-feiras {
    background: rgba(0,0,0,0.2);
    padding: 1.2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
}

.footer-feiras p {
    color: #b0b0b0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-feiras i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.footer-feiras strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Copyright e CNPJ */
.footer-bottom {
    padding: 2rem 2rem 2.5rem;
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-cnpj {
    color: #a0a0a0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
    display: inline-block;
}

.dev-credits {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.dev-credits a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-credits a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsividade do Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-col {
        text-align: center !important;
    }
    
    .footer-about {
        text-align: center;
    }
    
    .footer-about p {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
        display: block;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0) translateY(-2px);
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact-info li {
        justify-content: center;
    }
    
    .footer-feiras p {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }
    
    .footer-contact-info li i {
        margin-bottom: 0.2rem;
    }
}
/* ===== AJUSTES PARA AS LANDING PAGES ===== */

/* Cards do Veja Também - com ícones SVG brancos e menores */
.veja-tambem-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 16px rgba(44,95,63,0.2);
}

.veja-tambem-card .card-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1); /* Torna o SVG branco */
    transition: transform 0.3s ease;
}

.veja-tambem-card:hover .card-icon img {
    transform: scale(1.1);
}

/* Ajuste nos cards */
.veja-tambem-card {
    padding: 2rem 1.5rem;
}

.veja-tambem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.veja-tambem-card p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    color: #555;
}

/* Endereço Box - Corrigir links azuis */
.endereco-box {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 20px;
    margin: 2.5rem auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(44,95,63,0.15);
}

.endereco-box p {
    margin-bottom: 0;
    line-height: 2.2;
    font-size: 1.1rem;
    color: var(--text-color);
}

.endereco-box strong {
    color: var(--primary-color);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.endereco-box a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px dotted transparent;
}

.endereco-box a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.endereco-box i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
    display: inline-block;
}

/* Lista de Bairros */
.bairros-atendimento {
    margin: 3rem 0;
    text-align: center;
}

.bairros-atendimento h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.bairros-atendimento h3 i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.bairros-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(44,95,63,0.1);
}

.bairros-lista span {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: white;
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--text-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    border: 1px solid rgba(44,95,63,0.1);
    transition: all 0.3s ease;
}

.bairros-lista span:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.bairros-lista span::before {
    display: none; /* Remove os bullets/pontos */
}

/* Seção de Ingredientes Funcionais */
.beneficios-ingredientes {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

.beneficios-ingredientes h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.beneficios-ingredientes h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.ingredientes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ingrediente-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(44,95,63,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ingrediente-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44,95,63,0.1);
    border-color: var(--primary-color);
}

.ingrediente-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ingrediente-card:hover::before {
    transform: scaleX(1);
}

.ingrediente-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(44,95,63,0.15);
}

.ingrediente-icon i {
    font-size: 2.2rem;
    color: white;
}

.ingrediente-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.ingrediente-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .ingredientes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ingredientes-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .bairros-lista {
        border-radius: 20px;
        padding: 1.2rem;
    }
    
    .bairros-lista span {
        font-size: 0.85rem;
        padding: 0.2rem 0.8rem;
    }
    
    .endereco-box {
        padding: 1.5rem;
    }
    
    .endereco-box p {
        font-size: 1rem;
    }
    
    .endereco-box strong {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .bairros-lista span {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .ingrediente-card {
        padding: 2rem 1.5rem;
    }
}

/* Ajustes gerais para links */
a {
    text-decoration: none;
}

/* Garantir que os ícones SVG fiquem brancos nos cards do veja-tambem */
.veja-tambem-card .card-icon img {
    filter: brightness(0) invert(1);
    width: 35px;
    height: 35px;
}

/* Estilo para o hero das páginas */
.page-hero {
    background: linear-gradient(135deg, #1A3D29 0%, #2C5F3F 50%, #E8B4A0 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Introdução SEO */
.intro-seo {
    padding: 4rem 0;
    background: white;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.intro-content strong {
    color: var(--primary-color);
}
/* ===== ÍCONES SVG DOS INGREDIENTES FUNCIONAIS ===== */

.ingrediente-card .ingrediente-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(44,95,63,0.15);
}

.ingrediente-svg {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1); /* Torna o SVG branco */
    transition: transform 0.3s ease;
}

.ingrediente-card:hover .ingrediente-svg {
    transform: scale(1.1);
}

/* ===== CTA WHATSAPP - REFEITO ===== */
.cta-whatsapp {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f7e9, #ffffff);
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    margin: 2rem 0;
}

.cta-whatsapp-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-whatsapp-texto {
    flex: 1;
    min-width: 300px;
}

.cta-whatsapp-texto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-whatsapp-texto p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.cta-destaque {
    font-size: 1.2rem !important;
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-top: 1rem;
}

.cta-whatsapp-botao {
    flex: 0 0 auto;
    text-align: center;
}

.btn-whatsapp-grande {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
}

.btn-whatsapp-grande i {
    font-size: 1.8rem;
}

.btn-whatsapp-grande:hover {
    background: #128C7E;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.4);
}

.cta-obs {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.cta-obs::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.3rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-whatsapp-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-whatsapp-texto h2 {
        font-size: 1.8rem;
    }
    
    .btn-whatsapp-grande {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-whatsapp {
        padding: 3rem 0;
    }
    
    .btn-whatsapp-grande {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}
.logo-container {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* ===== BLOG STYLES ===== */
.blog-hero {
    background: linear-gradient(135deg, #2C5F3F 0%, #E8B4A0 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.blog-posts {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(44,95,63,0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44,95,63,0.1);
    border-color: #2C5F3F;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.blog-card h2 a {
    color: #2C5F3F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: var(--secondary-color);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #2C5F3F;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
    color: #1A3D29;
}

/* Post individual */
.blog-post {
    padding: 5rem 0;
    background: white;
}

.post-header {
   /* margin-top: 5rem; */
}

.post-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2C5F3F;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #666;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.post-tag {
    color: #2C5F3F;
    text-decoration: none;
    font-size: 0.9rem;
    background: #f0f7e9;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    display: inline-block;
    margin-right: 0.3rem;
}

.post-tag:hover {
    background: #2C5F3F;
    color: white;
}

.post-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin: 2rem 0;
}

.post-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content h2 {
    font-family: 'Playfair Display', serif;
    color: #2C5F3F;
    margin: 2.5rem 0 1rem;
}

.post-content h3 {
    color: #2C2C2C;
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary-color);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-share h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2C2C2C;
}

.post-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-whatsapp {
    background: #25D366;
}

.share-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.share-facebook {
    background: #3b5998;
}

.share-facebook:hover {
    background: #2d4373;
    transform: translateY(-2px);
}

.post-cta {
    text-align: center;
    background: linear-gradient(135deg, #f0f7e9, #ffffff);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(44,95,63,0.1);
}

.post-cta p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
}

.post-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-cta .cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44,95,63,0.2);
}

/* Tags Cloud */
.tags-cloud {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    padding: 0;
}

.tags-cloud li a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #f0f0f0;
    border-radius: 50px;
    color: #2C5F3F;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tags-cloud li a:hover {
    background: #2C5F3F;
    color: white;
    transform: translateY(-2px);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2C5F3F;
    text-align: center;
    margin-bottom: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .post-cta p {
        font-size: 1.1rem;
    }
}
/* =============================================================
   ADIÇÕES AO STYLE.CSS — Marice Doceria Blog Generator
   Cole este bloco ao final do arquivo style.css existente
   ============================================================= */

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: wppPulse 2.5s infinite;
}
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
    animation: none;
}
@keyframes wppPulse {
    0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50%  { box-shadow: 0 4px 30px rgba(37,211,102,0.85); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
}

/* ===== BARRA DE BUSCA DO BLOG ===== */
.blog-search-section {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1.2rem 0;
    margin-top: 140px !important;
}
.blog-search-wrapper {
    display: flex;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.blog-search-wrapper:focus-within {
    border-color: #2C5F3F;
    box-shadow: 0 0 0 3px rgba(44,95,63,0.12);
}
.blog-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.75rem 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: transparent;
    color: #333;
}
.blog-search-btn {
    background: #2C5F3F;
    color: white;
    border: none;
    padding: 0.75rem 1.4rem;
    cursor: pointer;
    font-size: 1.05rem;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.blog-search-btn:hover { background: #005c2b; }
.blog-search-results {
    max-width: 640px;
    margin: 0.6rem auto 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.search-result-item {
    display: block;
    padding: 0.9rem 1.3rem;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.2s ease;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--surface-alt); }
.search-result-title {
    font-weight: 600;
    color: #2C5F3F;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.search-result-meta {
    font-size: 0.82rem;
    color: #888;
}
.search-no-results {
    padding: 1.2rem 1.4rem;
    color: #999;
    text-align: center;
    font-size: 0.95rem;
}

/* ===== CAPTURA DE LEADS ===== */
.lead-capture {
    background: linear-gradient(135deg, #2C5F3F 0%, #005c2b 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    color: white;
    text-align: center;
}
.lead-capture-inner { max-width: 560px; margin: 0 auto; }
.lead-capture-icon { font-size: 2.5rem; margin-bottom: 0.6rem; }
.lead-capture h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: white;
}
.lead-capture p {
    font-size: 0.97rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}
.lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}
@media (max-width: 600px) {
    .lead-form-row { grid-template-columns: 1fr; }
}
.lead-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.3s ease;
}
.lead-field input::placeholder { color: rgba(255,255,255,0.7); }
.lead-field input:focus {
    outline: none;
    border-color: #E8B4A0;
    background: rgba(255,255,255,0.22);
}
.lead-whatsapp-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    opacity: 0.95;
    cursor: pointer;
    margin-bottom: 1.2rem;
    justify-content: center;
}
.lead-whatsapp-check input[type="checkbox"] {
    width: 18px; height: 18px; accent-color: #E8B4A0; cursor: pointer; flex-shrink: 0;
}
.lead-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: #E8B4A0;
    color: #1a1a1a;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.lead-submit-btn:hover {
    background: #8fb82e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ===== COMPARTILHAMENTO MELHORADO ===== */
.post-share-enhanced {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}
.post-share-enhanced h3 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: white;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
}
.share-btn:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.share-whatsapp  { background: #25D366; }
.share-facebook  { background: #1877F2; }
.share-twitter   { background: #1DA1F2; }
.share-linkedin  { background: #0A66C2; }
.share-pinterest { background: #E60023; }
.share-email     { background: #6c757d; }
@media (max-width: 480px) {
    .share-btn span { display: none; }
    .share-btn { padding: 0.6rem 0.85rem; font-size: 1rem; }
}

/* ===== BADGE DE DESTAQUE NO POST ===== */
.post-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
    border-radius: 50px;
    padding: 0.2rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ===== POSTS EM DESTAQUE DENTRO DO POST ===== */
.featured-in-post {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary-color);
}
.featured-in-post h3 {
    font-family: 'Playfair Display', serif;
    color: #2C5F3F;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.3rem;
}
.featured-in-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.featured-in-post-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-in-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(44,95,63,0.15);
}
.featured-in-post-card a { text-decoration: none; color: inherit; display: block; }
.featured-in-post-img {
    height: 130px;
    background-size: cover;
    background-position: center;
    background-color: #e9f7ef;
}
.featured-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #E8B4A0;
}
.featured-in-post-body {
    padding: 0.9rem;
    background: white;
}
.featured-in-post-body h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
    line-height: 1.35;
}
.featured-in-post-date { font-size: 0.78rem; color: #999; }

/* ===== SEÇÃO DE DESTAQUES — BLOG INDEX ===== */
.featured-posts-section {
    background: linear-gradient(135deg, var(--surface-alt) 0%, var(--background-color) 100%);
    padding: 3rem 0;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}
.featured-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(44,95,63,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(44,95,63,0.08);
}
.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(44,95,63,0.18);
}
.featured-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #e9f7ef;
    position: relative;
}
.featured-card-img.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}
.featured-card-img.no-img::after { content: '🍰'; }
.featured-card-overlay {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
}
.featured-label {
    background: linear-gradient(135deg, #f4c430, #e6a800);
    color: #333;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.featured-card-body {
    padding: 1.4rem;
}
.featured-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin: 0.5rem 0 0.7rem;
    line-height: 1.4;
}
.featured-card-body h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.featured-card-body h3 a:hover { color: #2C5F3F; }
.featured-card-body p { font-size: 0.9rem; color: #666; margin-bottom: 1rem; }
.blog-nav-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}
.blog-nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}
.blog-nav-links a:hover { color: white; }

/* ===== ARQUIVO POR MÊS/ANO ===== */
.page-title {
    font-family: 'Playfair Display', serif;
    color: #2C5F3F;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.page-subtitle { color: #888; margin-bottom: 2.5rem; font-size: 0.97rem; }
.archive-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 768px) {
    .archive-layout { grid-template-columns: 1fr; }
}
.archive-sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.4rem;
    position: sticky;
    top: 1rem;
    border-left: 4px solid #2C5F3F;
}
.archive-sidebar h3 {
    font-size: 1rem;
    color: #2C5F3F;
    margin-bottom: 0.9rem;
    font-weight: 700;
}
.archive-nav { list-style: none; }
.archive-nav li { margin-bottom: 0.4rem; }
.archive-nav a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: flex;
    justify-content: space-between;
}
.archive-nav a:hover { color: #2C5F3F; }
.archive-nav a span { color: var(--secondary-color); font-weight: 600; }
.archive-month-group { margin-bottom: 2.5rem; }
.archive-month-title {
    font-family: 'Playfair Display', serif;
    color: #2C5F3F;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: capitalize;
}
.archive-count {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    margin-left: auto;
}
.archive-post-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem 1rem;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px dashed #e9ecef;
}
.archive-post-item:last-child { border-bottom: none; }
.archive-post-date {
    font-size: 0.8rem;
    color: #aaa;
    white-space: nowrap;
    font-family: monospace;
}
.archive-post-title {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.archive-post-title:hover { color: #2C5F3F; }
.archive-featured-badge { margin-left: 0.3rem; }
.archive-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: flex-end;
}
.archive-tag {
    font-size: 0.73rem;
    background: #f0f0f0;
    color: #2C5F3F;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}
.archive-tag:hover { background: #2C5F3F; color: white; }
@media (max-width: 600px) {
    .archive-post-item {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    .archive-post-tags { justify-content: flex-start; }
}

/* ===== BADGE DE DESTAQUE NA LISTA DE POSTS DO GERENCIADOR ===== */
.post-item.post-featured {
    border-left-color: #f4c430;
    background: #fffdf0;
}
.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: #fff3cd;
    color: #856404;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.1rem 0.5rem;
    border-radius: 50px;
    margin-right: 0.5rem;
    border: 1px solid #ffc107;
    vertical-align: middle;
}
.post-actions .btn-featured-active {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}
/* ===== FORÇAR VISIBILIDADE DA BARRA DE BUSCA ===== */
.blog-search-section {
    display: block !important;
    background: #f0faf4 !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 1.1rem 0 !important;
    width: 100% !important;
}

.blog-search-wrapper {
    display: flex !important;
    max-width: 620px !important;
    margin: 0 auto !important;
    background: white !important;
    border: 2px solid rgba(44,95,63,0.2) !important;
    border-radius: 50px !important;
}

.blog-search-input {
    flex: 1 !important;
    padding: 0.78rem 1.3rem !important;
    border: none !important;
    background: transparent !important;
}

.blog-search-btn {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0.78rem 1.4rem !important;
    border: none !important;
    cursor: pointer !important;
}
/* ===== BOTÕES REFINADOS — Marice Premium ===== */
.cta-button,
.produto-card .cta-button {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(44,95,63,0.25);
}

.cta-button:hover,
.produto-card .cta-button:hover {
    box-shadow: 0 6px 20px rgba(44,95,63,0.35);
}

/* Botão outline suave — rosa blush */
.btn-outline-blush {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.btn-outline-blush:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232,180,160,0.4);
}

/* Botão sólido blush */
.btn-blush {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid transparent;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.btn-blush:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232,180,160,0.5);
}

/* Botão texto — limpar filtros */
.btn-text-green {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.btn-text-green:hover { color: var(--accent-color); }

/* ===== CARDS — refinamentos ===== */
.valor-item,
.contato-item,
.faq-item,
.depoimento-card,
.feira-card,
.categoria-especial-card,
.produto-card {
    border: 1px solid var(--border-color);
}

/* ===== SEÇÕES ALTERNADAS ===== */
.faq-section,
.sobre {
    background-color: var(--surface-alt);
}

/* ===== TIPOGRAFIA REFINADA ===== */
h2, h3 {
    color: var(--secondary-color);
}
p {
    color: var(--text-color);
}

/* ===== DIETA BADGES NOVOS ===== */
.dieta-badge.vegano        { background: #3A7D5B; color: white; border-color: #3A7D5B; }
.dieta-badge.funcional     { background: var(--primary-color); color: white; border-color: var(--primary-color); }
.dieta-badge.sem-gluten    { background: #6B9AB8; color: white; border-color: #6B9AB8; }
.dieta-badge.sem-lactose   { background: #9B7BB5; color: white; border-color: #9B7BB5; }
.dieta-badge.sem-acucar    { background: #C8956B; color: white; border-color: #C8956B; }
.dieta-badge.diet          { background: #E8B4A0; color: var(--primary-color); border-color: #E8B4A0; }

/* ===== FOOTER ===== */
footer {
    background-color: #1A3D29;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--background-color); }
::-webkit-scrollbar-thumb { background: var(--sage-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

/* ===== GRADIENT DECORATIVO ===== */
.card-icon,
.feira-icon,
.veja-tambem-card .svg-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%) !important;
}

.categoria-especial-card .card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3D7A55 100%) !important;
}

/* ===== LINHA DECORATIVA DO FAQ ===== */
.faq-item h3::after,
.archive-month-title {
    background-color: var(--secondary-color);
}

/* ===== BADGE DESTAQUE POST (amarelo → blush) ===== */
.post-featured-badge,
.featured-badge {
    background: var(--highlight-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}
.post-item.post-featured {
    border-left-color: var(--secondary-color);
    background: #fdf7f4;
}
