/* RESET E VARIÁVEIS */
:root {
    --green-dark: #3A5F39; /* Verde da sua marca */
    --green-light: #4e7a4d;
    --gold: #B99631;       /* Dourado da sua marca */
    --gold-hover: #d4ac39;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-light: #f9fafb;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo img { height: 60px; } /* Ajuste o tamanho da sua logo aqui */

.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }

.nav-links a {
    text-decoration: none;
    color: var(--green-dark);
    font-weight: 600;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}
.nav-links a:hover { color: var(--gold); }

.btn-nav {
    background: var(--green-dark);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
}
.btn-nav:hover { background: var(--gold); }

.menu-toggle { display: none; font-size: 1.5rem; color: var(--green-dark); cursor: pointer; }

/* HERO SECTION */
.hero {
    padding-top: 140px;
    padding-bottom: 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, #2a4529 100%);
    color: white;
    position: relative;
}

.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 50px; }

.hero-text { flex: 1; }

.hero-text h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
.highlight { color: var(--gold); }
.hero-text p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; max-width: 500px; }

.hero-btns { display: flex; gap: 15px; }

.btn { padding: 12px 30px; border-radius: 5px; font-weight: 700; text-decoration: none; transition: 0.3s; display: inline-block; }
.btn-primary { background: var(--gold); color: white; }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); }
.btn-outline { border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--green-dark); }

.hero-img { flex: 1; display: flex; justify-content: center; }
.hero-img img { max-width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* STATS SECTION (Empresa Grande) */
.stats-section { padding: 60px 0; background: var(--bg-light); margin-top: -5px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }

.stat-box i { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }
.stat-box h3 { font-size: 2.5rem; color: var(--green-dark); margin-bottom: 5px; }
.stat-box p { color: var(--text-light); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }

/* QUEM SOMOS */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.img-wrapper { 
    position: relative; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: var(--shadow); 
}
.img-wrapper img { width: 100%; display: block; transition: 0.5s; }
.img-wrapper:hover img { transform: scale(1.05); }

.subtitle { color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem; }
.about-text h2 { font-size: 2.5rem; margin: 10px 0 20px; color: var(--green-dark); }
.about-text p { margin-bottom: 20px; line-height: 1.8; color: var(--text-light); }
.btn-link { color: var(--green-dark); font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 10px; }

/* SERVIÇOS */
.services { padding: 100px 0; background-color: #f4f6f5; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; color: var(--green-dark); margin-bottom: 10px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border-top: 4px solid var(--gold);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 30px rgba(0,0,0,0.1); }

.icon-box {
    width: 60px; height: 60px; background: rgba(185, 150, 49, 0.1);
    color: var(--gold); font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
    border-radius: 10px; margin-bottom: 25px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 15px; color: var(--green-dark); }
.service-card p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }
.service-card ul { list-style: none; margin-bottom: 25px; }
.service-card ul li { margin-bottom: 10px; color: var(--text-light); font-size: 0.9rem; }
.service-card ul li i { color: var(--green-dark); margin-right: 8px; }
.btn-card { color: var(--gold); font-weight: 700; text-decoration: none; font-size: 0.9rem; }

/* CONTATO & FOOTER */
.contact { padding: 80px 0; background: var(--green-dark); color: white; }
.contact-container { display: flex; gap: 50px; flex-wrap: wrap; }
.contact-info { flex: 1; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 20px; color: white; }
.info-item { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.info-item i { font-size: 1.2rem; color: var(--gold); }

.contact-form { flex: 1; background: white; padding: 40px; border-radius: 15px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; background: #f9f9f9;
}
.full-width { width: 100%; border: none; cursor: pointer; }

footer { background: #223a22; color: rgba(255,255,255,0.6); text-align: center; padding: 20px; font-size: 0.9rem; }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: #25d366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2000; animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2rem; }
    .hero-btns { justify-content: center; }
    .about-grid, .contact-container { grid-template-columns: 1fr; }
    .about-img { order: -1; }
}

/* CLASSES DE ANIMAÇÃO */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-left { opacity: 0; transform: translateX(30px); transition: all 0.8s ease-out; }
.fade-right { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease-out; }
.visible { opacity: 1; transform: translate(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }


/* --- ESTILO DAS REDES SOCIAIS --- */

/* Na Seção de Contato */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1); /* Fundo sutil */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Cores específicas ao passar o mouse (Hover) */
.social-btn:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 5px 15px rgba(214, 36, 159, 0.4);
}

.social-btn.facebook:hover {
    background-color: #1877F2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-btn.youtube:hover {
    background-color: #FF0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* --- NOVO RODAPÉ (FOOTER) --- */
footer {
    background-color: #1a2e1a; /* Verde bem escuro */
    color: #e0e0e0;
    padding-top: 60px;
    padding-bottom: 20px;
    text-align: left; /* Alinhamento à esquerda fica mais chique */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.footer-social h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-links-footer {
    display: flex;
    gap: 20px;
}

.social-links-footer a {
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links-footer a:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Ajuste Mobile para o Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}