/* style.css - Ecofactory Consolidado - Com Fonte Avenir Light */

/* Importando a Fonte Avenir Light */
@font-face {
    font-family: 'Avenir Light';
    src: url('Avenir Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Aplicando a fonte no site inteiro */
body {
    font-family: 'Avenir Light', Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Cores baseadas no tema ecológico (verde) */
.text-eco { color: #2e7d32; }
.bg-eco { background-color: #2e7d32; color: white; }
.btn-eco { background-color: #2e7d32; color: white; border: 2px solid #2e7d32; border-radius: 25px; transition: 0.3s; font-weight: bold; }
.btn-eco:hover { background-color: white; color: #2e7d32; transform: scale(1.05); }

/* Efeito de destaque ao passar o mouse na foto da empresa (SESSÃO SOBRE) */
.img-eco-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid transparent;
}
.img-eco-hover:hover {
    transform: scale(1.03); 
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3) !important; 
    border-color: #2e7d32; 
}

/* ======== SEÇÃO HERO (FOTO PRINCIPAL) ======== */
.hero-section {
    background-image: url('foto principal.jpg'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* ECOFACTORY - Título Hero */
.hero-content h1 {
    font-size: 5rem;
    font-weight: 100 !important; 
    letter-spacing: 12px !important; 
    margin-bottom: 25px;
    font-family: 'Avenir Light', "Trebuchet MS", sans-serif;
}

/* Frase ajustada Hero */
.hero-content p {
    font-size: 1.5rem; 
    font-weight: 100 !important; 
    letter-spacing: 5px !important; 
    text-transform: uppercase; 
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; letter-spacing: 5px !important; }
    .hero-content p { font-size: 1rem; letter-spacing: 2px !important; }
}

/* ======== OUTRAS SEÇÕES ======== */
.content-section { padding: 100px 0; }
.bg-light-gray { background-color: #f8f9fa; }

/* ======== SEÇÃO NOSSOS PRODUTOS ======== */

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: all 0.4s ease-in-out; 
    cursor: pointer;
    background: #fff;
    margin-bottom: 30px;
    width: 100%; 
    border: 1px solid #ddd; 
}

.product-item:hover {
    transform: translateY(-15px) scale(1.02); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.3); 
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease; 
}

.product-item:hover img {
    transform: scale(1.15); 
}

.product-caption {
    position: absolute;
    bottom: -100px; 
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    padding: 50px 30px 30px; 
    transition: all 0.4s ease-in-out;
    text-align: left;
}

.product-item:hover .product-caption {
    bottom: 0; 
}

.product-caption h3 { margin: 0; font-weight: bold; font-size: 1.8rem; } 
.product-caption p { margin: 10px 0 0; font-size: 1.1rem; opacity: 0.9; } 


/* ======== SEÇÃO CERTIFICAÇÕES ======== */
.certificacoes-section {
    position: relative;
    color: white; 
}

.fsc-logo-pure-chapada {
    max-height: 400px !important; 
    width: auto;
    border: none !important; 
    box-shadow: none !important; 
    background: transparent !important; 
    border-radius: 0; 
    margin-top: -10px; 
    transition: transform 0.4s ease-in-out !important; 
    cursor: pointer;
    transform-origin: top center; 
}

.fsc-logo-pure-chapada:hover {
    transform: scale(1.15); 
}

/* ======== CLIENTES ======== */
#clientes.content-section {
    padding-top: 40px;
    padding-bottom: 40px;
}
#clientes img {
    width: 100%; 
    max-height: none !important; 
}

/* ======== BANNER LGPD ======== */
.lgpd-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

.lgpd-container p { font-size: 0.9rem; margin: 0; }
.lgpd-container a { color: #81c784 !important; text-decoration: underline; }
.lgpd-container a:hover { color: #fff !important; }

#btn-aceitar-lgpd {
    min-width: 100px;
    border-radius: 20px;
}