


.hero-video {
            position: relative;
            width: 100%;
            height: 65vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .background-video {
            position: absolute;
            top: 0; 
            left: 0;
            width: 100%; 
            height: 100%;
            object-fit: cover;
            z-index: -2;
            object-position: 80% 30%;
        }
        
        .overlay {
            position: absolute;
            top: 0; 
            left: 0;
            width: 100%; 
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: -1;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-content {
            text-align: center;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        
        .hero-content h1 span {
            color: var(--verde);
        }
        
        .hero-content p {
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            max-width: 600px;
            margin: 0 auto 1.5rem;
            font-weight: 400;
        }
        
        .btn {
            background: var(--verde);
            color: #fff;
            padding: 0.8rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
            display: inline-block;
        }
        
        .btn:hover {
            background: #27ae60;
            box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
            transform: translateY(-2px);
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .hero-video {
                height: 50vh;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 0.7rem 1.8rem;
                font-size: 0.9rem;
            }
        }























/* Empresas */
.empresas-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* margem lateral */
}

.empresas-texto h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.empresas-texto p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Slider */
.empresas-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.empresas-track {
    display: flex;
    animation: scroll 40s linear infinite;
}

.empresas-track img {
    max-height: 60px;
    margin: 0 30px;
    object-fit: contain;
}

/* Animação infinita */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.empresas-track {
    display: flex;
    animation: scroll 7s linear infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .empresas-texto h2 {
        font-size: 1.5rem;
    }

    .empresas-texto p {
        font-size: 0.9rem;
    }

    .empresas-track img {
        max-height: 45px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .empresas-texto h2 {
        font-size: 1.2rem;
    }

    .empresas-texto p {
        font-size: 0.85rem;
    }

    .empresas-track img {
        max-height: 35px;
        margin: 0 10px;
    }
}


/* Estilo Final */
.sobre-final {
  padding: 4rem 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sobre-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Parte Esquerda */
.badge-final {
  display: inline-block;
  background: #f0f7f0;
  color: var(--verde);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.sobre-final-texto h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.text-green {
  color: var(--verde);
}

.destaque-final {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

.lista-final {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.lista-final li {
  font-size: 0.95rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.check-green {
  color: var(--verde);
  font-weight: bold;
}

/* Parte Direita (imagem) */
.sobre-final-imagem img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre-final {
    padding: 2.5rem 0;
  }
  
  .sobre-final-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sobre-final-imagem {
    order: -1;
  }
}





/* Estilo Serviços PRO */
.servicos-pro {
  padding: 3rem 0;
  background: #f9fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.servicos-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--verde);
  background: #e8f5e9;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.3;
}

.text-green {
  color: var(--verde);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.servico-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.8rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid #edf2f7;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.servico-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
  border-color: #e2e8f0;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--verde);
  transition: height 0.3s ease;
}

.servico-card:hover::before {
  height: 100%;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f5e9;
  border-radius: 8px;
  margin-bottom: 1.2rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.servico-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.servico-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a5568;
  margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .servicos-pro {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .servico-card {
    padding: 1.5rem;
  }
}





/* Estilo Métricas Final */
.metrics-final {
  padding: 2rem 0 4rem; /* Reduzido padding-top para 2rem */
  background: #f9fafc;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.metrics-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.metrics-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--verde);
  background: #e8f5e9;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.metrics-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.text-green {
  color: var(--verde);
}

.metrics-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.metric-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.8rem 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #edf2f7;
}

.metric-number {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;

  
}

.metric-label {
  font-size: 0.95rem;
  color: #4a5568;
  font-weight: 500;
}

/* Responsivo */
@media (max-width: 768px) {
  .metrics-final {
    padding: 1.5rem 0 3rem;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .metric-card {
    padding: 1.5rem;
  }
}




/* Estilo CTA Final Ajustado */
.cta-final-wrapper {
  position: relative;
  margin: 0;
}

.cta-final {
  background: var(--verde);
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
}

.cta-final-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-final-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.cta-final-text {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

/* Botão Ajustado */
.cta-btn-final2 {
  display: inline-block;
  background: white;
  color: var(--verde);
  padding: 0.5rem 1.2rem; /* padding mais equilibrado */
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.9rem;
  min-width: auto; /* remove largura fixa */
  text-align: center;
  transition: background 0.2s ease;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.cta-btn-final:hover {
  background: #f5f5f5;
}

/* Responsivo */
@media (max-width: 480px) {
  .cta-btn-final {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .cta-final {
    padding: 1.2rem 1rem;
  }
  
  .cta-final-title {
    font-size: 1.3rem;
  }
  
  .cta-final-button {
    padding: 0.4rem 1rem;
  }
}





/* Seção de Contatos estilo footer */
.contact-footer {
  background: var(--cinza-claro);
  padding: 2rem 0;
  font-family: var(--fonte-principal);
}

.contact-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem; /* menos espaço que antes */
}

/* Coluna Esquerda */
.footer-left {
  flex: 1.3; /* um pouco maior que a direita */
}

.footer-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-badge {
  display: inline-block;
  background: var(--verde);
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-title {
  font-size: 1.2rem;
  color: var(--preto);
  margin: 0 0 1rem;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 0.8rem;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-text {
  font-size: 0.95rem;
  color: var(--cinza-escuro);
  margin: 0;
  line-height: 1.4;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--verde);
}

.social-link:hover svg {
  stroke: white;
}

/* Coluna Direita */
.footer-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo-img {
  max-height: 380px;
  width: auto;
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left {
    flex: unset;
    width: 100%;
  }
}









/* Footer */
.footer {
  background: var(--preto);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    border-top: 1px solid #eee;
    padding: 1rem 0;
  }

  .nav.active {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
  }
}

























































.rh-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  overflow: hidden;
}

.section-1 {
  background: linear-gradient(135deg, #0a5c36 0%, #1c8a52 100%);
}

.section-2 {
  background: linear-gradient(135deg, #1e8449 0%, var(--verde) 100%);
}

.section-3 {
  background: linear-gradient(135deg, #27ae60 0%, var(--verde) 100%);
}

.rh-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  padding: 0 20px;
}

.rh-texto {
  flex: 1;
  padding: 0 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rh-titulo {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
}

.rh-destaque {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
  text-align: left;
}

.rh-subdestaque {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 25px;
  text-align: left;
}

.rh-descricao {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
  max-width: 100%;
}

.rh-imagem {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
}

.rh-img-principal {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.rh-blur {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(46, 204, 113, 0.4);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  animation: rh-pulse 8s infinite alternate;
}

.rh-blur:nth-child(1) {
  top: 10%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: rgba(39, 174, 96, 0.3);
}

.rh-blur:nth-child(2) {
  bottom: 10%;
  left: 20%;
  width: 160px;
  height: 160px;
  background: rgba(52, 152, 219, 0.2);
}

@keyframes rh-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

@media (max-width: 1100px) {
  .rh-titulo {
    font-size: 2.2rem;
  }
  
  .rh-destaque {
    font-size: 1.3rem;
  }
  
  .rh-subdestaque {
    font-size: 1.1rem;
  }
  
  .rh-descricao {
    font-size: 1.05rem;
  }
}

@media (max-width: 900px) {
  .rh-container {
    flex-direction: column;
    padding: 0 15px;
  }
  
  .rh-texto {
    padding: 30px 25px;
    text-align: center;
    align-items: center;
  }
  
  .rh-titulo {
    font-size: 2rem;
    text-align: center;
  }
  
  .rh-destaque {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .rh-subdestaque {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .rh-descricao {
    text-align: center;
  }
  
  .rh-imagem {
    width: 100%;
    padding: 0 25px 30px;
    height: 320px;
  }
}

@media (max-width: 576px) {
  .rh-section {
    padding: 30px 0;
  }
  
  .rh-texto {
    padding: 25px 20px;
  }
  
  .rh-titulo {
    font-size: 1.8rem;
  }
  
  .rh-destaque {
    font-size: 1.2rem;
  }
  
  .rh-subdestaque {
    font-size: 1.05rem;
  }
  
  .rh-descricao {
    font-size: 1rem;
  }
  
  .rh-imagem {
    height: 280px;
    padding: 0 20px 25px;
  }
  
  .rh-blur {
    width: 160px;
    height: 160px;
    filter: blur(45px);
  }
  
  .rh-blur:nth-child(1) {
    width: 140px;
    height: 140px;
  }
  
  .rh-blur:nth-child(2) {
    width: 130px;
    height: 130px;
  }
}