:root {
  --primary-color: #274A46;
  --secondary-color:  #477642;
  --dark-color: #171717;
  --light-color: #f8f9fa;
  --accent-color: #6f42c1;
}
.text-bg-primary {
  background: #274A46 !important;
}
.bg-black-50 {
  background: rgba(0, 0, 0, 0.5);
}
.bg-opacity-25 {
  background: #274A4642;
}
body {
  font-family: 'Campton', sans-serif;
  color: var(--dark-color);
  overflow-x: hidden;
}
/* Estilos Modernos para a Navbar */
.navbar {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* padding: 1rem 0; */
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.5px;
}

.navbar-brand span:first-child {
  color: #274A46 !important;
  position: relative;
}

.navbar-brand span:last-child {
  color:  #477642 !important;
}

/* Botão hamburguer personalizado */
.navbar-toggler {
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
  transform: rotate(0deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  transform: rotate(90deg);
}

/* Links de navegação modernos */
.nav-link {
  color: #495057 !important;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 2px;
}

.nav-link:hover {
  color: #274A46 !important;
  background-color: rgba(13, 110, 253, 0.05);
}

.nav-link.active {
  color: #274A46 !important;
  font-weight: 600;
}

/* Indicador animado do link ativo */
.nav-link-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #274A46,  #477642);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
}

.nav-link:hover .nav-link-indicator,
.nav-link.active .nav-link-indicator {
  opacity: 1;
}

.nav-link.active .nav-link-indicator {
  width: 20px;
  border-radius: 10px;
}

/* Efeito de linha sutil no hover */
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #274A46, transparent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::before {
  width: 80%;
}

/* Menu mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
    border-radius: 8px;
  }

  .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.08);
  }

  .nav-link-indicator {
    display: none;
  }

  .nav-link::before {
    display: none;
  }

  .btn-primary {
    margin-top: 1rem;
    width: 100%;
  }
}

/* Animação suave para o menu mobile */
.navbar-collapse {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Botão de contato moderno */
.btn-primary {
  background: linear-gradient(135deg, #274A46f6, #477642);
  border: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
  background: linear-gradient(135deg, #274A46, #477642);
  
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* Efeito de brilho no botão */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::after {
  left: 100%;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
}

.navbar-brand span {
  color: var(--secondary-color);
}

/* Hero Section Moderna */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

/* Vídeo de fundo */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.fallback-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00000082 0%, #274A469f 100%);
  z-index: 1;
}

/* Conteúdo principal */
.hero-section .container {
  position: relative;
  z-index: 2;
}

.min-vh-80 {
  min-height: 80vh;
}

/* Títulos */
.hero-title {
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #8df685 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.5rem;
}

.hero-subtitle .lead {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Text utilities */
.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.bagde-hero{
  background: linear-gradient(135deg, #274A46 0%, #477642 100%);
}

/* Botões */
.hero-section .btn-primary {
  background: linear-gradient(135deg, #274A46 0%, #477642 100%);
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.hero-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(13, 110, 253, 0.4); 
  background: linear-gradient(135deg, #274A46f6, #477642)!important;
}

.hero-section .btn-outline-light {
  border-width: 2px;
  transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Badges */
.badge {
  font-weight: 500;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #274A46f6, #477642)!important;
}

.bg-opacity-10 {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-opacity-20 {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Card flutuante */
.floating-card {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-card .card {
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.icon-large {
  width: 80px;
  height: 80px;
}

/* Ícones */
.icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* backdrop-filter: blur(5px); */
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Scroll indicator */
.scroll-indicator {
  z-index: 3;
}

.mouse-wrapper {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.mouse {
  width: 4px;
  height: 10px;
  background-color: white;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Destaques */
.hero-section .row.g-4 > div {
  transition: transform 0.3s ease;
}

.hero-section .row.g-4 > div:hover {
  transform: translateY(-5px);
}

/* Responsividade */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle .lead {
    font-size: 1.5rem;
  }

  .floating-card {
    margin-top: 3rem;
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle .lead {
    font-size: 1.25rem;
  }

  .hero-section .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .min-vh-80 {
    min-height: 90vh;
  }
}

/* Animações de entrada */
.hero-section .container > * {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay nas animações */
.hero-section .hero-title {
  animation-delay: 0.2s;
}

.hero-section .hero-subtitle {
  animation-delay: 0.4s;
}

.hero-section .d-flex.flex-wrap.gap-3 {
  animation-delay: 0.6s;
}

.hero-section .row.g-4 {
  animation-delay: 0.8s;
}

.floating-card {
  animation-delay: 1s;
}

.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
}

.section-title.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Seção Missão, Visão e Valores */
:root {
  --primary-color: #274A46;
  --secondary-color:  #477642;
  --dark-color: #171717;
  --light-color: #f8f9fa;
}

#valores {
  position: relative;
  overflow: hidden;
}

/* Efeito de fundo sutil */
#valores::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(39, 74, 70, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(71, 118, 66, 0.03) 0%,
      transparent 50%
    );
  z-index: 0;
}

#valores .container {
  position: relative;
  z-index: 1;
}

/* Cards Modernos */
.card-mvv {
  background: white;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

/* Efeito hover dos cards */
.shadow-hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-mvv:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Efeito de borda superior colorida nos cards */
.card-mvv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card-mvv:hover::before {
  transform: scaleX(1);
}

/* Estilização do ícone */
.icon-wrapper {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.card-mvv:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  /* border-color: var(--primary-color); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Títulos com gradiente sutil */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

/* Conteúdo dos cards */
.mvv-content {
  position: relative;
}

.mvv-content p {
  line-height: 1.8;
  font-size: 14px;
}

/* Lista de valores */
.mvv-content ul li {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.mvv-content ul li:hover {
  transform: translateX(5px);
}

.mvv-content ul li i {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mvv-content ul li:hover i {
  transform: scale(1.1);
}

/* Elementos decorativos */
.border-2 {
  border-width: 2px !important;
}

.opacity-25 {
  opacity: 0.25;
}

.line-separator {
  border-radius: 2px;
}

/* Animações de entrada */
.card-mvv {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.card-mvv:nth-child(1) {
  animation-delay: 0.1s;
}

.card-mvv:nth-child(2) {
  animation-delay: 0.3s;
}

.card-mvv:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 991.98px) {
  .card-body {
    padding: 2rem !important;
  }

  .display-5 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .row.g-5 {
    gap: 2rem !important;
  }

  .display-5 {
    font-size: 2rem;
  }

  .icon-wrapper {
    width: 60px !important;
    height: 60px !important;
  }

  .icon-wrapper i {
    font-size: 1.5rem !important;
  }
}

/* Efeitos de foco para acessibilidade */
.card-mvv:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Estilo para os ícones Bootstrap */
.bi {
  vertical-align: -0.125em;
}

/* Gradientes suaves para o background */
.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

/* Opacidades para backgrounds */
.bg-opacity-10 {
  background-color: rgba(39, 74, 70, 0.1) !important;
}

/* Para o background secundário */
.bg-secondary.bg-opacity-10 {
  background-color: rgba(71, 118, 66, 0.1) !important;
}

/* Para o background escuro */
.bg-dark.bg-opacity-10 {
  background-color: rgba(33, 37, 41, 0.1) !important;
}

.service-card {
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  .service-icon {
    background:  #477642 !important;
    i {
      color: white !important;
    }
  }
}

.service-card h4 {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.service-card .list-unstyled {
  font-size: 16px;
}

.text-muted {
  color: #171717 !important;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(32, 201, 151, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.client-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.footer {
  background-color: var(--dark-color);
  color: white;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-color);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.btn-ecogarcias {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-ecogarcias:hover {
  background-color:  #477642;
  border-color:  #477642;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

.stats-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.project-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-image img {
  transition: transform 0.5s ease;
}

.project-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0;
  }

  .section-title {
    margin-bottom: 30px;
  }
}
.logo {
  max-width: 150px;
}
.lead {
  font-size: 16px;
}
.bg-light {
  background: #f5f5f5 !important;
}

/* Estilos para as imagens de fundo dos cards */
.service-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: white;
  z-index: 1;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 12px;
}

/* Overlay escuro para melhor contraste */
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 12px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

/* Muda a cor do texto no hover para melhor legibilidade */
.service-card:hover .h6,
.service-card:hover .list-unstyled,
.service-card:hover .list-unstyled li,
.service-card:hover .list-unstyled .bi-check {
  color: white !important;
}

/* Ícones ficam mais visíveis no hover */
.service-card:hover .service-icon {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: scale(1.1);
}

.service-card:hover .service-icon i {
  color: white !important;
}

/* Botão fica mais destacado no hover */
.service-card:hover .btn-primary {
  background: linear-gradient(135deg,  #274A46f6 0%, #477642 100%);
  border-color:  #477642 !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Classes específicas para cada imagem de fundo */

/* Gestão da Qualidade & Regulação */
.card-gaps-regulatorios::before {
  background-image: url("img/diagnostico-de-gaps-regulatorios.jpg");
}
.card-iso-9001::before {
  background-image: url("img/treinamento-de-auditores-internos-iso-19011.jpg");
}
.card-oleo-gas::before {
  background-image: url("img/sistemas-de-gestao-regulatorios-oleo-e-gas.jpg");
}
.card-procedimentos::before {
  background-image: url("img/procedimentos-corporativos-de-gestao.jpg");
}
.card-auditorias::before {
  background-image: url("img/auditorias-internas-de-gestao.jpg");
}
.card-treinamento-auditores::before {
  background-image: url("img/treinamento-de-auditores-internos-iso-19011.jpg");
}

/* SEPRO & SSO */
.card-gerenciamento-riscos::before {
  background-image: url("img/programas-de-gerenciamento-de-riscos.jpg");
}
.card-analise-riscos::before {
  background-image: url("img/analise-e-perigos-e-riscos.jpg");
}
.card-auditorias-sso::before {
  background-image: url("img/conformidade-ISO-45001.jpg");
}
.card-seguranca-processo::before {
  background-image: url("img/auditoria-de-seguranca-de-processo.jpg");
}
.card-seguranca-operacional::before {
  background-image: url("img/auditoria-de-seguranca-operacional.jpg");
}
.card-procedimentos-seguranca::before {
  background-image: url("img/procedimentos-de-seguranca-de-processo.jpg");
}

/* Gestão Ambiental */
.card-licenciamento::before {
  background-image: url("img/licenciamento-ambiental.jpg");
}
.card-condicionantes::before {
  background-image: url("img/gestao-de-condicionantes-ambientais.jpg");
}
.card-risco-ambiental::before {
  background-image: url("img/analise-de-risco-ambiental.jpg");
}
.card-recuperacao-areas::before {
  background-image: url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80");
}
.card-desmobilizacao::before {
  background-image: url("img/desmobilizacao-de-instalacoes.jpg");
}
.card-iso-14001::before {
  background-image: url("img/sistemas-de-gestao-ISO-14001.jpg");
}

/* Garantir que o conteúdo fique acima da imagem de fundo */
.service-card > * {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

/* Efeito de zoom sutil na imagem */
.service-card:hover::before {
  transform: scale(1.05);
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

/* Transições suaves para todos os elementos */
.service-card * {
  transition: all 0.3s ease;
}
/* Estilos para a seção da equipe */
.team-image-wrapper {
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.team-image-wrapper:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper img {
  transition: transform 0.6s ease;
}

.team-image-wrapper:hover img {
  transform: scale(1.05);
}

.team-overlay {
  z-index: 1;
  pointer-events: none;
}

.stats-overlay {
  z-index: 2;
}

/* Badges de estatísticas */
.stats-badge {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(39, 74, 70, 0.1);
}

.stats-badge:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
  background-color: white !important;
}

.stats-badge .stats-number {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Para mobile */
@media (max-width: 991.98px) {
  .team-image-wrapper {
    height: 400px !important;
    margin-bottom: 2rem;
  }

  .stats-badge {
    padding: 1rem !important;
  }

  .stats-badge .stats-number {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 767.98px) {
  .team-image-wrapper {
    height: 350px !important;
  }

  .stats-badge {
    padding: 0.75rem !important;
  }

  .stats-badge .stats-number {
    font-size: 1.5rem !important;
  }
}

/* Efeito de animação para os badges */
@keyframes floatBadge1 {
  0%,
  100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-25px);
  }
}

@keyframes floatBadge2 {
  0%,
  100% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(15px);
  }
}

@keyframes floatBadge3 {
  0%,
  100% {
    transform: translateY(40px);
  }
  50% {
    transform: translateY(35px);
  }
}

.stats-badge:nth-child(1) {
  animation: floatBadge1 4s ease-in-out infinite;
}

.stats-badge:nth-child(2) {
  animation: floatBadge2 4s ease-in-out infinite;
  animation-delay: 1s;
}

.stats-badge:nth-child(3) {
  animation: floatBadge3 4s ease-in-out infinite;
  animation-delay: 2s;
}

.team-image-wrapper:hover .stats-badge {
  animation-play-state: paused;
}
/* Seção Nossos Serviços */
#nossos-servicos {
  position: relative;
  overflow: hidden;
}

/* Efeito de fundo sutil */
#nossos-servicos::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(39, 74, 70, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(71, 118, 66, 0.03) 0%,
      transparent 50%
    );
  z-index: 0;
}

#nossos-servicos .container {
  position: relative;
  z-index: 1;
}

/* Estilos para os textos */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}
.bg-secondary {
  background: var(--secondary-color) !important;
}

/* Badge de destaque */
.badge.bg-primary.bg-opacity-10 {
  background-color: rgba(39, 74, 70, 0.1) !important;
  border: 1px solid rgba(39, 74, 70, 0.2);
}

/* Ícones pequenos */
.icon-small {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Lista de características */
.features-list ul li {
  transition: transform 0.3s ease;
}

.features-list ul li:hover {
  transform: translateX(5px);
}

.features-list ul li i {
  transition: transform 0.3s ease;
}

.features-list ul li:hover i {
  transform: scale(1.2);
}

/* Botões */
.btn-primary {
  background: linear-gradient(135deg, #274A46f6, #477642)!important;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(4, 2, 76, 0.3) !important;
  background: linear-gradient(135deg,  #274A46f6 0%, #477642 100%)!important;
  
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.shadow-hover {
  box-shadow: 0 5px 20px rgba(39, 74, 70, 0.15);
}

/* Imagens */
.service-image-main {
  position: relative;
  transition: all 0.4s ease;
}

.service-image-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.service-image-main:hover img {
  transform: scale(1.05);
}

.service-image-main img {
  transition: transform 0.6s ease;
}

.image-overlay {
  background: linear-gradient(
    135deg,
    rgba(39, 74, 70, 0.8),
    rgba(71, 118, 66, 0.6)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.service-image-main:hover .image-overlay {
  opacity: 1;
}

/* Cards flutuantes */
.floating-card {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Animações */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#nossos-servicos .col-lg-6:first-child {
  animation: fadeInLeft 0.8s ease-out;
}

#nossos-servicos .col-lg-6:last-child {
  animation: fadeInRight 0.8s ease-out;
}

.floating-card {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsividade */
@media (max-width: 991.98px) {
  .display-5 {
    font-size: 2.5rem;
  }

  .service-image-main {
    margin-bottom: 2rem;
  }

  .floating-card {
    position: absolute !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 0.5rem;
    display: none;
  }

  .position-absolute.top-0.end-0,
  .position-absolute.bottom-0.start-0 {
    position: relative !important;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .service-image-main,
  .service-image-secondary {
    height: 300px !important;
  }
}

/* Efeito de brilho nos botões */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-primary:hover::after {
  left: 100%;
}
/* Seção Entre em Contato */
#contato {
  position: relative;
  overflow: hidden;
}

/* Efeito de fundo sutil */
#contato::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(39, 74, 70, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(71, 118, 66, 0.03) 0%,
      transparent 50%
    );
  z-index: 0;
}

#contato .container {
  position: relative;
  z-index: 1;
}

/* Cards de contato */
.contact-info-card,
.contact-form-card,
.map-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover,
.contact-form-card:hover,
.map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Ícones de contato */
.contact-icon {
  width: 56px !important;
  height: 56px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.d-flex:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Formulário de contato */
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 10px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(39, 74, 70, 0.25);
}

.contact-form .form-control::placeholder {
  color: #adb5bd;
}

/* Mapa */
.map-container {
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.map-container:hover {
  border-color: var(--primary-color);
}

.map-info {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: none;
}

/* Ícones pequenos */
.icon-sm {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quick-links a:hover .icon-sm {
  transform: translateY(-5px);
  background-color: rgba(39, 74, 70, 0.2) !important;
}

/* Botões */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 74, 70, 0.3) !important;
}

.btn-success {
  transition: all 0.3s ease;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3) !important;
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Efeito de brilho nos botões principais */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

/* Animações de entrada */
.contact-info-card,
.contact-form-card,
.map-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.contact-info-card {
  animation-delay: 0.1s;
}

.contact-form-card {
  animation-delay: 0.3s;
}

.map-card {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 991.98px) {
  .display-5 {
    font-size: 2.5rem;
  }

  .contact-info-card,
  .contact-form-card,
  .map-card {
    margin-bottom: 2rem;
  }

  .map-container {
    height: 350px !important;
  }
}

@media (max-width: 767.98px) {
  .display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    padding: 0.75rem !important;
  }

  .map-container {
    height: 300px !important;
  }

  .btn-primary,
  .btn-success {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* Links de contato */
a[href^="mailto:"],
a[href^="tel:"] {
  transition: color 0.3s ease;
}

a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
  color: var(--primary-color) !important;
}

/* Quick links */
.quick-links {
  transition: all 0.3s ease;
}

.quick-links:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/* Footer com imagem de fundo */
.footer {
  position: relative;
  overflow: hidden;
}

/* Contêiner da imagem de fundo */
.footer-background {
  z-index: 1;
}

/* Imagem de fundo */
.footer-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/banner-footer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(30%) brightness(0.7);
  transition: transform 0.6s ease;
}

.footer:hover .footer-image {
  transform: scale(1.05);
}

/* Overlay preto para melhor legibilidade */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

/* Conteúdo sobre a imagem */
.footer .container {
  z-index: 2;
}

/* Logo do footer */
.footer-logo {
  width: 300px;
  max-width: 100%;
  height: auto;
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.02);
  filter: brightness(1.2);
}

/* Ajustes para melhor contraste com o fundo */
.text-white-80 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.85) !important;
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* Links do footer com melhor contraste */
.footer-link {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  position: relative;
  padding: 2px 0;
}

.footer-link:hover {
  color: white !important;
  transform: translateX(5px);
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

/* Redes sociais com efeito de vidro */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-5px) rotate(5deg);
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Botões com efeito de vidro */
.btn-success {
  background: linear-gradient(
    135deg,
    rgba(25, 135, 84, 0.9),
    rgba(32, 201, 151, 0.9)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
  background: linear-gradient(135deg, #198754, #20c997);
}

.btn-primary {
  background: rgba(39, 74, 70, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 74, 70, 0.3);
}

/* Newsletter com efeito de vidro */
.newsletter .form-control {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50px 0 0 50px;
  border-right: none;
}

.newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(39, 74, 70, 0.25);
  color: white;
}

.newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter .btn-primary {
  border-radius: 0 50px 50px 0;
  border-left: none;
}

/* Certificações com efeito de vidro */
.cert-badge {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cert-badge:hover {
  background: rgba(39, 74, 70, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Ícones de contato */
.contact-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50%;
  padding: 6px;
}

/* Linha divisória mais visível */
.border-white.border-opacity-10 {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Voltar ao topo */
.back-to-top {
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--primary-color);
  color: white !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Animações de entrada */
.footer > .container > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.footer > .container > *:nth-child(1) {
  animation-delay: 0.1s;
}
.footer > .container > *:nth-child(2) {
  animation-delay: 0.2s;
}
.footer > .container > *:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 991.98px) {
  .footer {
    padding: 3rem 0 !important;
  }

  .footer-logo {
    width: 250px;
  }

  .footer-links {
    margin-bottom: 1.5rem;
  }

  .footer-image {
    background-position: left center;
  }
}

@media (max-width: 767.98px) {
  .footer-logo {
    width: 350px;
    margin: 0 auto;
  }

  .social-icon {
    margin: 0 0.25rem;
  }

  /* .footer-link {
    justify-content: center;
  } */
  .footer-brand {
    display: flex;
    justify-content: center !important;
  }

  /* .contact-info li {
    justify-content: center;
    text-align: center;
  } */

  .contact-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .footer .btn-success {
    max-width: 250px;
    margin: 0 auto;
  }

  .newsletter .input-group {
    max-width: 300px;
    margin: 0 auto;
  }

  .d-flex.justify-content-md-end {
    justify-content: center !important;
    margin-top: 1rem;
  }

  .footer-image {
    background-position: center;
  }
}

/* Efeito parallax sutil no scroll */
@media (min-width: 992px) {
  .footer-image {
    transition: transform 0.5s ease-out;
  }
}
.border-primary {
  border-color:  #47764282 !important;
}
.border-primary:hover {
  border-color:  #47764282 !important;
}
.btn-primary {
  border: 0px solid !important;
}
/* Seção Nossos Sócios */
#socios {
  position: relative;
  overflow: hidden;
}

/* Efeito de fundo decorativo */
#socios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(39, 74, 70, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(71, 118, 66, 0.03) 0%,
      transparent 50%
    );
  z-index: 0;
}

#socios .container {
  position: relative;
  z-index: 1;
}

/* Cards dos sócios */
.socio-card {
  background: white;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.socio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Fotos dos sócios */
.socio-photo-placeholder {
  transition: all 0.3s ease;
}

.socio-card:hover .socio-photo-placeholder {
  transform: scale(1.05);
}

/* Informações rápidas */
.socio-quick-info {
  position: relative;
}

.socio-quick-info::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

/* Tags dos sócios */
.socio-tags {
  display: flex;
  flex-wrap: wrap;
}

.socio-tags .badge {
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.socio-tags .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Linha do tempo */
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0px;
  width: 2px;
  background: var(--primary-color);
  opacity: 0.2;
  margin-top: 50px;
}

.timeline-icon {
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

/* Formação acadêmica */
.education {
  position: relative;
}

.education::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-color);
  opacity: 0.2;
  margin-top: 50px;
}

.education-icon {
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

/* Ícones pequenos */
.icon-sm {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.d-flex:hover .icon-sm {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mensagem de integração */
.integration-message {
  border: 1px solid rgba(39, 74, 70, 0.1);
  transition: all 0.3s ease;
}

.integration-message:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Botões */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 74, 70, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Animações de entrada */
.socio-card,
.socio-details {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.row.mb-5 .socio-card {
  animation-delay: 0.1s;
}

.row.mb-5 .socio-details {
  animation-delay: 0.3s;
}

.row:not(.mb-5) .socio-details {
  animation-delay: 0.1s;
}

.row:not(.mb-5) .socio-card {
  animation-delay: 0.3s;
}

.integration-message {
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 991.98px) {
  .display-5 {
    font-size: 2.5rem;
  }

  .socio-card {
    margin-bottom: 2rem;
  }

  .timeline::before,
  .education::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .socio-photo {
    height: 300px !important;
  }

  .btn-primary,
  .btn-outline-primary {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* Efeito de foco para acessibilidade */
.socio-card:focus-within,
.timeline-item:focus-within,
.education-item:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Cores específicas */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

/* Opacidades para backgrounds */
.bg-primary.bg-opacity-5 {
  background-color: rgba(39, 74, 70, 0.05) !important;
}

.bg-primary.bg-opacity-10 {
  background-color: rgba(39, 74, 70, 0.1) !important;
}

.bg-secondary.bg-opacity-5 {
  background-color: rgba(71, 118, 66, 0.05) !important;
}

.bg-secondary.bg-opacity-10 {
  background-color: rgba(71, 118, 66, 0.1) !important;
}
/* CORREÇÕES PARA EVITAR SCROLL HORIZONTAL */
body {
  overflow-x: hidden;
  max-width: 100vw;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* Correções para as tabelas */
.info-table {
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-table table {
  min-width: 600px;
}

/* Correções para os cards e seções */
.policy-section,
.policy-nav,
.highlight-box {
  max-width: 100%;
}

/* Correções para elementos com largura fixa */
.hero-policies h1 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Media queries para dispositivos móveis */
@media (max-width: 767.98px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .policy-section {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -5px;
    margin-right: -5px;
    border-radius: 8px;
  }

  .policy-nav {
    margin-left: -5px;
    margin-right: -5px;
  }

  .d-flex.flex-wrap.gap-2 {
    margin-right: -5px;
  }

  /* Ajuste para o badge no mobile */
  .badge {
    white-space: normal;
    text-align: center;
  }
}

/* Garantir que imagens não causem overflow */
img,
video {
  max-width: 100%;
  height: auto;
}

/* Correção para o hero section */
.hero-policies {
  padding-left: 0;
  padding-right: 0;
}

.hero-policies .container {
  padding-left: 15px;
  padding-right: 15px;
}
.diferencial-card {
  background: linear-gradient(to top, #fff, #f5f5f5);
}
/* Seção Nossos Clientes */
#clientes {
  background: linear-gradient(
    135deg,
    rgba(248, 249, 250, 0.95) 0%,
    rgba(233, 236, 239, 0.8) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Efeito de fundo decorativo */
#clientes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(39, 74, 70, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(71, 118, 66, 0.03) 0%,
      transparent 50%
    );
  z-index: 0;
}

#clientes .container {
  position: relative;
  z-index: 1;
}

/* Cards de clientes */
.client-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 240px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(39, 74, 70, 0.2);
}

/* Wrapper das logos */
.client-logo-wrapper {
  width: 100%;
  height: 80px;
}

.client-logo {
  max-height: 70px;
  width: auto;
  max-width: 160px;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: all 0.4s ease;
}

.client-card:hover .client-logo {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Contatos (para Talent) */
.client-contacts {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #6c757d;
}

.client-contacts span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

/* Card de depoimento */
.testimonial-card {
  position: relative;
  border: 1px solid rgba(39, 74, 70, 0.1);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .bi-quote {
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.2;
  font-size: 4rem;
}

/* Selos de confiança */
#clientes .d-flex.align-items-center {
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

#clientes .d-flex.align-items-center:hover {
  background-color: rgba(39, 74, 70, 0.05);
  transform: translateY(-3px);
}

/* Links */
.stretched-link {
  color: var(--primary-color);
  font-weight: 500;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.stretched-link:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 991.98px) {
  .display-5 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .client-card {
    min-height: 200px;
    padding: 1.5rem !important;
  }

  .client-logo-wrapper {
    height: 60px;
  }

  .client-logo {
    max-height: 50px;
  }

  .testimonial-card {
    padding: 2rem !important;
  }
}

@media (max-width: 575.98px) {
  .client-card {
    min-height: 180px;
  }

  .client-card h6 {
    font-size: 0.9rem;
  }

  .client-card p {
    font-size: 0.75rem;
  }
}

/* Animações */
.client-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.client-card:nth-child(1) {
  animation-delay: 0.1s;
}
.client-card:nth-child(2) {
  animation-delay: 0.2s;
}
.client-card:nth-child(3) {
  animation-delay: 0.3s;
}
.client-card:nth-child(4) {
  animation-delay: 0.4s;
}

.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}