/* VARIÁVEIS DO CONCEITO 2: LIFESTYLE E BOUTIQUE */
:root {
    --primary-color: #A34A23; /* Tom de terra/castanha */
    --secondary-color: #38761D; /* Tom de verde natural */
    --background-light: #f7f3ed; /* Fundo em tom de papel/madeira clara */
    --text-dark: #333333;
    --font-heading: sans-serif; 
    --font-body: sans-serif;
    --header-height: 70px;
}

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



body {
    font-family: var(--font-body);
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

/* --- ELEMENTOS GERAIS --- */
.btn-cta, .btn-cta-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 0.9em;
}

.btn-cta {
    background-color: var(--secondary-color);
    color: white;
}

.btn-cta:hover {
    background-color: #2e5f17; 
}

.btn-cta-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-light);
}

main {
    width: 100%;
    margin-top: var(--header-height); /* Espaço do header fixo */
}

section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- TOPO (HEADER) --- */
.header-topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.logo-header {
    max-height: 50px;
}

.nav-principal a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-whatsapp-header {
    background-color: #25d366;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.btn-whatsapp-header:hover {
    background-color: #128c7e;
}

/* --- SEÇÃO 1: BANNER LIFESTYLE --- */
.banner-lifestyle {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin-top: -70px; /* Compensa o header fixo */
}

.banner-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
}

.banner-lifestyle h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: white;
}

.banner-lifestyle p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* --- SEÇÃO 2: NAVEGAÇÃO POR NECESSIDADES --- */
.section-necessidades h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

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

.necessidade-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--secondary-color);
    transition: transform 0.3s;
}

.necessidade-card:hover {
    transform: translateY(-5px);
}

.necessidade-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.btn-card {
    display: block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* --- SEÇÃO 3: KITS CURADORIA --- */
.section-kits {
    background-color: var(--background-light);
    border-top: 1px solid #ddd;
}

.section-kits .subtitle {
    margin-bottom: 40px;
    color: #666;
}

.kits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.kit-card {
    background-color: white;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.kit-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.kit-card h4 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.kit-card p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 20px;
    height: 3em; /* Garante altura uniforme */
    overflow: hidden;
}

.btn-buy {
    display: block;
    padding: 10px;
    margin-bottom: 10px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-subscription {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

/* --- SEÇÃO 4: BLOG/INSPIRAÇÃO --- */
.blog-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.blog-item {
    width: 300px;
    text-align: left;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.blog-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-item h3, .blog-item p {
    padding: 0 15px;
}

.blog-item h3 {
    margin-top: 15px;
    font-size: 1.1em;
}

.blog-item p {
    font-size: 0.85em;
    color: #777;
    padding-bottom: 15px;
}

/* --- RODAPÉ (FOOTER) --- */
.footer-rodape {
    background-color: var(--text-dark);
    color: white;
    padding-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    padding: 0 20px 40px 20px;
    gap: 30px;
}

.loja-info, .lojas-container, .social-media {
    min-width: 250px;
}

.loja-info h3 {
    color: white;
    font-size: 1.2em;
    margin-top: 10px;
}

.logo-footer {
    max-height: 40px;
}

.cnpj {
    font-size: 0.8em;
    color: #aaa;
}

.lojas-container {
    display: flex;
    gap: 40px;
}

.loja-info-box h4 {
    color: var(--secondary-color);
    font-size: 1.1em;
    margin-bottom: 5px;
}

.endereco {
    font-size: 0.9em;
    margin-bottom: 10px;
    color: #ccc;
}

.whatsapp-link {
    color: #25d366;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.retirada-link {
    display: block;
    color: #4CAF50;
    font-size: 0.9em;
    text-decoration: none;
    margin-top: 5px;
    font-style: italic;
}

.social-media {
    text-align: center;
}

.social-media h4 {
    color: white;
    margin-bottom: 15px;
}

.social-media a {
    color: white;
    font-size: 28px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: var(--primary-color);
}

.copyright {
    width: 100%;
    text-align: center;
    background-color: #222;
    padding: 10px 0;
    font-size: 0.75em;
    color: #888;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        padding: 10px 20px;
    }
    
    .nav-principal {
        display: none; /* Esconde navegação em mobile para priorizar espaço */
    }
    
    .btn-whatsapp-header {
        position: fixed;
        bottom: 20px;
        right: 20px;
        font-size: 1.1em;
        padding: 12px 20px;
        z-index: 100;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .banner-lifestyle {
        height: 50vh;
        text-align: left;
    }

    .banner-overlay {
        padding: 20px;
    }

    .banner-lifestyle h1 {
        font-size: 1.8em;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lojas-container {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
    }
    
    .loja-info, .loja-info-box, .social-media {
        min-width: 100%;
        text-align: center;
    }
    
    .blog-preview {
        flex-direction: column;
        align-items: center;
    }
}
/* --------------------------------- */
/* TEMAS DE DATAS COMEMORATIVAS */
/* --------------------------------- */

/* --- TEMA NATAL (Classe: .natal) --- */
body.natal {
    --primary-color: #C0392B; /* Vermelho natalino */
    --secondary-color: #27AE60; /* Verde escuro */
    --background-light: #F8F8F8; /* Fundo mais claro e festivo */
}

/* Exemplo de estilo para o Natal: Mudar o botão principal */
body.natal .btn-cta {
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(192, 57, 43, 0.5);
}

/* Exemplo de estilo para o Natal: Mudar títulos */
body.natal h2 {
    color: var(--primary-color);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}


/* --- TEMA DIA DAS MÃES (Classe: .dia-das-maes) --- */
body.dia-das-maes {
    --primary-color: #E799B0; /* Rosa suave */
    --secondary-color: #5D4037; /* Marrom aconchegante */
}

/* Exemplo de estilo para o Dia das Mães: Mudar o header */
body.dia-das-maes .header-topo {
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid var(--primary-color);
}

/* Exemplo de estilo para o Dia das Mães: Mudar o botão principal */
body.dia-das-maes .btn-cta {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* --- TEMA DIA DOS NAMORADOS (Classe: .dia-dos-namorados) --- */
body.dia-dos-namorados {
    --primary-color: #D35400; /* Laranja forte/Paixão */
    --secondary-color: #9B59B6; /* Toque de roxo/presente */
}

/* Exemplo de estilo para o Dia dos Namorados: Cards de Kits */
body.dia-dos-namorados .kit-card {
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.2);
} 
/* --- TEMA DIA DO TRABALHADOR (Classe: .dia-do-trabalhador) --- */
body.dia-do-trabalhador {
    --primary-color: #5D4037; /* Marrom escuro */
    --secondary-color: #FBC02D; /* Amarelo/Dourado */
}

/* Aplica cor ao fundo do rodapé */
body.dia-do-trabalhador .footer-rodape {
    background-color: var(--primary-color);
}
/* --- TEMA FESTA JUNINA (Classe: .festa-junina) --- */
body.festa-junina {
    --primary-color: #D35400; /* Laranja (Fogueira/Quentão) */
    --secondary-color: #27AE60; /* Verde Bandeira */
    --background-light: #FFF8E1; /* Fundo mais claro e rústico (cor de palha) */
    --text-dark: #800000; /* Marrom escuro/vinho */
}

/* Mudar a cor do Header para a cor de texto mais forte */
body.festa-junina .header-topo {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 3px solid var(--secondary-color);
}

/* Títulos com a cor da fogueira */
body.festa-junina h1, 
body.festa-junina h2, 
body.festa-junina h3 {
    color: var(--primary-color);
}

/* Cards com borda quadriculada (imitando bandeirinhas) */
body.festa-junina .necessidade-card, 
body.festa-junina .kit-card {
    border: 4px dashed var(--secondary-color);
    background-color: #FEFBEA; 
}

/* Botão principal com um vermelho/laranja rústico */
body.festa-junina .btn-cta {
    background-color: var(--primary-color);
    color: white;
}
/* CONTEÚDO PRINCIPAL */
        main {
            width: 100%;
            margin-top: var(--header-height);
            padding: 40px 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .catalogo-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .catalogo-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        /* SEÇÕES DE CATEGORIA */
        .categoria-bloco {
            margin-bottom: 60px;
        }

        .categoria-titulo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }

        .categoria-titulo i {
            color: var(--secondary-color);
            font-size: 1.5rem;
        }

        .categoria-titulo h2 {
            font-size: 1.6rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* GRID DE PRODUTOS ESTILO BOUTIQUE */
        .grid-produtos {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .card-produto {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            border-top: 5px solid var(--secondary-color);
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .card-produto h3 {
            color: var(--text-dark);
            font-size: 1rem;
            font-weight: 600;
        }

        .btn-ver {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        /* FOOTER */
        .footer-rodape {
            background-color: var(--text-dark);
            color: white;
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
        }

        @media (max-width: 768px) {
            .grid-produtos { grid-template-columns: 1fr; }
            .catalogo-header h1 { font-size: 1.8rem; }
        }
    </style>
	
	/* --------------------------------- */
/* SEÇÃO: LOJA FÍSICA */
/* --------------------------------- */

.section-loja-fisica {
    background-color: white;
    padding: 80px 20px;
}

.section-loja-fisica h2 {
    margin-bottom: 10px;
    font-size: 2.2em;
}

.section-loja-fisica .subtitle {
    margin-bottom: 50px;
    color: #666;
}

.loja-detalhes-grid {
    display: flex;
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.info-loja {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.info-loja h3 {
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.info-loja h3 i {
    margin-right: 8px;
}

.info-loja p, .info-loja ul {
    font-size: 1em;
    color: var(--text-dark);
}

.info-loja ul {
    list-style: none;
    padding-left: 0;
}

.btn-mapa {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-mapa:hover {
    background-color: #8C3E1F;
}

.cta-retirada {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
}

/* GALERIA DE FOTOS */
.fotos-loja {
    flex: 1.5; /* Ocupa mais espaço que a coluna de info */
    text-align: center;
}

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

.galeria img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsividade para telas menores */
@media (max-width: 900px) {
    .loja-detalhes-grid {
        flex-direction: column;
    }
    
    .info-loja, .fotos-loja {
        min-width: 100%;
    }
}

/* ESTILO: COMPRE POR OBJETIVO */
.section-objetivos {
    padding: 80px 20px;
    background-color: #fdfaf5; /* Fundo levemente creme */
}

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

.header-secao {
    text-align: center;
    margin-bottom: 50px;
}

.header-secao h2 {
    color: #A34A23; /* Seu Marrom Eco */
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.header-secao p {
    color: #666;
    font-size: 1.1rem;
}

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

.objetivo-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0ece2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.objetivo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(163, 74, 35, 0.1);
    border-color: #A34A23;
}

.obj-icon {
    width: 70px;
    height: 70px;
    background: #fdf2ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #38761D; /* Seu Verde Eco */
    margin-bottom: 20px;
    transition: 0.3s;
}

.objetivo-card:hover .obj-icon {
    background: #38761D;
    color: #fff;
}

.objetivo-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.objetivo-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-obj {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #A34A23;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsivo */
@media (max-width: 768px) {
    .header-secao h2 { font-size: 1.8rem; }
    .objetivos-grid { grid-template-columns: 1fr; }
}