:root {
    --verde-folha: #a3c5a0;
    --rosa-suave: #f1b9b7;
    --texto: #4a4a4a;
    --fundo: #a3c5a0;
    --branco:white;
}

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    scroll-behavior: smooth;
}



body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color:  rgba(252, 237, 237, 0.8);
    color: var(--texto);
    line-height: 1.6;
}

/* --- CABEÇALHO SLIM --- */
.header-slim {
    background-color: #ffffff;
    padding: 15px 0 5px 0; /* Espaço vertical reduzido */
    border-bottom: 1px solid #eee;
    width: 100%;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: center;
}

.logo-compacta {
    max-width: 120px;
    height: auto;
    margin-bottom: 0 !important; /* Remove espaço abaixo da logo */
}

.header-text {
    text-align: center;
    margin-top: -5px; /* Puxa o texto para perto da logo */
}

.header-text h1 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 0;
    color: #2d2d2d;
    text-transform: uppercase;
}

.header-text p {
    font-size: 1rem; /* Corrigido de 1.rem para 0.9rem */
    color: #777;
    margin: 2px 0;
}

/* --- MENU DE NAVEGAÇÃO ATUALIZADO --- */
.menu-fixo {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #f0f0f0;
}

/* Esse container é novo, ele organiza os 5 links em linha */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 25px; /* Espaçamento entre Home, Sobre, Beleza, etc */
    flex-wrap: wrap;
}

.menu-fixo a {
    text-decoration: none;
    color: #4a4a4a; 
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.menu-fixo a:hover {
    color: #a3c5a0; /* Verde da sua logo */
}

/* --- SEÇÕES E GRIDS --- */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin: 60px 0 30px;
    font-size: 2rem;
    color: #a3c5a0; /* Use a cor da logo aqui também */
}

/* O container que segura todos os produtos */
.product-grid {
    display: grid;
    /* Cria colunas dinâmicas: cada uma com no mínimo 250px e no máximo 1 fração do espaço */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px; /* Espaço entre as caixas (horizontal e vertical) */
    padding: 20px 0;
    width: 100%;
}

/* Ajuste no card para ele não esticar estranhamente */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Garante que todos os cards da mesma linha tenham a mesma altura */
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px); /* Efeito dinâmico ao passar o mouse */
}
.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.price {
    display: block;
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--verde-folha);
}

.btn-buy {
    display: block;
    margin-top: 15px;
    background: #f1b9b7;
    color:#354130;
    text-decoration: none;
    padding: 10px;
    border-radius: 50px;
    transition: background 0.3s;
}

.btn-buy:hover {
    background: var(--verde-folha);
}

.separator {
    margin: 80px 0;
    border: 0;
    border-top: 1px solid #ddd;
}

/* Rodapé */
footer {
    color: #ffffff;
    background: #1f271c;
    padding: 40px 20px;
    text-align: center;
    margin-top: 100px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #ffffff;
    font-size: 0.8rem;
    text-decoration: none;
}

/* Estilo do Rodapé */
footer {
    background: #1f271c; /* Verde muito escuro */
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
}

/* Frase de Orientação Médica */
.disclaimer {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #b0b0b0; /* Cinza para não cansar a vista */
    max-width: 850px;
    margin: 0 auto 25px auto;
    font-style: italic;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.disclaimer strong {
    color: var(--rosa-suave); /* Destaque na sua cor da marca */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Direitos Reservados */
.copyright {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Links Legais */
.footer-legal a {
    color: #ffffff;
    font-size: 0.8rem;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
    text-decoration: underline;
}