/* Variáveis de Cores e Estilo */
:root {
    --primary-color: #2d5a27; /* Verde Profundo */
    --accent-color: #8bc34a;  /* Verde Lima Saudável */
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --shadow-sm: 0 2px 4px rgba(0,0,0,.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,.15);
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--light-bg); 
    color: #444; 
    overflow-x: hidden;
}

/* Header Transparente e Moderno */
.navbar { 
    padding: 0.8rem 0; 
    box-shadow: var(--shadow-md); 
    background-color: rgba(45, 90, 39, 0.96) !important; 
    backdrop-filter: blur(10px);
    z-index: 1050;
}

.navbar-brand { 
    position: relative; 
    padding: 0; 
    min-width: 150px;
}

/* Logo Sobresalente e Transparente (SEM FUNDO BRANCO) */
.logo-sobresalente {
    position: absolute;
    top: -15px; 
    left: 0;
    height: 120px; 
    width: auto;
    z-index: 1100;
    background: transparent !important; /* Garante que não haja fundo */
    /* Filtro para dar profundidade à logo transparente sobre o banner */
    filter: drop-shadow(0px 5px 10px rgba(0,0,0,0.4));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-sobresalente:hover { 
    transform: scale(1.05) translateY(5px); 
}

/* Ajuste de Espaçamento do Menu */
.nav-custom-margin { 
    margin-left: 160px; 
}

/* Cards de Produto Premium */
.card-product {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 100%;
}

.card-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-product img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Banner / Carousel */
.carousel-item img {
    height: 550px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Footer - Correção de Cores dos Links */
footer .text-muted {
    color: #bbb !important; /* Cinza claro para leitura sobre o preto */
}

footer a.text-muted:hover {
    color: #fff !important; /* Branco ao passar o mouse */
    transition: 0.3s;
}

footer h5, footer h6 {
    color: var(--accent-color) !important; /* Títulos em verde destaque */
}

/* Selos de Confiança */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 991px) {
    .logo-sobresalente { 
        height: 70px; 
        position: static; 
        filter: none;
        margin-bottom: 10px;
    }
    .nav-custom-margin { 
        margin-left: 0; 
    }
    .carousel-item img { 
        height: 350px; 
    }
}