/* ================= Variáveis de Estilo (Tema Viveiro Coqueiro) ================= */
:root {
    --primary-color: #274C37; /* Verde Escuro do Logotipo */
    --primary-hover: #1b3627;
    --secondary-color: #E2D3BA; /* Bege/Areia das letras do logotipo */
    --accent-color: #D36C6C; /* Tom rosado para contraste botânico/buquês */
    --dark-bg: #1B2B23;
    --light-bg: #F8F9F5; /* Branco quebrado verde bem claro */
    --text-dark: #333333;
    --text-light: #555555;
    --white: #ffffff;
    --whatsapp: #25D366;
    --transition: all 0.3s ease;
}

/* ================= Reset e Base ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary-color); line-height: 1.2; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bg-light { background-color: var(--light-bg); }

/* ================= Botões ================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; font-weight: 500; font-family: 'Inter', sans-serif;
    text-transform: uppercase; letter-spacing: 1px; transition: var(--transition);
    cursor: pointer; border: none; border-radius: 30px; font-size: 0.9rem;
}

.btn-primary { background-color: var(--secondary-color); color: var(--primary-color); font-weight: 600;}
.btn-primary:hover { background-color: var(--primary-color); color: var(--secondary-color); box-shadow: 0 5px 15px rgba(39, 76, 55, 0.3); }

.btn-whatsapp { background-color: var(--whatsapp); color: var(--white); gap: 10px; }
.btn-whatsapp:hover { background-color: #1ebe5d; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); }

.link-btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--primary-color); font-size: 0.9rem; transition: var(--transition); margin-top: 15px;}
.link-btn:hover { gap: 12px; color: var(--accent-color); }

/* ================= Header ================= */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: var(--primary-color); /* Fundo verde do logo */
    z-index: 1000; padding: 10px 0; transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

header .container { display: flex; justify-content: space-between; align-items: center; }

.logo img { height: 75px; object-fit: contain; }

nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }
nav a { font-weight: 400; color: var(--secondary-color); transition: var(--transition); font-size: 1rem; }
nav a:hover { color: var(--white); }

/* ================= Hero Section ================= */
/* Utilizando a imagem de paisagismo com forração roxa ou a de folhagem como fundo principal */
.hero {
    position: relative; padding: 180px 0 120px;
    background: url('../assets/img/WhatsApp Image 2026-02-22 at 23.13.53 (2).jpg') center/cover no-repeat;
    background-color: var(--primary-color); 
    min-height: 90vh; display: flex; align-items: center; color: var(--white);
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(39,76,55,0.95) 0%, rgba(39,76,55,0.5) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 650px; }

.badge { display: inline-block; background: transparent; border: 1px solid var(--secondary-color); color: var(--secondary-color); padding: 6px 20px; font-weight: 500; font-family: 'Inter', sans-serif; font-size: 0.85rem; margin-bottom: 25px; border-radius: 30px; letter-spacing: 1px;}

.hero-content h1 { font-size: 3.8rem; margin-bottom: 25px; color: var(--white); }
.hero-content h1 span { color: var(--secondary-color); font-style: italic; font-weight: 400;}
.hero-content p { font-size: 1.15rem; color: #f4f4f4; margin-bottom: 40px; font-weight: 300; line-height: 1.8;}
.hero-content p strong { color: var(--white); font-weight: 600; }

/* ================= Sobre a Empresa ================= */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 2.8rem; margin-bottom: 20px; }
.about-text p { margin-bottom: 20px; color: var(--text-light); text-align: justify; font-size: 1.05rem;}

.stats { display: flex; gap: 40px; margin-top: 30px; border-top: 1px solid #eee; padding-top: 30px;}
.stats h3 { font-size: 2.5rem; color: var(--primary-color); line-height: 1; margin-bottom: 5px;}
.stats p { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--text-light);}

.about-image img { border-radius: 15px 15px 15px 100px; box-shadow: 15px 15px 0px var(--secondary-color); }

/* ================= Especialidades (Serviços) ================= */
.services { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 3rem; margin-bottom: 15px; }
.section-title p { color: var(--text-light); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }

.service-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition); border-bottom: 4px solid var(--secondary-color);}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(39,76,55,0.15); border-color: var(--primary-color);}
.service-card img { width: 100%; height: 220px; object-fit: cover; }

.service-content { padding: 30px 25px; }
.service-content h3 { font-size: 1.4rem; margin-bottom: 15px; font-family: 'Playfair Display', serif;}
.service-content p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; min-height: 70px;}

/* ================= Galeria Masonry (Inspirações) ================= */
.gallery { padding: 80px 0; }
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 20px; 
    grid-auto-flow: dense;
}
.gallery-grid img { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
    border-radius: 8px; 
    transition: var(--transition);
    cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 10px 20px rgba(0,0,0,0.2); z-index: 10;}

/* ================= Área de Cobertura ================= */
.coverage { padding: 80px 0; text-align: center; background: var(--primary-color); color: var(--white); }
.coverage-icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 20px; }
.coverage h2 { color: var(--secondary-color); font-size: 2.5rem; margin-bottom: 15px; }
.coverage p { color: #f0f0f0; margin-bottom: 30px; font-size: 1.1rem;}

.cities { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.cities span { background: rgba(255,255,255,0.1); padding: 8px 20px; border-radius: 30px; font-size: 0.95rem; font-weight: 400; border: 1px solid rgba(226, 211, 186, 0.3);}

/* ================= Footer ================= */
footer { background-color: var(--dark-bg); color: #ccc; padding: 70px 0 30px; border-top: 5px solid var(--secondary-color); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; margin-bottom: 50px; }

.brand img { height: 90px; margin-bottom: 20px; filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.5));} /* Destaque para o logo escuro no fundo escuro */
.brand p { margin-bottom: 20px; font-size: 0.95rem; }

.footer-col h3 { color: var(--secondary-color); font-size: 1.3rem; margin-bottom: 25px; font-family: 'Playfair Display', serif;}
.footer-col p { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 15px; font-size: 0.95rem; }
.footer-col i { color: var(--secondary-color); margin-top: 5px; font-size: 1.1rem; }

.social-links a { width: 42px; height: 42px; background: rgba(255,255,255,0.05); display: inline-flex; justify-content: center; align-items: center; color: var(--secondary-color); border-radius: 50%; transition: var(--transition); font-size: 1.1rem;}
.social-links a:hover { background: var(--secondary-color); color: var(--primary-color); transform: translateY(-3px); }

.copyright { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: #888; }

/* ================= WhatsApp Flutuante ================= */
.float-wa { position: fixed; bottom: 30px; right: 30px; background-color: var(--whatsapp); color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; box-shadow: 2px 2px 15px rgba(0,0,0,0.3); z-index: 100; transition: var(--transition); animation: pulse 2s infinite; }
.float-wa:hover { transform: scale(1.1); }

@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); }
}

/* ================= Animações ================= */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ================= Responsivo ================= */
@media (max-width: 991px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3.2rem; }
    nav ul { display: none; }
    header .btn-primary { display: none; }
}
@media (max-width: 768px) {
    .hero { padding-top: 140px; min-height: 80vh; }
    .section-title h2 { font-size: 2.3rem; }
    .about-image img { border-radius: 10px; }
}