:root {
--verde-principal: #025e4a;
--verde-escuro: #0b4716;
--verde-claro: #66cc44;
--branco-leve: #f3ffff;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-image: url('img/hero-bdy.svg');
background-size: contain;
background-repeat: repeat-y;
}

/* Header */
header {
background: var(--verde-principal);
background: linear-gradient(145deg, var(--verde-claro), var(--verde-escuro), var(--verde-principal));
border-top: 3px dashed var(--verde-claro);
color: white;
padding: 0.5rem 0 0.9rem;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2rem;
}

.logo {
font-size: 1.8rem;
font-weight: bold;
text-decoration: none;
color: white;
display: flex;
gap: 10px;
text-shadow: 1px 1px 3px var(--verde-principal);
}

.logo img {
width: 11%;
}

.nav-menu {
display: flex;
list-style: none;
align-items: center;
gap: 2rem;
}

.nav-menu a {
color: white;
text-decoration: none;
transition: color 0.3s;
}

/* COR ATIVA PARA SEÇÃO ATUAL */
.nav-menu a.active,
.nav-menu a:hover {
    color: var(--verde-claro) !important;
}

.orcamento-btn {
    border: 1px solid var(--verde-claro);
    padding: 10px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde-principal));
    font-weight: 500;
}

a.orcamento-btn:hover{
    background: var(--verde-claro);
    color: var(--verde-principal) !important;
}

.menu-toggle {
display: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--verde-claro);
}

/* Hero Section - ATUALIZADO COM IMAGEM DE JARDINEIRO */
.hero {
background:
linear-gradient(rgba(102, 204, 68, 0.5), rgba(102, 204, 68, 0.5)),
url('img/hero-banner.jpg') center/cover;
background-size: cover;
background-position: center;
background-attachment: fixed;
color: white;
padding: 115px 2rem;
text-align: center;
position: relative;
}

.hero h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
margin-bottom: 1.5rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
position: relative;
z-index: 2;
}

.hero p {
font-size: 1.1rem;
padding: 15px;
max-width: 580px;
margin-left: auto;
margin-right: auto;
text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
position: relative;
z-index: 2;
background: rgba(11, 71, 22, 0.7);
background: linear-gradient(135deg, rgba(11, 71, 22, 0.5), var(--verde-escuro));
color: var(--branco-leve);
border-radius: 25px 25px 0 0;
}

/* Services */
.services {
padding: 80px 2rem;
max-width: 1200px;
margin: 0 auto;
}

.services h2 {
text-align: center;
font-size: 2.5rem;
color: var(--verde-principal);
margin-bottom: 3rem;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.service-card {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px var(--verde-claro);
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Gallery & Videos */
.gallery, .videos {
padding: 80px 2rem;
background: var(--branco-leve);
}

.gallery h2, .videos h2 {
text-align: center;
font-size: 2.5rem;
color: var(--verde-principal);
margin-bottom: 3rem;
}

.gallery-grid, .video-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}

.gallery-item img {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 15px;
transition: transform 0.3s;
}

.gallery-item:hover img {
transform: scale(1.05);
}

.video-item {
display: flex;
justify-content: center;
gap: 1rem;
}

.video-item video {
width: 78vh;
height: 370px;
object-fit: cover;
border-radius: 15px;
margin: auto;
}

/* Call to Action - AJUSTADO COM IMAGEM DE FUNDO + RGBA VERDE */
.cta-section {
background:
linear-gradient(rgba(2, 94, 74, 0.85), rgba(2, 94, 74, 0.75)),
url('img/jardim.jpg') center/cover;
background-size: cover;
background-position: center;
background-attachment: ;
color: white;
padding: 80px 2rem;
text-align: center;
position: relative;
}

.cta-content {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
padding: 3rem 2rem;
border-radius: 20px;
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 2;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.cta-btn {
background: #ffc731;
color: #000;
padding: 1rem;
font-size: 1.2rem;
font-weight: bold;
border: none;
border-radius: 17px;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
margin: 1rem 0;
}

.cta-btn:hover {
background: #ffb300;
transform: translateY(-2px);
}

/* Locations & Contact */
.locations-contact {
padding: 80px 2rem;
max-width: 1200px;
width: 100%;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 4rem;
}

.locations h3, .contact h3 {
color: var(--verde-principal);
font-size: 2rem;
margin-bottom: 2rem;
text-align: center;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.contact-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background: var(--branco-leve);
border-radius: 10px;
transition: transform 0.3s;
}

.contact-item:hover {
transform: translateX(10px);
}

.contact-item a {
    font-size: 1.2rem;
}

.contact-item i {
background: var(--verde-principal);
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
}

.contact-item .fa-whatsapp {
font-size: 1.4rem;
}

/* WhatsApp Form */
.whatsapp-form {
background: var(--verde-escuro);
color: white;
padding: 80px 2rem;
text-align: center;
}

.whatsapp-form h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
}

.form-container {
max-width: 600px;
margin: 0 auto;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group input, .form-group select, .form-group textarea {
width: 100%;
padding: 1rem;
border: none;
border-radius: 10px;
font-size: 1rem;
background: rgba(255,255,255,0.95);
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.form-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.btn {
padding: 1rem 2rem;
border: none;
border-radius: 50px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
}

.btn-secondary {
background: #666;
color: white;
}

.btn-primary {
background: var(--verde-claro);
color: #000;
}

.btn:hover {
transform: translateY(-2px);
}

/* Container - SEMPRE horizontal */
.whatsapp-container {
position: fixed;
bottom: 40px;
right: 30px;
display: flex;
flex-direction: row-reverse;
align-items: center;
gap: 5px;
z-index: 1000;
}

.whatsapp-container a {
text-decoration: none;
}

/* Botão WhatsApp */
.whatsapp-float {
width: 60px;
height: 60px;
background: #20ba5a;
border: 2px solid var(--verde-claro);
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
transition: all 0.3s;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0; /* Não encolhe o botão */
}

.whatsapp-float:hover {
transform: scale(1.1);
background: #20ba5a;
border: 0;
}

/* Texto CTA */
.whatsapp-cta {
background: rgba(37, 211, 102, 0.95);
color: white;
padding: 5px 10px;
border-radius: 20px 10px 10px 20px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-weight: 600;
font-size: 14px;
line-height: 1.3;
box-shadow: 2px 2px 12px rgba(0,0,0,0.3);
backdrop-filter: blur(10px);
border: 2px solid var(--verde-claro);
max-width: 100%;
transform: translateY(4px);
animation: slideIn 0.5s ease-out;
white-space: normal; /* Quebra linha natural */
text-shadow: 1px 1px 3px var(--verde-principal);
width: 100%;
}

.whatsapp-cta:hover {
background: rgba(32, 186, 90, 0.95);
}

@keyframes slideIn {
from {
opacity: 0;
transform: translateY(20px) translateX(20px);
}
to {
opacity: 1;
transform: translateY(4px) translateX(0);
}
}

/* Footer */
footer {
background: var(--verde-principal);
color: white;
text-align: center;
padding: 2rem;
}

footer .ads-cw {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

footer .ads {
    font-size: 12px;
    margin-top: -10px;
    letter-spacing: 1px;
    color: #f3ffff;
    margin-right: 3px;
}

footer .ads-cw img {
    width: 64px;
}

/* Mobile Responsiveness */
@media (max-width: 940px) {
    .contact-item a {
        font-size: 1rem;
    }
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 910px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--verde-principal);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        display: flex;
    }
    .nav-menu.active {
        left: 0;
    }
}

@media (max-width: 820px) {
.logo {
font-size: 1.6rem;
}

.hero {
padding: 100px 1rem 60px;
background-attachment: scroll;
}

.cta-section {
background-attachment: scroll;
}

.locations-contact {
grid-template-columns: 1fr;
gap: 2rem;
}

.form-buttons {
flex-direction: column;
align-items: center;
}

.contact-item a {
    font-size: 1.1rem;
}

.whatsapp-float {
bottom: 20px;
right: 20px;
}
}

@media (max-width: 768px) {
    .video-item {
        flex-direction: column;
    }
    .video-item video {
        width: 70%;
    }
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .whatsapp-cta {
        font-size: 13px;
        padding: 10px 12px;
        border-radius: 18px 8px 8px 18px;
    }
}

@media (max-width: 460px) {
nav {
    padding: 0.3rem 1rem;
}

.cta-section {
    padding-top: 100px;
}

.video-item video {
    width: 100%;
}

.cta-content {
padding: 2rem 1rem;
}

.cta-content h2 {
font-size: 2.3rem;
}

.locations-contact {
padding: 80px 1rem;
}

.contact-item a {
    font-size: 1rem;
}
}

@media (max-width: 390px) {
.locations-contact {
padding: 80px 0;
}
}

