/* style.css */
:root {
  --azul-claro: #6EC1E4;
  --azul-escuro: #1E3A8A;
  --branco: #FFFFFF;
  --cinza-claro: #F5F7FA;
  --cinza-medio: #E0E0E0;
  --verde-whatsapp: #25D366;

  /* Variáveis de apoio para consistência */
  --sombra-md: 0 8px 25px rgba(30, 58, 138, 0.1);
  --sombra-lg: 0 12px 30px rgba(30, 58, 138, 0.2);
  --borda-radius: 8px;
  --borda-radius-lg: 30px;
  --transicao-normal: all 0.3s ease;
  --transicao-rapida: all 0.2s ease;
  --espaco-xs: 0.5rem;
}

/* Reset e Estilos Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Importante para evitar scroll horizontal em caso de vazamento de algum elemento */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.bg-light {
  background-color: var(--cinza-claro);
}

.bg-dark {
  background-color: var(--azul-escuro);
  color: var(--branco);
}

/* Navegação */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 2rem;
}

.logo img {
  transition: transform 0.3s ease;
  height: 50px;
  width: auto;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--azul-escuro);
  font-weight: 500;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--azul-claro);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--azul-claro);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-bar {
  width: 100%;
  height: 3px;
  background-color: var(--azul-escuro);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: left center;
}

.menu-toggle.active .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(1px, -1px);
}

.menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(1px, 1px);
}

/* Responsividade da Navegação */
@media (max-width: 992px) {
  .navbar .container {
    padding: 0 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0;
    gap: 2rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }

  .nav-link::after {
    height: 3px;
  }
}

/* Efeito de scroll na Navbar */
@media (min-width: 769px) {
  .navbar.scrolled {
    height: 70px;
  }

  .navbar.scrolled .container {
    height: 70px;
  }

  .navbar.scrolled .logo img {
    height: 40px;
    width: auto;
  }
}

/* --- SUBSTITUIR POR ESTE BLOCO - HERO SECTION --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: end;
  text-align: center;
  overflow: hidden; /* Essencial para conter o vídeo */
  background-color: #333; /* Cor de fundo caso o vídeo não carregue */
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo cubra o espaço sem distorcer */
    object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2; /* Conteúdo fica sobre o vídeo */
  color: var(--branco);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;

  justify-content: center;
  width: 90%;
  max-width: 800px;
  padding-top: 80px;
}

/* AJUSTE HERO MOBILE */
@media (max-width: 768px) {
    .hero {
        height: 90vh;
    }
    .hero-cta {
      flex-direction: column;
      gap: 1rem;
    }
}
/* --- FIM DA SUBSTITUIÇÃO DO HERO --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos para a nova seção de liderança */
.lideranca-section {
  padding: 4rem 0;
}

.lideranca-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-direction: row;
}

.lideranca-info {
  flex: 1;
}

.lideranca-info h2 {
  font-size: 2.5rem;
  color: var(--azul-escuro);
}

.lideranca-info p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.lideranca-foto {
  flex: 1;
  text-align: center;
}

.lideranca-foto img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .lideranca-grid {
    flex-direction: column;
  }
}

/* Estilos para a nova seção de destaque com a gota */
.destaque-lideranca-gota {
  background-color: var(--branco);
  text-align: center;
  padding: 4rem 0;
}

.lideranca-gota {
  max-width: 50%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .lideranca-gota {
    max-width: 80%;
  }
}

/* Estilos para o novo card de serviço com imagem */
.servico-card-com-imagem {
  padding: 0;
  display: block;
}

.servico-imagem {
  height: 200px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.servico-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.servico-card:hover .servico-imagem img {
  transform: scale(1.1);
}

.servico-info {
  padding: 2.5rem;
  text-align: center;
}

.servico-info .servico-icon {
  margin-top: -5rem;
  background: var(--branco);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilização para o contêiner da seção de contato */
.contato-cta {
  background-color: var(--cinza-claro);
  padding: 60px 0;
  text-align: center;
}

/* Estilização para o grid da seção de contato */
.contato-cta-grid {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
}

/* Estilização para a div que contém a imagem */
.contato-cta-info {
  /* Pode adicionar aqui regras para o espaço da imagem, se precisar */
}

/* Estilização da imagem da menina com QR Code */
.contato-cta-image {
  max-width: 100%; /* Garante que a imagem não ultrapasse a largura do contêiner */
  height: auto;   /* Mantém a proporção original da imagem */
  border-radius: 8px; /* Opcional: Adiciona bordas arredondadas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Opcional: Adiciona uma sombra suave */
}

/* Regras para telas menores */
@media (max-width: 768px) {
  .contato-cta-grid {
    flex-direction: column; /* Empilha os itens verticalmente em telas pequenas */
  }
}

/* Botões */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--azul-escuro), var(--azul-claro));
  color: white;
  cursor: pointer;
  transition: var(--transicao-normal);
  text-align: center;
  margin: 0.5rem auto;
}

.btn-primary {
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-claro) 100%);
  color: var(--branco);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul-escuro) 100%);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
  background-color: var(--branco);
  color: var(--azul-escuro);
  border: 2px solid var(--branco);
  border-radius: 50px;
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--branco);
}

.btn-outline {
  background-color: transparent;
  color: var(--azul-escuro);
  border: 2px solid var(--azul-escuro);
  border-radius: 50px;
}

.btn-outline:hover {
  background-color: var(--azul-escuro);
  color: var(--branco);
}

/* Grids Gerais */
.valores-grid,
.servicos-grid,
.equipe-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.valores-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.servicos-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Linha do Tempo */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--azul-claro);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  padding: 1.5rem;
  background: var(--branco);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-year {
  position: absolute;
  top: -20px;
  width: 80px;
  height: 40px;
  background: var(--azul-escuro);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
}

.timeline-item:nth-child(odd) .timeline-year {
  left: -100px;
}

.timeline-item:nth-child(even) .timeline-year {
  right: -100px;
}
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
    transform: translateX(0);
  }
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: auto !important;
  }
  .timeline-year {
    left: 20px !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
  }
}
/* --- FIM DA SUBSTITUIÇÃO DA TIMELINE --- */
/* Contato */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--cinza-medio);
  border-radius: 4px;
}

.form-group textarea {
  min-height: 150px;
}

.contato-info {
  padding: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

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

.social-links a:hover {
  background: var(--azul-claro);
}

.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: rgba(30, 58, 138, 0.9);
  color: var(--branco);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 1000;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: var(--azul-escuro);
}

/* Responsividade Geral */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    z-index: 1000;
  }

  .menu-bar {
    width: 100%;
    height: 3px;
    background-color: var(--azul-escuro);
    transition: all 0.3s ease;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--branco);
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    transform: translateY(-150%);
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .timeline::before {
    left: 40px;
  }

  .timeline-content {
    width: calc(50% - 80px);
    margin-left: 80px !important;
  }

  .timeline-year {
    left: 0 !important;
    right: auto !important;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-cta {
    flex-direction: column;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    padding: 1rem;
  }

  .timeline-year {
    width: 60px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* Estilos do Mapa */
.mapa-section {
  background-color: #f5f7fa;
  padding: 3rem 0;
}

.mapa-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  margin-top: 2rem;
}

#mapa-acores {
  width: 100%;
  height: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.mapa-controles {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.locais-lista {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.local-item {
  padding: 1rem;
  border-radius: 6px;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s ease;
}

.local-item:hover,
.local-item.active {
  background: #e6f0fa;
  transform: translateX(3px);
}

.local-item h4 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.local-item p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .mapa-wrapper {
    grid-template-columns: 1fr;
  }

  #mapa-acores {
    height: 400px;
  }
}

/* --- INÍCIO: CÓDIGO FINAL E CORRIGIDO DO CARROSSEL DE CLIENTES --- */

.clientes-section {
  background-color: var(--cinza-claro);
  padding: 4rem 0;
}

.carrossel-container {
  position: relative;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 50px;
  overflow: hidden;
}

.carrossel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carrossel-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-start; /* Alinha os itens no topo */
  gap: 1rem;
  padding: 1rem 0;
}

.cliente-item {
  display: flex;
  flex-direction: column; /* Coloca o logo acima do nome */
  align-items: center;
  text-align: center;
  flex-basis: 20%; /* Base de largura para cada item */
}

.cliente-logo {
  height: 60px; /* Altura do logo */
  width: 100%;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(60%);
  transition: all 0.3s ease;
}

.cliente-item:hover .cliente-logo {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.1);
}

.cliente-nome {
  font-size: 0.75rem; /* Fonte pequena para o nome */
  color: #555;
  margin-top: 0.5rem;
  white-space: nowrap; /* Impede que nomes longos quebrem a linha */
  overflow: hidden;
  text-overflow: ellipsis; /* Adiciona "..." se o nome for muito longo */
  max-width: 100%;
}

.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--branco);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-escuro);
  transition: all 0.3s ease;
}

.carrossel-btn:hover {
  background: var(--azul-claro);
  color: var(--branco);
}

.carrossel-btn.prev {
  left: 0;
}

.carrossel-btn.next {
  right: 0;
}

.carrossel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.75rem;
}

.carrossel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cinza-medio);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carrossel-dot.active {
  background: var(--azul-escuro);
}

/* Responsividade do Carrossel de Clientes */
@media (max-width: 768px) {
  .carrossel-container {
    padding: 0 1rem;
  }
  
  .carrossel-slide {
    justify-content: space-around;
  }

  .cliente-logo {
    height: 50px;
  }

  .carrossel-btn {
    display: none; /* Esconde as setas no mobile, usa-se os dots */
  }
}

/* --- FIM: CÓDIGO FINAL E CORRIGIDO DO CARROSSEL DE CLIENTES --- */
/* Responsividade do Carrossel de Clientes */
@media (max-width: 768px) {
  .carrossel-container {
    padding: 0 40px;
  }
  .cliente-logo {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .carrossel-slide {
    /* Em telas pequenas, mostra menos logos por vez */
    justify-content: space-between;
  }
  .cliente-logo {
    height: 50px;
  }
  .carrossel-container {
    padding: 0;
  }
  .carrossel-btn {
    /* Esconde as setas em telas muito pequenas, navegação pelos dots */
    display: none;
  }
}

/* --- FIM: CÓDIGO CORRIGIDO DO CARROSSEL DE CLIENTES --- */

/* Seção de Depoimentos */
.depoimentos-section {
  position: relative;
  overflow: hidden;
}

.depoimentos-carrossel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.depoimentos-container {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

.depoimentos-container::-webkit-scrollbar {
  height: 8px;
}

.depoimentos-container::-webkit-scrollbar-track {
  background: var(--cinza-claro);
  border-radius: 10px;
}

.depoimentos-container::-webkit-scrollbar-thumb {
  background: var(--azul-claro);
  border-radius: 10px;
}

.depoimento-card {
  min-width: 350px;
  background: white;
  border-radius: var(--borda-radius-lg);
  box-shadow: var(--sombra-md);
  overflow: hidden;
  scroll-snap-align: start;
  transition: var(--transicao-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.depoimento-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-lg);
}

.depoimento-content {
  padding: 2rem;
  flex-grow: 1;
}

.rating {
  color: var(--azul-claro);
  margin-bottom: 1rem;
}

.rating .fa-star-half-alt {
  color: var(--azul-claro);
}

.depoimento-content blockquote {
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.depoimento-content blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--azul-claro);
  opacity: 0.3;
  line-height: 1;
}

.depoimento-author {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: var(--cinza-claro);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.depoimento-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid var(--azul-claro);
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--azul-escuro);
}

.author-info p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--cinza-escuro);
}

.depoimentos-controles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.controle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--azul-escuro);
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transicao-rapida);
  display: flex;
  align-items: center;
  justify-content: center;
}

.controle-btn:hover {
  background: var(--azul-claro);
  transform: scale(1.1);
}

.depoimentos-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.depoimentos-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cinza-medio);
  cursor: pointer;
  transition: var(--transicao-rapida);
}

.depoimentos-dot.active {
  background: var(--azul-escuro);
  transform: scale(1.2);
}

/* Responsividade Depoimentos */
@media (max-width: 768px) {
  .depoimentos-container {
    gap: 1rem;
  }

  .depoimento-card {
    min-width: 85%;
  }

  .controle-btn {
    width: 35px;
    height: 35px;
  }
}

/* Seção Equipe - AJUSTES MAIS PRECISOS */
.equipe-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background-color: var(--cinza-claro);
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.membro-equipe {
  background-color: white;
  padding: 6rem 2rem 3rem;
  border-radius: 20px;
  box-shadow: var(--sombra-md);
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.membro-equipe:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.2);
}

.membro-foto {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.membro-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.membro-equipe:hover .membro-foto {
  border-color: var(--azul-escuro);
}

.membro-equipe:hover .membro-foto img {
  transform: scale(1.05);
}

.membro-info {
  text-align: center;
  padding-top: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  margin-top: 0;
  width: 100%;
}

.membro-info h3 {
  color: var(--azul-escuro);
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.cargo {
  font-size: 0.9rem;
  color: var(--azul-claro);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Responsividade - Ajustes para mobile */
@media (max-width: 768px) {
  .membro-equipe {
    padding-top: 95px;
  }

  .membro-foto {
    width: 130px;
    height: 130px;
  }

  .membro-info h3 {
    margin-top: 0.8rem;
  }
}

@media (max-width: 576px) {
  .membro-equipe {
    padding: 3rem 1rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .membro-foto {
    width: 100px;
    height: 100px;
  }

  .membro-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
  }

  .membro-info h3 {
    font-size: 1rem;
    margin-top: 0.8rem;
  }

  .membro-info p {
    font-size: 0.9rem;
  }
}

/* Estilos para o controle de visibilidade da equipe completa */
.equipe-completa-wrapper {
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-out;
}

.equipe-completa-wrapper.active {
  display: grid;
  opacity: 1;
  max-height: 2000px;
  margin-top: 3rem;
}

#toggleEquipeButton {
  margin-top: 2rem;
}

/* Adicione estas regras para os contadores */
.counter-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 3rem;
  gap: 5px;
  margin-bottom: var(--espaco-xs);
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--azul-escuro);
  line-height: 1;
  transition: all 0.3s ease;
  color: #000000;
}

.counter-symbol {
  font-size: 1.8rem;
  color: var(--azul-claro);
  font-weight: 700;
  padding-bottom: 5px;
  color: #000000;
}

/* Seção de Serviços - Versão Melhorada */
.servicos-section {
  position: relative;
  padding: 5rem 0;
  background-color: var(--cinza-claro);
}

.servicos-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.servico-card {
  position: relative;
  background: var(--branco);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.servico-icon {
  font-size: 3rem;
  color: var(--azul-claro);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.servico-card:hover .servico-icon {
  transform: scale(1.1);
}

.servico-card h3 {
  margin-bottom: 1rem;
  color: var(--azul-escuro);
}

.servico-resumo {
  color: var(--cinza-escuro);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.btn-saiba-mais {
  align-self: center;
  margin-top: auto;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--azul-claro);
  background: transparent;
  color: var(--azul-claro);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-saiba-mais::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--azul-claro);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-saiba-mais:hover {
  color: var(--branco);
}

.btn-saiba-mais:hover::before {
  width: 100%;
}

/* Card Flutuante de Detalhes (Serviços) */
.servico-detalhes {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--branco);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 3rem;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
}

.servico-detalhes.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.servico-detalhes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.servico-detalhes h3 {
  color: var(--azul-escuro);
  font-size: 1.8rem;
  margin: 0;
}

.close-detalhes {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--azul-escuro);
  transition: transform 0.3s ease;
}

.close-detalhes:hover {
  transform: rotate(90deg);
}

.servico-detalhes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.servico-detalhes-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.servico-detalhes-img img {
  width: 100%;
  height: auto;
  display: block;
}

.servico-detalhes-text {
  color: var(--cinza-escuro);
  line-height: 1.7;
}

.servico-detalhes-beneficios {
  margin-top: 2rem;
}

.servico-detalhes-beneficios h4 {
  color: var(--azul-escuro);
  margin-bottom: 1rem;
}

.servico-detalhes-beneficios ul {
  list-style: none;
}

.servico-detalhes-beneficios li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.75rem;
}

.servico-detalhes-beneficios li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--azul-claro);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsividade de Detalhes de Serviço */
@media (max-width: 768px) {
  .servico-detalhes-content {
    grid-template-columns: 1fr;
  }

  .servico-detalhes {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .servico-detalhes {
    padding: 1.5rem;
  }

  .servico-detalhes-header h3 {
    font-size: 1.5rem;
  }
}

/* Seção Impacto - Estilo Refrescado com Onda Dinâmica USANDO A IMAGEM DO USUÁRIO */
.impacto-section.refreshed {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    background-color: #e0f7fa; /* Um azul bem claro */
    color: #333; /* Textos mais escuros para melhor leitura */
    overflow: hidden;
}

.impacto-section.refreshed h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a; /* Azul escuro como cor primária */
    margin-bottom: 2.5rem;
}

.impacto-section.refreshed .impacto-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.impacto-section.refreshed .impacto-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.impacto-section.refreshed .impacto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.impacto-section.refreshed .counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.impacto-section.refreshed .counter {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff; /* Azul mais vibrante para os números */
    margin-right: 5px;
}

.impacto-section.refreshed .counter-symbol {
    font-size: 1.5rem;
    color: #007bff;
}

.impacto-section.refreshed .impacto-texto {
    font-size: 1rem;
    color: #555;
}

.impacto-section.refreshed .impacto-texto.small {
    font-size: 0.9rem;
}

.impacto-section.refreshed .impacto-card h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* Estilos específicos para os cards de Presença e GPTW */
.impacto-section.refreshed .impacto-card.presence,
.impacto-section.refreshed .impacto-card.gptw {
    min-width: 280px;
}

/* Background de Onda Dinâmica com a imagem do usuário */
.impacto-section.refreshed .wave-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Faz a imagem cobrir toda a seção */
    background-image: url('img/ilustração\ ondas\ nas\ cores\ ACN.png'); /* Caminho para a sua imagem */
    background-size: cover; /* Ajusta o tamanho da imagem para cobrir o container */
    background-repeat: repeat-x; /* Repete a imagem horizontalmente para criar a ilusão de onda */
    background-position: center bottom; /* Posiciona a imagem na parte inferior central */
    opacity: 0.15; /* Ajuste a opacidade para um efeito sutil */
    animation: waveAnimation 30s linear infinite; /* Adiciona a animação */
}

@keyframes waveAnimation {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 100%; /* Move a imagem horizontalmente para a direita */
    }
}

/* Adaptações para telas menores */
@media (max-width: 768px) {
    .impacto-section.refreshed h2 {
        font-size: 2.5rem;
    }
    .impacto-section.refreshed .impacto-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .impacto-section.refreshed .impacto-card {
        min-width: 150px;
        padding: 1.5rem;
    }
    .impacto-section.refreshed .counter {
        font-size: 1.6rem;
    }
    .impacto-section.refreshed .counter-symbol {
        font-size: 1.2rem;
    }
    .impacto-section.refreshed .impacto-texto {
        font-size: 0.9rem;
    }
    .impacto-section.refreshed .impacto-card.presence,
    .impacto-section.refreshed .impacto-card.gptw {
        min-width: auto;
        width: 100%;
    }
    .impacto-section.refreshed .wave-background {
        bottom: 0;
        height: 100%;
        background-size: cover;
        animation: waveAnimationMobile 20s linear infinite;
    }
    @keyframes waveAnimationMobile {
        0% {
            background-position-x: 0;
        }
        100% {
            background-position-x: 500px; /* Ajuste a distância para a animação mobile */
        }
    }
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 0; /* Ajuste este valor para controlar a velocidade da animação */
    }
}

/* Adaptações para telas menores */
@media (max-width: 768px) {
    .impacto-section.refreshed h2 {
        font-size: 2.5rem;
    }
    .impacto-section.refreshed .impacto-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .impacto-section.refreshed .impacto-card {
        min-width: 150px;
        padding: 1.5rem;
    }
    .impacto-section.refreshed .counter {
        font-size: 1.6rem;
    }
    .impacto-section.refreshed .counter-symbol {
        font-size: 1.2rem;
    }
    .impacto-section.refreshed .impacto-texto {
        font-size: 0.9rem;
    }
    .impacto-section.refreshed .impacto-card.presence,
    .impacto-section.refreshed .impacto-card.gptw {
        min-width: auto;
        width: 100%;
    }
    .impacto-section.refreshed .wave-background {
        bottom: -20px;
        height: 100px;
    }
    @keyframes wave {
        100% {
            background-position: 500px 0;
        }
    }
}
/* Responsividade Impacto */
@media (max-width: 768px) {
  .impacto-card {
    min-height: 180px;
    padding: 1.5rem 1rem;
  }

  .counter {
    font-size: 2.2rem;
  }

  .counter-symbol {
    font-size: 1.3rem;
  }

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

@media (max-width: 576px) {
  .impacto-card {
    min-height: 160px;
    padding: 1.2rem 0.8rem;
  }

  .counter {
    font-size: 2rem;
  }
}

/* Estilos de Foco */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--azul-claro);
  outline-offset: 2px;
}

.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
footer {
  background-color: #003049;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-coluna {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-coluna h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-coluna p,
.footer-coluna a {
  font-size: 0.95rem;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-coluna a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .redes-sociais a {
  margin-right: 10px;
  color: #ffffff;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

footer .redes-sociais a:hover {
  background-color: var(--azul-claro);
  border-color: var(--azul-claro);
  transform: translateY(-3px);
}

/* Responsividade Footer */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-coluna {
    margin-bottom: 30px;
  }

  footer .redes-sociais {
    justify-content: center;
  }
}

/* Animações */
@keyframes pulseHero {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(110, 193, 228, 0.5);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(110, 193, 228, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(110, 193, 228, 0.5);
  }
}

.btn-primary.pulsando {
  animation: pulseHero 1.8s ease-in-out infinite;
}

@keyframes pulse {

  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(30, 58, 138, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(30, 58, 138, 0);
  }
}

.btn-pulse {
  animation: pulse 2s infinite;
}

/* Botão WhatsApp Flutuante */
.whatsapp-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.2rem;
  width: 60px;
  height: 60px;
  background-color: var(--verde-whatsapp);
  color: white;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: floatButton 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease-in-out;
}
.whatsapp-float:hover {
    /* Move o botão 8 pixels para cima quando o mouse passar por cima */
    transform: translateY(-8px);
}
@keyframes floatButton {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Tooltip do WhatsApp */
.whatsapp-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-btn:hover::after {
  opacity: 1;
}

/* AOS - Animate On Scroll */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Botão flutuante do Chatbot */
.__talkjs_launcher {
  display: block;
  position: fixed;
  bottom: 1.5rem;
  right: 6.0rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 1000;
  background-color: #0785f2;
  background-position: center 17px;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  box-shadow: 2px 2px 19px 1px rgb(0 0 0 / 10%);
  transition: all 0.3s ease;
}

.__talkjs_launcher:hover {
  transform: translateY(-5px) scale(1.05);
}

.__talkjs_launcher.open {
  background-size: 18px;
  background-position: center 21px;
}

/* Modificações para a seção de Valores com layout elíptico */
.valores-section {
  padding: 4rem 0;
  background-color: var(--cinza-claro);
  position: relative;
  overflow: hidden;
}

.valores-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 3rem;
}

.valor-circular {
  width: 280px;
  min-height: 250px;
  max-width: 300px;
  border-radius: 9999px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--branco);
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 2rem 1.5rem;
  position: relative;
}

.valor-circular:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Bordas e ícones coloridos para os valores */
.valor-circular.visao {
  border-color: #FE6371;
}

.valor-circular.visao .valor-icon-circular {
  color: #FE6371;
}

.valor-circular.missao {
  border-color: #20B2AA;
}

.valor-circular.missao .valor-icon-circular {
  color: #20B2AA;
}

.valor-circular.valores-final {
  border-color: #FFCC49;
}

.valor-circular.valores-final .valor-icon-circular {
  color: #FFCC49;
}

.valor-icon-circular {
  font-size: 4rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.valor-circular h3 {
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
  color: var(--azul-escuro);
}

.valor-circular p {
  font-size: 1rem;
  color: #333;
  line-height: 1.3;
  text-align: center;
  margin: 0;
  word-break: break-word;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Estilos específicos para a lista de valores (dentro do último círculo) */
.valor-circular .valores-lista-circular {
  list-style: none;
  padding: 0;
  margin-top: 0.8rem;
  text-align: left;
  width: 100%;
  max-width: 180px;
  box-sizing: border-box;
}

.valor-circular .valores-lista-circular li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #333;
}

.valor-circular .valores-lista-circular li i {
  margin-right: 0.6rem;
  color: #FFCC49;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Responsividade Valores */
@media (max-width: 768px) {
  .valor-circular {
    width: 250px;
    min-height: 220px;
    padding: 1.5rem 1rem;
  }

  .valor-icon-circular {
    font-size: 3.5rem;
  }

  .valor-circular h3 {
    font-size: 1.6rem;
  }

  .valor-circular p,
  .valor-circular ul {
    font-size: 0.9rem;
  }

  .valor-circular .valores-lista-circular {
    max-width: 160px;
  }

  .valor-circular .valores-lista-circular li {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .valores-grid {
    gap: 20px;
  }

  .valor-circular {
    width: 200px;
    min-height: 180px;
    padding: 1.2rem 0.8rem;
  }

  .valor-icon-circular {
    font-size: 3rem;
  }

  .valor-circular h3 {
    font-size: 1.4rem;
  }

  .valor-circular p,
  .valor-circular ul {
    font-size: 0.85rem;
  }

  .valor-circular .valores-lista-circular {
    max-width: 120px;
  }

  .valor-circular .valores-lista-circular li {
    font-size: 0.8rem;
  }
}

/* Quiz Section */
.section-title {
  font-size: 2rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.quiz-box {
  background: #ffffff;
  border: 2px solid #bbdefb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#quiz-question {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

#quiz-options button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  background-color: #e0f4ff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

#quiz-options button:hover {
  background-color: #bbdefb;
}

#quiz-feedback {
  margin-top: 1rem;
  font-weight: bold;
}

#quiz-feedback.correct {
  color: green;
}

#quiz-feedback.incorrect {
  color: red;
}

#next-btn {
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #2196f3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#next-btn:hover {
  background-color: #1976d2;
}

/* Outros estilos soltos */
.counter {
  display: inline-block;
  min-width: 60px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* Botões flutuantes (WhatsApp e Chatbot) */
.botao-flutuante-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 999;
}

.botao-flutuante-wrapper a,
.botao-flutuante-wrapper button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Botão de Ajuda Principal (se implementado) */
.botao-ajuda {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--azul-claro);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
  transition: all 0.3s ease;
}

.botao-ajuda i {
  font-size: 1.5rem;
}

.sub-botoes {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.botao-ajuda.ativo .sub-botoes {
  display: flex;
}

.sub-botao {
  background-color: white;
  color: var(--azul-escuro);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.sub-botao:hover {
  background-color: var(--azul-claro);
  color: white;
}

.sub-botao.whatsapp {
  color: var(--verde-whatsapp);
}

.sub-botao.chat {
  color: var(--azul-escuro);
}

.equipe-cta {
  text-align: center;
  margin-top: 2rem;
}

.equipe-cta p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.equipe-cta .btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  background: linear-gradient(to right, var(--azul-escuro), var(--azul-claro));
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* --- INÍCIO: CSS MELHORADO PARA SEÇÃO DE VÍDEOS --- */

/* --- CÓDIGO PARA A SEÇÃO DE VÍDEOS --- */

#videos .videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-top: 2rem;
}

#videos .video-item {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#videos .video-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-item.video-hidden {
  display: none; /* Esconde os vídeos extras por padrão */
}
@media (max-width: 480px) {
  #videos .container {
    padding: 0 10px; /* Padding ainda menor em telas muito pequenas */
  }
  
  .video-item {
    border-radius: 8px; /* Bordas menos arredondadas */
  }
}
/* --- FIM: CSS MELHORADO PARA SEÇÃO DE VÍDEOS --- */


/**
 * REGRAS ADICIONADAS PARA OTIMIZAR IMAGENS NO MOBILE
 * A regra a seguir garante que todas as imagens no contêiner se ajustem.
 * Se houver uma classe específica para a imagem, substitua "img" por ela.
 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Adicionando esta regra para garantir que a imagem não transborde */
.image-container-wrapper { /* Substitua por uma classe real do seu HTML se necessário */
  width: 100%;
  overflow: hidden;
}

/* ESTILOS PARA A NOVA SEÇÃO TRABALHE CONOSCO */
.trabalhe-conosco-section {
    background-color: var(--cinza-claro);
    padding: 4rem 0;
}

.form-card {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-md);
    max-width: 700px;
    margin: 2rem auto 0;
}

.trabalhe-conosco-section h2, .trabalhe-conosco-section .section-description {
    text-align: center;
}

#work-with-us-form .form-group {
    margin-bottom: 1.5rem;
}

#work-with-us-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--azul-escuro);
}

#work-with-us-form input[type="text"],
#work-with-us-form input[type="email"],
#work-with-us-form input[type="tel"],
#work-with-us-form input[type="file"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--cinza-medio);
    border-radius: var(--borda-radius);
    transition: var(--transicao-rapida);
}

#work-with-us-form input:focus {
    outline: none;
    border-color: var(--azul-claro);
    box-shadow: 0 0 0 2px rgba(110, 193, 228, 0.5);
}

#work-with-us-form input[type="file"] {
    padding: 0.5rem;
}

.form-notice {
    background-color: #eef7ff;
    border-left: 4px solid var(--azul-claro);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-notice p {
    margin: 0;
}
/* CÓDIGO ATUALIZADO E MAIS FORTE */
@media (max-width: 768px) {
  .hero-video { /* Vamos usar a classe para garantir */
    object-fit: contain !important; /* O !important força a prioridade */
    background-im: #009DE0  ;
  }

  /* E também vamos garantir pelo ID, só por segurança */
  #hero-video-element {
    object-fit: contain !important;
    background-color: #009DE0;
  }
}

/* --- INÍCIO: AJUSTES GERAIS PARA MOBILE --- */

@media (max-width: 768px) {
    /* Ajusta o tamanho dos títulos das seções */
    .section h2, .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* Ajusta o tamanho dos subtítulos e descrições */
    .section-description, .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Reduz o espaçamento vertical das seções */
    .section {
        padding: 3rem 0;
    }

    /* Melhora o espaçamento do formulário "Trabalhe Conosco" */
    .form-card {
        padding: 2rem;
    }

    /* Ajusta o padding do rodapé */
    footer {
        padding: 3rem 1rem;
    }

    /* Garante que os cards da seção "Nossa Essência" não fiquem muito grandes */
    .valor-circular {
        width: 100%;
        max-width: 280px;
        min-height: auto;
        padding: 2rem;
        border-radius: 20px; /* Borda menos elíptica, mais agradável */
    }
}

/* --- FIM: CORREÇÃO URGENTE PARA O CARROSSEL DE CLIENTES NO MOBILE --- */: AJUSTES GERAIS PARA MOBILE --- */