/* --- Reset Básico e Fontes --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --cor-fundo: #EFE9E1;       /* Bege claro (FUNDO PRINCIPAL) */
    --cor-secundaria: #FAF9F6;  /* Branco natural (Mantido) */
    --cor-texto: #3C5A47;       /* Verde musgo profundo (TEXTO PRINCIPAL) */
    --cor-acento: #B35E2C;      /* Terracota orgânica */
    --cor-dourado: #E9D6A5;     /* Bege dourado */
}

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

html {
    background-color: var(--cor-fundo);
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--cor-texto);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    color: var(--cor-texto);
}

a {
    color: var(--cor-texto);
    text-decoration: none;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.main-title {
    text-align: center;
    font-size: 3rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.hero {
    text-align: center;
    padding: 1rem 1rem;
    padding: 1rem 1rem; /* Reduzido o padding superior */
    display: flex; /* Mantido */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh; /* Reduzido a altura mínima */
}

.hero img {
    max-width: 700px; /* Ajusta a largura máxima do logo no banner */
    width: 80%;       /* Garante que seja responsivo em telas menores */
    border-radius: 15px; /* Adiciona cantos arredondados ao banner */
}

/* --- Cabeçalho Principal (Topo) --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%; /* Adicionado um padding vertical para espaçamento */
    border-bottom: 1px solid var(--cor-secundaria);
    position: relative; /* Garante o contexto de empilhamento para o overlay e menu mobile */
    z-index: 999; /* Garante que o header fique acima do conteúdo da página, mas abaixo do menu mobile */
    
    /* Fundo verde sólido original do cabeçalho */
    background-color: var(--cor-texto);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 2rem; /* Espaço entre o logo e o título */
}

.header-title {
    font-family: 'Playfair Display', serif;
    color: var(--cor-fundo);
    font-size: 2rem; /* Aumentado para acompanhar o logo maior */
    font-weight: 700;
    white-space: nowrap; /* Evita que o texto quebre em telas menores */
    /* Efeito dourado brilhante */
    background: linear-gradient(145deg, #f0ac8c, #b8500b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.logo-img {
    height: 200px; /* Aumentado conforme solicitado */
    width: auto;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8; /* Diminui um pouco a opacidade no hover */
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: #ffffff; /* texto branco */
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease;
    position: relative; /* Necessário para a linha animada */
    padding-bottom: 5px; /* Espaço para a linha não sobrepor o texto */
}

.main-nav a:hover {
    color: var(--cor-acento); /* hover laranja */
}

/* Linha animada sob o item do menu (mantida) */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--cor-acento);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.main-nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;    
    background-color: var(--cor-fundo); /* Ícone do hamburger claro */
}

  ia 
.cta-button:hover {
    background-color: #a15427; /* Tom mais escuro do acento */
    transform: scale(1.05);
}

/* --- Seção Promessa da Marca (index.html) --- */
.brand-promise-section {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 4rem 5%;
    background-color: var(--cor-secundaria);
    flex-wrap: wrap;
    gap: 2rem;
}

.promise-item {
    max-width: 300px;
}

.promise-item i {
    font-size: 2.5rem;
    color: var(--cor-acento);
    margin-bottom: 1rem;
}

.promise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --- Conteúdo das Páginas --- */
/* --- Seção de Rolagem (Marquee) --- */
.marquee-section {
    padding: 2rem 0;
    border-top: 1px solid var(--cor-secundaria);
    border-bottom: 1px solid var(--cor-secundaria);
    position: relative; /* Adicionado para controle de z-index */
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 20s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    width: 200px;
    margin: 0 2rem;
    text-align: center;
}

.marquee-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--cor-acento);
    margin-bottom: 0.5rem;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Seção de Depoimentos (index.html) --- */
.testimonials-section {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--cor-secundaria);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--cor-acento);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    text-align: right;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bold;
}

/* --- Seção Processo Artesanal (sobre.html) --- */
.process-section {
    padding: 4rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background-color: var(--cor-secundaria);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    text-align: center;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cor-acento);
    color: var(--cor-fundo);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* --- Seção Compromisso Ético (sobre.html) --- */
.commitment-section {
    background-color: transparent; /* Fundo transparente para se mesclar */
    padding: 4rem 5%;
    text-align: center;
}
.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}
.commitment-content .highlight {
    color: var(--cor-acento);
    font-weight: bold;
}

/* --- Seção Galeria (sobre.html) --- */
.inspiration-gallery { padding: 4rem 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

/* --- Página de Galeria (galeria.html) --- */
.gallery-page-section {
    padding: 2rem 0;
}

.gallery-intro-text {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #666;
}

.gallery-container {
    display: grid;
    /* Cria colunas flexíveis com um tamanho mínimo de 300px */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-container .gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4 / 3;
    min-height: 220px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 3px solid transparent;
    box-sizing: border-box;
}
.gallery-container .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 25px rgba(0,0,0,0.18);
    border-color: var(--cor-acento);
}
.gallery-container .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-container .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-container .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Modal caption (usado pelo modal da galeria) */
.modal-caption {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 0.75rem;
    color: var(--cor-acento);
}
/* Estilo para o placeholder da galeria quando o item estiver vazio */
.gallery-container .gallery-item:empty {
    min-height: 300px; /* Altura mínima para o placeholder ser visível */
    background-color: #fdfbf9;
    border: 2px dashed var(--cor-dourado);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-dourado);
    font-weight: bold;
    font-family: 'Cormorant Garamond', serif;
}

/* --- Seção de Pilares (sobre.html) --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

/* --- Seção de Pilares (sobre.html) --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar-card {
    background-color: var(--cor-secundaria);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    border-top: 4px solid var(--cor-acento);
}

.pillar-card i {
    font-size: 2.5rem;
    color: var(--cor-acento);
    margin-bottom: 1rem;
    display: block; /* Garante que o ícone fique em sua própria linha */
}

.pillar-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* --- Seção de História (sobre.html) --- */
.history-section {
    margin-top: 4rem;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.history-logo {
    flex: 1;
    text-align: center;
    font-size: 3rem;
    min-width: 250px;
}

.history-logo-img {
    max-width: 200px; /* Define um tamanho máximo para o logo na seção de história */
    width: 100%;
    border-radius: 15px; /* Bordas arredondadas */
    border: 4px solid #c5a787; /* Borda colorida (tom dourado/amadeirado) */
    box-shadow: 
        5px 5px 15px rgba(0, 0, 0, 0.3), /* Sombra principal para efeito 3D */
        -5px -5px 15px rgba(255, 255, 255, 0.05); /* Leve brilho no lado oposto */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.history-text {
    flex: 2;
}

.brand-statement {
    font-size: 1.5rem;
    color: var(--cor-acento);
    font-family: 'Playfair Display', serif;
    border-left: 3px solid var(--cor-acento);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* --- Página de Contato --- */
.contact-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1;
    min-width: 320px;
    background-color: var(--cor-secundaria);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h3, .contact-info h4 {
    margin-bottom: 1.5rem;
}
.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.contact-info i {
    color: var(--cor-acento);
    margin-right: 1rem;
    width: 20px;
}
.contact-info a:hover {
    color: var(--cor-acento);
}
.attendance-details {
    margin-top: 2rem;
    padding-top: 1.5rem;
}
.contact-map iframe {
    border-radius: 5px;
}

/* --- Seção FAQ (contato.html) --- */
.faq-section { padding: 4rem 0; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--cor-secundaria);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--cor-texto);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}
.faq-question span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: bold;
}
.faq-question i {
    color: var(--cor-acento);
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 1rem;
}

/* --- Seção Kits Especiais (produtos.html) --- */
.special-kits-section { padding: 2rem 0 4rem 0; }
.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.kit-card {
    background-color: var(--cor-secundaria);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.kit-card img { width: 100%; }
.kit-info { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.kit-info h3 { font-size: 1.8rem; }
.kit-info p { margin: 1rem 0; flex-grow: 1; }

/* --- Seção Ingredientes (produtos.html) --- */
.featured-ingredients-section { padding: 4rem 0; background-color: transparent; }
.ingredients-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.ingredient-item { max-width: 250px; }
.ingredient-item i { font-size: 2.5rem; color: var(--cor-acento); margin-bottom: 1rem; }
.ingredient-item h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* --- Página de Produtos --- */
.filter-bar {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Adiciona rolagem horizontal em telas pequenas para a barra de filtros */
@media (max-width: 768px) {
    .filter-bar {
        overflow-x: auto;
        white-space: nowrap;
    }
}
.filter-btn {
    background: none;
    border: 1px solid var(--cor-acento);
    color: var(--cor-acento);
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
    background-color: var(--cor-acento);
    color: var(--cor-fundo);
}
.products-intro-text {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #888; /* Cinza mais suave */
}

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

.product-card {
    background-color: var(--cor-secundaria);
    border: 1px solid transparent; /* Borda transparente, aparece no hover */
    border-radius: 8px;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* display: block; Para o filtro */
    display: flex; /* Alterado para flex para melhor alinhamento */
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(92, 115, 92, 0.1);
    border-color: var(--cor-acento);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    flex-grow: 1; /* Faz o título ocupar o espaço, empurrando o botão para baixo */
    margin-bottom: 1rem; /* Adiciona espaço entre o título e o botão */
}

.product-details-btn {
    background: none;
    border: 1px solid var(--cor-acento);
    color: var(--cor-acento);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: auto; /* Alinha o botão na parte inferior do card flex */
    align-self: center; /* Centraliza o botão horizontalmente */
    width: 80%; /* Define uma largura para o botão */
}

/* --- Garante que a imagem dentro do card se comporte corretamente --- */
.product-card img {
    width: 100%;
    height: 250px; /* Altura fixa para padronizar todas as imagens */
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 1rem;
    object-fit: cover;
}

/* --- Estilos Personalizados para Cards de Produto (sem imagem) --- */
.product-card.no-image {
    background-color: #f0f4f0 !important; /* Tom de verde claro e suave */
    border: 1px solid var(--cor-acento) !important;   /* Borda em um verde um pouco mais escuro */
}

/* Garante que o texto dentro dos cards seja legível */
.product-card.no-image h3,
.product-card.no-image .product-description,
.product-card.no-image .product-weight {
    color: #3C5A47 !important; /* Verde musgo profundo para o texto */
}

.product-card.no-image .product-price {
    color: #B35E2C !important; /* Cor terracota para o preço, para dar destaque */
}

/* --- Estilo do Modal (Pop-up) --- */
.modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: var(--cor-fundo);
    margin: 5% auto;
    padding: 2.5rem;
    border: 1px solid var(--cor-dourado);
    width: 80%; /* Mantido */
    max-width: 600px; /* Reduzido para um layout vertical mais agradável */
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.5s;
    overflow: hidden;
    text-align: center; /* Centraliza o conteúdo por padrão */
    max-height: 85vh; /* Garante que o modal não seja maior que a altura da tela */
    overflow-y: auto; /* Adiciona rolagem interna se o conteúdo for muito longo */
}
/* Ajuste do Modal para telas pequenas */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: 10% auto;
        padding: 1.5rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-button {
    color: var(--cor-texto);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover {
    color: var(--cor-acento);
}

.modal-image {
    /* Remove o float e centraliza a imagem */
    display: block;
    width: 60%;
    margin: 0 auto 1.5rem auto;
    border-radius: 8px;
}

.modal-content h2 {
    font-size: 1.8rem; /* Reduzido para evitar quebra de linha em nomes longos */
    margin-bottom: 0.5rem;
}

.modal-content p, .modal-content #modal-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: left; /* Alinha os parágrafos de texto à esquerda para melhor leitura */
}

#modal-price {
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--cor-acento);
}

#modal-weight {
    font-size: 1rem;
    color: #aaa;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem; /* Mantido */
}

/* --- Rodapé --- */
footer {
    text-align: center;
    padding: 2rem 5%;
    margin-top: 4rem; /* Aumentado o espaçamento superior */
    border-top: 1px solid var(--cor-secundaria);
    position: relative; /* Necessário para a sobreposição */
    z-index: 1;

    /* Imagem de fundo (mesma do header) */
    background-image: url('./images/imgheader.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--cor-texto); /* Cor de fallback */
}

/* Sobreposição escura para o rodapé */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(60, 90, 71, 0.7); /* Verde escuro com 70% de opacidade */
    z-index: -1;
}

.social-icons {
    margin-bottom: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    margin: 0 1rem;
    color: var(--cor-fundo); /* Alterado para cor clara para contrastar com o fundo */
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--cor-acento);
}

footer p {
    color: var(--cor-fundo); /* Alterado para cor clara */
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .main-header {
        padding: 0.5rem 5%; /* Ajusta o padding do header em mobile */
    }
    .logo-img { height: 80px; } /* Diminui o logo em telas menores */

    .header-title {
        display: none; /* Oculta o título em telas pequenas para não poluir o menu mobile */
    }

    /* Exibe o menu normalmente (não usar off-canvas) */
    .main-nav {
        position: static;
        left: 0;
        top: auto;
        background-color: transparent;
        width: 100%;
        height: auto;
        transition: none;
        padding: 0;
        border-right: none;
        box-shadow: none;
        z-index: 1;
    }

    .main-nav.active { /* deixa inofensivo caso JS adicione a classe */
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0;
        gap: 0.25rem;
        display: flex; /* garante visibilidade */
    }

    /* Links do menu mobile empilhado */
    .main-nav a {
        color: #ffffff; /* texto branco em mobile */
        display: block;
        padding: 0.75rem 1rem;
        background: rgba(255,255,255,0.02);
        border-top: 1px solid rgba(0,0,0,0.03);
        font-size: 1.05rem;
    }

    .main-nav a:hover {
        background: rgba(179,94,44,0.06);
        color: var(--cor-acento); /* hover laranja em mobile */
    }

    /* Esconde o hamburger (não usado) */
    .hamburger {
        display: none;
        z-index: 0;
    }

    body.menu-open::after { /* remove overlay gerado antes */
        content: none;
    }

    /* Ajusta o tamanho dos títulos principais em telas pequenas */
    .main-title, .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Ajusta o padding das seções para não colar nas bordas */
    .page-content, .brand-promise-section, .testimonials-section, .process-section, .commitment-section, .faq-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    /* Ajusta o grid de depoimentos e outros para uma coluna */
    .testimonials-grid, .process-grid, .pillars-grid, .kits-grid {
        grid-template-columns: 1fr;
    }

    .history-content {
        flex-direction: column;
    }
}/*promise-section,
.testimonials-section,
.process-section,
.commitment-section,
.inspiration-gallery,
.special-kits-section,
.featured-ingredients-section,
.faq-section {
    border-top: 1px solid var(--cor-secundaria);
    border-bottom: 1px solid var(--cor-secundaria);
    margin-top: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* --- Banner para Páginas Internas --- */
.page-banner {
    text-align: center;
    margin-bottom: 3rem; /* Espaçamento abaixo do banner */
}

.page-banner-img {
    max-width: 700px;
    width: 80%;
    border-radius: 15px;
    border: 1px solid var(--cor-secundaria); /* Borda sutil para integrar ao layout */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Sombra leve */
}

/* Estilo para o crédito do desenvolvedor no rodapé */
.dev-credit {
    margin-top: 1rem;
}

.dev-credit a {
    display: inline-flex; /* Permite alinhar itens na mesma linha */
    align-items: center; /* Alinha o texto e o logo verticalmente */
    gap: 10px; /* Espaço entre o texto e o logo */
    color: var(--cor-fundo);
    text-decoration: none; /* Remove o sublinhado padrão */
}

.dev-credit a:hover span {
    text-decoration: underline; /* Adiciona sublinhado no texto ao passar o mouse */
}

.dev-logo {
    width: 40px; /* Tamanho do logo */
    height: 40px;
    border-radius: 50%; /* Deixa o logo redondo */
    object-fit: cover;
}
