





/* config.css */
:root {
  --verde: #2ecc71;
  --verde-escuro: #008548;
  --verde-claro: #E6F5EC;
  --preto: #333333;
  --cinza-escuro: #666666;
  --cinza-medio: #999999;
  --cinza-claro: #F5F5F5;
  --branco: #FFFFFF;
  --fonte-principal: 'Inter', sans-serif;
  --sombra: 0 4px 12px rgba(0, 0, 0, 0.08);
  --borda: 1px solid #E0E0E0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fonte-principal);
  color: var(--preto);
  line-height: 1.6;
  background-color: var(--branco);
}











.hero-video {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  color: white;
}

.background-video {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  z-index: -2;
  object-position: 80% 30%; /* eixo X = 50% (centralizado), eixo Y = 20% (mais para cima) */
}


.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.3rem;
}

.hero-content p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}


/* 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;
  }
}




 /* História Section - Centralizada */
        .historia-section {
            padding: 100px 0;
            background-color: var(--branco);
            position: relative;
            text-align: center;
        }

        .historia-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            max-width: 800px;
            height: 1px;
            background-color: rgba(0, 0, 0, 0.1);
        }

        .container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .historia-content {
            display: flex;
            justify-content: center;
        }

        .historia-text {
            max-width: 900px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--preto);
            margin-bottom: 40px;
            position: relative;
            font-weight: 700;
            text-align: center;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--verde);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        .historia-descricao {
            display: flex;
            flex-direction: column;
            gap: 28px;
            text-align: center;
        }

        .historia-descricao p {
            font-size: 1.2rem;
            color: var(--cinza-escuro);
            line-height: 1.8;
            letter-spacing: 0.2px;
            max-width: 900px;
            margin: 0 auto;
        }

        .historia-descricao strong {
            color: var(--preto);
            font-weight: 600;
            position: relative;
        }

        .historia-descricao strong::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--verde);
            opacity: 0.3;
            transition: opacity 0.3s ease;
        }

        .historia-descricao strong:hover::after {
            opacity: 0.8;
        }

        /* Responsivo */
        @media (max-width: 1024px) {
            .section-title {
                font-size: 2.25rem;
            }
            
            .historia-descricao p {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 768px) {
            .historia-section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 32px;
            }
            
            .historia-descricao {
                gap: 24px;
            }
            
            .historia-descricao p {
                font-size: 1.1rem;
                line-height: 1.7;
            }
        }

        @media (max-width: 480px) {
            .historia-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 28px;
            }
            
            .historia-descricao {
                gap: 20px;
            }
            
            .historia-descricao p {
                font-size: 1rem;
                line-height: 1.6;
            }
            
            .section-title::after {
                width: 60px;
                height: 3px;
                margin: 16px auto 0;
            }
        }




/* Seção Pilares - Design Aprimorado */
.pilares-section {
  padding: 60px 0;
  background-color: var(--branco);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--preto);
  margin-bottom: 40px;
  font-weight: 700;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.pilar-card {
  background: var(--branco);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  overflow: hidden;
}

.pilar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--verde);
  transition: width 0.3s ease;
}

.pilar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.15);
}

.pilar-card:hover::before {
  width: 6px;
}

.pilar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  transition: all 0.3s ease;
}

.pilar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--preto);
  font-weight: 700;
}

.pilar-card p {
  color: var(--cinza-escuro);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .pilares-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .pilares-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .pilar-card {
    padding: 25px 20px;
  }
}

/* Valores Section - Design Aprimorado */
.valores-section {
  padding: 80px 0;
  background-color: var(--branco);
  position: relative;

  margin-top: -50px;
}

.valores-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.valor-item {
  background-color: var(--branco);
  color: var(--verde);
  padding: 16px 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid var(--verde);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.valor-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--verde);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.valor-item:hover {
  color: var(--branco);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 168, 89, 0.15);
}

.valor-item:hover::before {
  transform: scaleY(1);
}

/* Responsivo */
@media (max-width: 768px) {
  .valores-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }
  
  .valor-item {
    padding: 14px 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Números Section */
.numeros-section {
  padding: 80px 0;
  background-color: var(--verde);
  color: var(--branco);
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.numero-item {
  text-align: center;
}

.numero-item h3 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.numero-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--cinza-claro);
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--preto);
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--cinza-escuro);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-button {
  background-color: var(--verde);
  color: var(--branco);
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: var(--verde-escuro);
  transform: translateY(-3px);
  box-shadow: var(--sombra);
}

/* Responsividade */
@media (max-width: 992px) {
  .historia-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .historia-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sobre-hero h1 {
    font-size: 2.5rem;
  }
  
  .sobre-hero p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .numero-item h3 {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .sobre-hero {
    padding: 80px 0;
  }
  
  .sobre-hero h1 {
    font-size: 2rem;
  }
  
  .pilares-grid {
    grid-template-columns: 1fr;
  }
  
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .numeros-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}



/* 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;
  }
}