:root {
    --verde-principal: #2E7D32;      /* Verde escuro e elegante */
    --verde-claro: #C8E6C9;         /* Verde claro para fundos */
    --amarelo-destaque: #FFC107;     /* Amarelo vibrante para CTAs */
    --cinza-texto: #424242;         /* Cinza escuro para texto */
    --cinza-claro: #f5f5f5;         /* Cinza claro para fundos de seção */
    --branco: #ffffff;               /* Branco puro */
}

/* Estilos Globais */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--cinza-claro);
    color: var(--cinza-texto);
    line-height: 1.6;
}

.banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--verde-principal);
    margin-bottom: 1.5rem;
}

.banner-content .subtitulo {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--cinza-texto);
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.service-cards .card h3 {
    font-size: 1.4rem;
    margin: 0 0 0.8rem 0;
    color: var(--verde-principal);
    font-weight: 700;
    line-height: 1.3;
}

.service-cards .card p {
    font-size: 1rem;
    color: var(--cinza-texto);
    flex-grow: 1;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--cinza-texto);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: var(--cinza-texto);
    margin-bottom: 2rem;
}

/* Banner Principal */
.banner {
    height: 80vh;
    min-height: 600px;
    background: url("/assets/home/banner.webp") fixed center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(46, 125, 50, 0.7) 0%,
        rgba(76, 175, 80, 0.5) 100%
    );
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 900px; /* Aumentado para melhor visualização */
    padding: 3rem; /* Mais padding */
    text-align: center;
    color: var(--cinza-texto);
    backdrop-filter: blur(8px); /* Blur mais intenso */
    background: rgba(255, 255, 255, 0.95); /* Fundo mais opaco */
    border-radius: 20px; /* Bordas mais arredondadas */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); /* Sombra mais pronunciada */
}

/* Seção de Serviços */
.services {
    padding: 8rem 2rem; /* Mais espaçamento vertical */
    background-color: var(--verde-claro); /* Usando a nova variável */
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem; /* Aumentar o espaçamento entre os cards */
    max-width: 1200px;
    margin: 0 auto;
}

.service-cards .card {
    background: var(--branco);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    min-height: 320px; /* Aumentar a altura mínima do card */
}

.service-cards .card:hover {
    transform: translateY(-10px); /* Efeito de elevação mais pronunciado */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); /* Sombra maior no hover */
}

.service-cards .card img {
    width: 100%;
    height: 180px; /* Altura da imagem aumentada */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-cards .card:hover img {
    transform: scale(1.08); /* Zoom maior na imagem */
}

.service-cards .card .card-content {
    padding: 1.8rem; /* Mais padding interno */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-cards .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px; /* Linha superior mais grossa */
    background: linear-gradient(90deg, var(--verde-principal), var(--amarelo-destaque));
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Seção CTA */
.cta {
    padding: 8rem 2rem; /* Mais espaçamento vertical */
    background-color: var(--cinza-claro); /* Usando a nova variável */
    text-align: center;
}

/* Botões */
.btn-banner, .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem; /* Aumentar o espaçamento do ícone */
    padding: 1.2rem 3rem; /* Mais padding */
    border-radius: 30px;
    font-weight: 700; /* Texto mais negrito */
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase; /* Texto em maiúsculas */
    letter-spacing: 0.05em; /* Espaçamento entre letras */
}

.btn-banner {
    background: var(--amarelo-destaque);
    color: var(--cinza-texto);
    border: none; /* Remover borda */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-banner:hover {
    background: var(--verde-principal);
    color: var(--branco);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta {
    background: var(--verde-principal);
    color: var(--branco);
    border: none; /* Remover borda */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background: var(--verde-escuro);
    transform: translateY(-3px); /* Efeito de elevação mais pronunciado */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Seções Alternadas */
section:nth-child(even) {
    background: var(--branco);
}

/* Responsividade */
@media (max-width: 768px) {
    .banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .banner-content {
        padding: 2rem;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content .subtitulo {
        font-size: 1.2rem;
    }
    
    .services, .cta {
        padding: 5rem 1rem;
    }

    .service-cards {
        gap: 1.5rem;
    }

    .service-cards .card img {
        height: 150px;
    }

    .service-cards .card .card-content {
        padding: 1.2rem;
    }

    .service-cards .card h3 {
        font-size: 1.2rem;
    }

    .service-cards .card p {
        font-size: 0.9rem;
    }

    .btn-banner, .btn-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content .subtitulo {
        font-size: 1rem;
    }
    
    .btn-banner, .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .whatsapp-float:hover {
        transform: translateY(-2px) scale(1.05);
    }
}

/* Botão WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
  margin-top: 2px;
}

/* Animação de pulsar */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}




