 <style>
        /* Cores da marca */
        .bg-verde {
            background-color: #007243;

        }

        .texto-verde {
            color: #007243;
        }

        /* Ajuste do logo */
        .logo img {
            height: 48px;
        }

        /* Espaço para compensar o menu fixo */
        body {
            padding-top: 80px;
        }
		
		
        /* Altura fixa do banner */
        .banner-slide {
            width: 100%;
            height: 600px;
            object-fit: cover;
        }

        /* Texto sobre o banner */
        .banner-texto {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            text-align: center;
        }
		/* Container do item */
.portfolio-item {
  overflow: hidden;
}

/* Imagem normal */
.portfolio-item img {
  width: 100%;
  transition: 0.4s ease;
}

/* Hover: escala de cinza */
.portfolio-item:hover img {
  filter: grayscale(100%);
  transform: scale(1.05);
}
/* Área geral */
.outdoors {
  padding: 60px 20px;
  background: #f5f5f5;
}
.outdoor-img {
	 width: 100%;
  height: 250px;
  object-fit: cover;
}
.outdoors h2 {
  text-align: center;
  margin-bottom: 10px;
}

.outdoors p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* Grid */
.outdoor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.outdoor-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.outdoor-card:hover {
  transform: translateY(-5px);
}

/* Botão */
.outdoor-card a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 15px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

.outdoor-card a:hover {
  background: #333;
}
footer a {
  text-decoration: none;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: pulse 2s infinite;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

/* ANIMAÇÃO PULSANTE */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.social-circle {
  display: flex;
  gap: 15px;
  justify-content: left;
}

.circle {
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s;
}

.circle:hover {
  transform: scale(1.1);
}

.circle.instagram {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.circle.facebook {
  background: #1877f2;
}
 body {
      font-family: 'Poppins', sans-serif;
    }

   /* HERO */
.hero{

  min-height:520px;
  background:linear-gradient(90deg,var(--verde-escuro),var(--verde-claro));
  position:relative;
  overflow:hidden;
  color:#fff;
}

/* PADRÃO DE CÍRCULOS */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(255,255,255,.15) 1px,transparent 1px);
  background-size:40px 40px;
  opacity:.35;
}

.hero-inner{
  position:relative;
  z-index:1;
  max-width:80%;
  margin:auto;
  padding:80px 40px;

}

/* TEXTO */
.hero h1{
  font-size:52px;
  font-weight:700;
  line-height:1.15;
}
.hero p{
  font-size:18px;
  max-width:520px;
  margin:25px 0 40px;
}

/* BOTÕES */
.btn-primary{
  background:var(--verde-cta);
  color:#004d2a;
  font-weight:600;
  border-radius:8px;
}
.btn-outline{
  border:2px solid #fff;
  color:#fff;
  font-weight:600;
  border-radius:8px;
}
.btn-outline:hover{
  background:#fff;
  color:#006c3c;
}

/* SLIDER */
.slider img{
  width:100%;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.25);
  display:none;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:25px;
  right:25px;
  width:64px;
  height:64px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 0 rgba(37,211,102,.6);
  animation:pulse 1.5s infinite;
  z-index:999;
}
.whatsapp img{width:34px}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.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:900px){
  .hero h1{font-size:36px}
  .hero-inner{padding:60px 24px}
}
:root{
  --verde-escuro:#006c3c;
  --verde-claro:#00a859;
  --verde-cta:#00d26a;
}
.clientes-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clientes-track {
  display: flex;
  will-change: transform;
}

.cliente-item {
  min-width: 220px;
  height: 130px;
  margin: 10px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
    </style>