/* ======== ESTILIZAÇÕES GERAIS ======== */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.logo {
  height: 120px;
  max-width: 180px;
  object-fit: contain;
}

/* ======== LINHA LARANJA ======== */
.linha-laranja {
  width: 100%;
  height: 4px;
  background-color: #FFA500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ======== MENU - LINKS (Unificado e Corrigido) ======== */

/* 1. Estilo base do link: Garante a transição de fundo e arredondamento */
.menu-principal .nav-link {
  color: #666;
  font-weight: 600;
  padding: 12px 18px;
  /* CORREÇÃO: Transiciona todas as propriedades (incluindo background-color) */
  transition: all 0.3s; 
  /* Adiciona arredondamento para o efeito ativo/hover */
  border-radius: 8px;
}

/* 2. Estilo para o link normal ao passar o mouse */
.menu-principal .nav-link:hover {
  color: #FFA500;
  background-color: transparent; /* Garante que o hover não tenha fundo */
}

/* 3. Estilo para o link selecionado (ativo): Fundo Laranja e Texto Branco */
.menu-principal .nav-link.active {
  color: #FFFFFF; /* Cor do texto: Branco */
  background-color: #FFA500; /* Cor de fundo: Laranja */
  /* As outras propriedades (padding, border-radius) são herdadas da regra base acima */
}

/* ======== BANNER PRINCIPAL ======== */
.carousel-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 300px;
  }
}

/* Centralizar texto no meio do banner */
.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 20px;
  border-radius: 0;
}

.carousel-caption h3 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
  margin-bottom: 15px;
}

.btn-solucao {
  background-color: #FFA500;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
  text-transform: uppercase;
}

.btn-solucao:hover {
  background-color: #cc8400;
  color: #fff;
}

/* ======== CARROSSEL DA EQUIPE ======== */
#carrosselEquipe .carousel-inner {
  max-height: 400px;
  height: 100%;
  overflow: hidden;
}

#carrosselEquipe .carousel-item img {
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  #carrosselEquipe .carousel-inner,
  #carrosselEquipe .carousel-item img {
    height: 250px;
  }
}

/* ======== FUNDADOR - LAYOUT HORIZONTAL ======== */
#filiacao {
  font-family: 'Georgia', serif;
  color: #333;
  line-height: 1.6;
}

.fundador-layout {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.fundador-foto {
  flex: 0 0 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
}

.founder-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 4px solid #FFA500;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.fundador-foto h3 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 10px;
}

.fundador-conteudo {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fundador-intro {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  text-align: justify;
  color: #444;
}

.fundador-blocos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.founder-block {
  background-color: #fff8ed;
  padding: 15px 20px;
  border-left: 5px solid #FFA500;
  border-radius: 6px;
}

.founder-block h6 {
  color: #cc8400;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.founder-block p,
.founder-block ul {
  margin: 0;
  padding-left: 20px;
  color: #444;
}

.founder-block ul li {
  margin-bottom: 6px;
}

/* Centraliza o título da seção */
#filiacao h2 {
  text-align: center;
  color: #222;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Responsividade do fundador */
@media (max-width: 992px) {
  .fundador-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fundador-foto {
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
  }

  .fundador-conteudo {
    width: 100%;
    text-align: justify;
  }

  .fundador-blocos {
    grid-template-columns: 1fr;
  }
}

/* ======== LOGOS PARCEIROS ======== */
.logos-link {
  max-width: 140px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
  transition: filter 0.3s ease;
}

.logos-link:hover {
  filter: drop-shadow(0 4px 6px rgba(255, 165, 0, 0.7));
}

/* ======== RODAPÉ ======== */
footer {
  font-size: 0.9rem;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.linha-final {
  border-top: 1px solid #FFA500;
  margin-top: 20px;
  padding-top: 15px;
  font-weight: 600;
  color: #FFA500;
}

/* ======== Ícones nos cards ======== */
.icon {
  font-size: 3rem;
  color: #FFA500;
  margin-bottom: 15px;
}

/* ======== TOPO E BANDEIRAS ======== */
.topo-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-topo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 600;
  color: #333;
}

.linha-superior {
  display: flex;
  align-items: center;
  gap: 3px;
}

.circulo-bandeira {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  background-color: #fff;
}

.circulo-bandeira img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.texto-topo {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 700;
}

.subtexto-topo {
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: -5px;
}

.subtexto-topo.verde {
  color: #008000;
}

.subtexto-topo.vermelho {
  color: #cc0000;
}

/* Responsivo topo */
@media (max-width: 768px) {
  .topo-info {
    gap: 1.2rem !important;
  }

  .logo {
    height: 100px;
    max-width: 120px;
  }

  .circulo-bandeira {
    width: 24px;
    height: 24px;
  }

  .texto-topo {
    font-size: 0.8rem;
  }

  .subtexto-topo {
    font-size: 0.75rem;
    margin-top: -3px;
  }
}

/* ======== HEADER FIXO ======== */
:root {
  --header-height-desktop: 100px;
  --header-height-mobile: 100px;
  --linha-height: 4px;
  --menu-height: 56px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: #fff;
  height: var(--header-height-desktop);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Linha e menu fixos */
.linha-laranja {
  position: fixed;
  top: var(--header-height-desktop);
  left: 0;
  right: 0;
  z-index: 1030;
}

.menu-principal {
  position: fixed;
  top: calc(var(--header-height-desktop) + var(--linha-height));
  left: 0;
  right: 0;
  z-index: 1029;
  /* Adicionado para garantir o background do menu-principal */
  background-color: #f0f0f0; 
  border-bottom: 1px solid #ddd;
}

#carouselExample {
  padding-top: calc(var(--header-height-desktop) + var(--linha-height) + var(--menu-height));
}

@media (max-width: 768px) {
  header {
    height: var(--header-height-mobile);
  }

  .linha-laranja {
    top: var(--header-height-mobile);
  }

  .menu-principal {
    top: calc(var(--header-height-mobile) + var(--linha-height));
  }

  #carouselExample {
    padding-top: calc(var(--header-height-mobile) + var(--linha-height) + var(--menu-height));
  }
}

/* ======== ALINHAMENTO DO SCROLL ======== */
section[id],
footer[id],
#home {
  scroll-margin-top: calc(var(--header-height-desktop) + var(--linha-height) + var(--menu-height));
}

@media (max-width: 768px) {
  section[id],
  footer[id],
  #home {
    scroll-margin-top: calc(var(--header-height-mobile) + var(--linha-height) + var(--menu-height));
  }
}

/* ======== ANIMAÇÃO SUAVE ======== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ======== BANNER DO TÍTULO (CORRIGIDO) ======== */
.titulo-banner {
  position: relative;
  background: url('imagens/banner-estrada.jpg') center/cover no-repeat;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

/* ======== BANNER DA ÁGUA LIMPA ======== */
.agua-limpa-banner {
  background: url('imagens/banner-agua-limpa.jpg') center/cover no-repeat;
}

/* (mantém o mesmo estilo de .titulo-banner) */
.agua-limpa-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 50, 0.3); /* leve tom azulado de sobreposição */
  z-index: 1;
}

.agua-limpa-banner h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  margin: 0;
}

/* ======== CARDS DE ÁGUA LIMPA ======== */
.card-agua {
  border: none;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.card-agua:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Ícones */
.icon-agua {
  font-size: 2.5rem;
  color: #0099cc;
  margin-bottom: 15px;
}

/* Título do card */
.card-agua h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #005577;
  margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .icon-agua {
    font-size: 2rem;
  }
  .card-agua h5 {
    font-size: 0.95rem;
  }
}

/* Layout da seção embaixador */
.embaixador-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap; /* permite empilhar no mobile */
}

/* Imagem à esquerda */
.embaixador-foto {
  flex: 0 0 280px;
}

.embaixador-foto img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Texto à direita */
.embaixador-texto {
  flex: 1;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: justify;
}

/* Responsivo: imagem acima do texto no celular */
@media (max-width: 992px) {
  .embaixador-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .embaixador-texto {
    text-align: justify;
    margin-top: 1rem;
  }

  .embaixador-foto {
    max-width: 300px;
  }
}
/* Seção vídeos lado a lado */
#videos-agua-limpa .video-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#videos-agua-limpa video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Responsivo: empilha no celular */
@media (max-width: 768px) {
  #videos-agua-limpa .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Logo da seção Planet Clean Water */
.planet-clean-logo {
  max-width: 200px;
}

/* Layout da seção Planet Clean Water */
.planet-clean-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.planet-clean-foto {
  flex: 0 0 350px;
}

.planet-clean-foto img {
  width: 100%;
  height: auto;
  border-radius: 12px;

  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.planet-clean-conteudo {
  flex: 1;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Responsivo: empilha no celular */
@media (max-width: 992px) {
  .planet-clean-layout {
    flex-direction: column;
    text-align: center;
  }

  .planet-clean-foto {
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .planet-clean-conteudo {
    text-align: justify;
  }
}

/* Card Grande - Nossa Missão */
.missao-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 120px 30px;
  color: #101011;
  max-width: 900px;
  margin: 40px auto;
  background-color: rgba(0,0,0,0.25); /* leve escurecimento do fundo */
  box-shadow: 0 15px 30px rgba(0,0,0,0.3); /* sombra externa do card */
  animation: balanco 10s ease-in-out infinite alternate;
}

/* Imagem de fundo com transparência */
.missao-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('imagens/missao-banner.jpg'); /* substitua pelo caminho da imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3; /* transparência da imagem */
  z-index: 1;
}

/* Texto acima da imagem */
.missao-card .missao-texto {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.missao-card .missao-texto h3 {
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 3px 3px 15px rgba(0,0,0,0.9); /* sombra mais forte */
  margin-bottom: 15px;
}

.missao-card .missao-texto p {
  font-size: 1.15rem;
  line-height: 1.6;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.8); /* sombra mais forte */
  margin-bottom: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
  .missao-card {
    padding: 80px 20px;
  }

  .missao-card .missao-texto h3 {
    font-size: 1.8rem;
  }

  .missao-card .missao-texto p {
    font-size: 1rem;
  }
}

/* Animação de balanço suave */
@keyframes balanco {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Cards de Tecnologias Planet Clean Water - Azul */
.tec-card {
  background-color: #e6f0ff; /* azul claro */
  border-left: 5px solid #007bff; /* azul principal */
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.tec-card h5 {
  color: #007bff; /* azul principal */
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.tec-card p {
  color: #555;
  font-weight: 600;
  margin: 0;
}

/* Hover moderno */
.tec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  background-color: #cce0ff; /* azul mais claro no hover */
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .tec-card {
    padding: 12px 15px;
  }

  .tec-card h5 {
    font-size: 1rem;
  }

  .tec-card p {
    font-size: 0.9rem;
  }
}

/* Seção Texto + Vídeo */
.texto-video {
  background-color: #e6f0ff; /* azul claro */
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.texto-video h3 {
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

.texto-video p {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

/* Vídeo */
.video-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.video-planeta {
  width: 100%;
  height: auto;
  display: block;
}

/* Hover no vídeo (leve zoom) */
.video-container:hover video {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .texto-video {
    text-align: center;
    margin-bottom: 20px;
  }
}

/* Texto da seção de dispositivos */
.texto-dispositivos p {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
}

/* Imagem da seção */
.imagem-dispositivo img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.imagem-dispositivo img:hover {
  transform: scale(1.03);
}

/* Cards de serviços */
.card-servico {
  background-color: #e8f0fe; /* Azul claro */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-servico h5 {
  color: #1a73e8; /* Azul escuro */
  font-weight: 700;
  margin-bottom: 8px;
}

.card-servico p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Imagem responsiva */
#servicos img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.card-servico {
  background-color: #e8f0fe; /* Azul claro */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15); /* sombra mais forte */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-servico p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Hover elegante */
.card-servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* Imagem responsiva */
#compromisso-ambiental img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
#geradores-agua img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#geradores-agua img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.banner-produto {
  background-image: url('imagens/tinta-lumino.jpg'); /* caminho da sua imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px; /* altura do banner */
  text-align: center;
  position: relative;
  color: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.banner-titulo-produto h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
  margin-bottom: 15px;
}

.banner-titulo-produto p {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.6);
  margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .banner-produto {
    padding: 80px 15px;
  }

  .banner-titulo-produto h3 {
    font-size: 1.8rem;
  }

  .banner-titulo-produto p {
    font-size: 1rem;
  }
}




.titulo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.titulo-banner h3 {
  position: relative;
  z-index: 2;
  color: #f5f3fa;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .titulo-banner {
    height: 130px;
  }

  .titulo-banner h3 {
    font-size: 1.4rem;
  }
}

/* ======== CONTATO ======== */
#contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #222;
  border-radius: 12px;
}

#contato h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

#contato p {
  font-size: 1.5rem;
  line-height: 1.8;
  max-width: 700px;
}

.btn-contato {
  display: inline-block;
  padding: 15px 40px;
  background-color: #ff9900;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-contato:hover {
  background-color: #cc7a00;
  transform: scale(1.05);
}
/* style.css - Adicionar ou garantir que este bloco esteja fora de media queries restritivas */
.circulo-bandeira {
  width: 30px; /* Ajuste o tamanho conforme o desejado */
  height: 30px; /* Deve ser igual ao width para formar um círculo */
  overflow: hidden; /* Garante que a imagem dentro seja cortada */
  border-radius: 50%; /* Faz o elemento ser um círculo */
  border: 3px solid #fffdfd; /* Opcional: para destacar o círculo */
  display: flex;
  align-items: center;
  justify-content: center;
}

.circulo-bandeira img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a imagem preencha o círculo */
}
/* REMOVIDO: O colchete `}` extra que estava causando o erro de sintaxe */
/* ========================
   BANNER DA SEÇÃO HISTÓRIA
   ======================== */

#banner-historia {
  /* IMPORTANTE: Substitua 'imagens/sua-imagem.jpg' 
    pelo caminho da imagem que você quer usar de fundo.
  */
  background-image: url('imagens/paissuica.jpg');
  
  /* Você pode ajustar a altura se precisar */
  height: 200px; 
}

/* =============================================== */
/* CARD TINTA LUMINO – EFEITO NEON (COR #8EC597)   */
/* =============================================== */

.card-lumino {
  background: #000;
  border: 2px solid #8ec597;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(142, 197, 151, 0.6),
              inset 0 0 15px rgba(142, 197, 151, 0.3);
  animation: neonPulse 2.8s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
}

.texto-lumino {
  color: #8ec597;
}

/* 🔥 Animação pulsante */
@keyframes neonPulse {
  0% {
    box-shadow: 0 0 12px rgba(142, 197, 151, 0.3),
                inset 0 0 8px rgba(142, 197, 151, 0.2);
    border-color: #8ec597;
  }
  100% {
    box-shadow: 0 0 25px rgba(142, 197, 151, 0.9),
                inset 0 0 18px rgba(142, 197, 151, 0.5);
    border-color: #b3e6c3;
  }
}

/* Borda neon */
.card-lumino::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 15px;
  pointer-events: none;
  border: 2px solid #8ec597;
  box-shadow: 0 0 25px #8ec597;
  opacity: 0.3;
  animation: neonBorder 3s linear infinite;
}

@keyframes neonBorder {
  0% { opacity: 0.2; box-shadow: 0 0 20px #8ec597; }
  50% { opacity: 1;   box-shadow: 0 0 35px #8ec597; }
  100% { opacity: 0.2; box-shadow: 0 0 20px #8ec597; }
}

/* =============================================== */
/* CARDS VANTAGENS – COR #8EC597                   */
/* =============================================== */

.vant-card {
  background: #000;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  position: relative;
  border: 2px solid #8ec597;
  color: #8ec597;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.vant-card h4 {
  text-shadow: 0 0 10px #8ec597;
}

.vant-card p {
  color: #dff5e7;
}

/* número dos cards */
.vant-num {
  background: #8ec597;
  box-shadow: 0 0 12px #8ec597;
  color: #000;
}

/* neon dos cards */
.neon-card {
  box-shadow: 0 0 15px rgba(142,197,151,0.3);
  animation: neonGlow 3s infinite alternate ease-in-out;
}

@keyframes neonGlow {
  0% {
    box-shadow: 0 0 12px rgba(142,197,151,0.2),
                inset 0 0 8px rgba(142,197,151,0.2);
  }
  100% {
    box-shadow: 0 0 25px rgba(142,197,151,0.8),
                inset 0 0 15px rgba(142,197,151,0.5);
  }
}

.vant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px #8ec597;
}
.vant-num {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #52b788;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3), 
              inset 0 -4px 0 rgba(255,255,255,0.3);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Efeito hover mais chamativo */
.vant-card:hover .vant-num {
  transform: scale(1.3);
  box-shadow: 0 6px 10px rgba(0,0,0,0.4),
              0 0 15px #52b788,
              inset 0 -4px 0 rgba(255,255,255,0.3);
}

/* Glow pulsante */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 6px 10px rgba(0,0,0,0.4), 0 0 15px #52b788, inset 0 -4px 0 rgba(255,255,255,0.3);
  }
  50% {
    box-shadow: 0 8px 12px rgba(0,0,0,0.5), 0 0 25px #8ec597, inset 0 -4px 0 rgba(255,255,255,0.4);
  }
}

.vant-num {
  animation: glow 2s infinite alternate;
}
/* ======================================================= */
/* CARD SOBREPOSTO: LUMINO PAINT */
/* ======================================================= */
#lumino-paint {
  position: relative;
}

.card-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(40, 167, 69, 0.85); /* Verde semitransparente */
  border-radius: 15px;
  padding: 30px 20px;
  max-width: 90%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.card-overlay h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  margin: 0;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .card-overlay h3 {
    font-size: 1.3rem;
  }
}
/* ======================================================= */
/* CARD SOBREPOSTO NEON 3D: LUMINO PAINT */
/* ======================================================= */
#lumino-paint {
  position: relative;
}

.card-overlay-neon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, #2a7f64, #52b788);
  border-radius: 20px;
  padding: 35px 25px;
  max-width: 90%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5), 
              0 0 20px #52b788, 
              inset 0 -4px 0 rgba(255,255,255,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Efeito hover */
.card-overlay-neon:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6),
              0 0 35px #8ec597,
              inset 0 -4px 0 rgba(255,255,255,0.4);
}

/* Texto do card */
.card-overlay-neon h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7),
               0 0 8px #52b788;
  margin: 0;
}

/* Glow pulsante no card */
@keyframes neonGlow {
  0%, 100% {
    box-shadow: 0 8px 20px rgba(0,0,0,0.5),
                0 0 20px #52b788,
                inset 0 -4px 0 rgba(255,255,255,0.3);
  }
  50% {
    box-shadow: 0 10px 25px rgba(0,0,0,0.6),
                0 0 35px #8ec597,
                inset 0 -4px 0 rgba(255,255,255,0.4);
  }
}

.card-overlay-neon {
  animation: neonGlow 2s infinite alternate;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .card-overlay-neon h3 {
    font-size: 1.3rem;
  }
}
/* ======================================================= */
/* SEÇÃO LUMINO INFO - IMAGEM À ESQUERDA */
/* ======================================================= */
#lumino-info img {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

#lumino-info img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

#lumino-info p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  #lumino-info .row {
    flex-direction: column;
  }

  #lumino-info img {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* ======================================================= */
/* COMPARAÇÃO VERTICAL DIA X NOITE - IMAGENS MESMO TAMANHO */
/* ======================================================= */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 300px; /* altura fixa para todas as imagens */
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* garante que a imagem preencha o card sem distorcer */
  display: block;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.photo-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.photo-label {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(40, 167, 69, 0.85);
  color: #fff;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  .col-md-6 {
    margin-bottom: 20px;
  }
  .photo-label {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  .photo-card {
    height: 250px; /* ajusta altura para mobile */
  }
}

/* ======================================================= */
/* CENTRALIZAÇÃO FINAL DAS SETAS COM AJUSTE VISUAL (Alinhamento com o Texto)
/* ======================================================= */

#carouselExample .carousel-control-prev,
#carouselExample .carousel-control-next {
  /* Mantemos o código que centraliza o elemento na altura da imagem */
  top: 50% !important;
  transform: translateY(-50%) !important;
  
  bottom: auto !important;
  height: auto !important;

  /* NOVO AJUSTE: Deslocamento para baixo. */
  /* Este valor (10px) empurra o botão ligeiramente para baixo 
     para alinhar visualmente com o texto do seu banner. */
  /* Se ainda estiver muito alto, aumente o valor (ex: 20px, 30px). */
  margin-top: 70px !important; 
}

/* Opcional: Garante que o carrossel tenha uma altura mínima */
/* Caso sua imagem seja muito pequena, isso pode ajudar a estabilizar o alinhamento. */
#carouselExample {
  min-height: 400px; 
}

/* ======================================================= */
/* CENTRALIZAÇÃO SEÇÃO FUNDADOR (APENAS MOBILE)            */
/* Os seletores .fundador-foto e .fundador-conteudo são 
   agora alvos diretos para máxima especificidade.          */
/* ======================================================= */

@media (max-width: 992px) {
  
  /* 1. Centraliza a foto e todo o texto dentro do bloco lateral (aside) */
  .fundador-foto {
    text-align: center !important; 
    /* Garante que o bloco .fundador-foto ocupe 100% da largura em telas pequenas */
    width: 100% !important; 
  }
  
  /* 2. Centraliza o conteúdo principal (article) */
  .fundador-conteudo {
    text-align: center !important; 
    /* Garante que o bloco .fundador-conteudo ocupe 100% da largura em telas pequenas */
    width: 100% !important;
  }
  
  /* 3. Garante a centralização de blocos (como o <article> ou <aside> se estiverem em colunas) */
  /* Esta regra pode ser necessária se os elementos estiverem em colunas que usam flexbox */
  .fundador-foto, 
  .fundador-conteudo {
    /* Se a seção Matriz estiver usando um .row como pai, esta regra ajuda */
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ======================================================= */
/* ESTILIZAÇÃO DO TÍTULO DA SEÇÃO MATRIZ */
/* ======================================================= */

.matriz-title {
  /* Tamanho e Cor */
  font-size: 2.3rem; /* Tamanho do título aumentado */
  font-weight: 700;  /* Deixa o texto bem negrito */
  color: #333;       /* Cor de texto mais escura para contraste */
  
  /* Espaçamento e Posicionamento */
  margin-bottom: 30px; /* Aumenta o espaço abaixo do título */
  padding-bottom: 10px; /* Adiciona espaço para o sublinhado */
  position: relative; /* Necessário para posicionar o sublinhado */
}

/* Cria o sublinhado decorativo (elemento ::after) */
.matriz-title::after {
  content: '';
  display: block;
  width: 80px; /* Define uma largura curta e elegante para o sublinhado */
  height: 4px;

  
  /* Centraliza a linha horizontalmente */
  margin: 10px auto 0 auto; 
  border-radius: 2px;
}

/* Estilo para telas menores (para o título não ficar muito grande no celular) */
@media (max-width: 576px) {
  .matriz-title {
    font-size: 1.8rem;
  }
}

/* ======================================================= */
/* EFEITO HOVER NO LOGO DA MATRIZ (INDICANDO QUE É LINK) */
/* ======================================================= */

.matriz-logo {
  /* Garante que a transição seja suave e lenta */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; 
  /* Sombra inicial para dar profundidade */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 
  /* Necessário para o efeito de sombra e escala */
  position: relative; 
}

.matriz-logo:hover {
  /* Aumenta o tamanho em 2% (efeito de "salto") */
  transform: scale(1.02); 
  
  /* Aumenta a intensidade da sombra para indicar interação */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  
  /* Adiciona um leve brilho para chamar atenção (opcional) */
  filter: brightness(1.05); 
}

/* ======================================================= */
/* ESTILIZAÇÃO DOS CARDS DA SEÇÃO MATRIZ */
/* ======================================================= */

.matriz-card {
  border: none;
  border-radius: 12px;
  background-color: #fff5e6; /* Cor de fundo creme/laranja claro */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
  transition: transform 0.3s, box-shadow 0.3s;
}

.matriz-card:hover {
  transform: translateY(-5px); /* Efeito sutil de "elevação" no hover */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Sombra mais intensa no hover */
}

.matriz-titulo-card {
  font-weight: 700;
  border-bottom: 2px solid #ffcc80; /* Linha de destaque sob o título */
  padding-bottom: 8px;
  margin-bottom: 15px;
}

/* Garante que o texto dentro do card tenha uma cor legível */
.matriz-card .card-text {
  color: #444;
}

/* ======================================================= */
/* ESTILIZAÇÃO DO TÍTULO DA SEÇÃO DE PARCEIROS/SERVIÇOS */
/* ======================================================= */

.parceiros-titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #333; /* Cor escura principal */
  margin-bottom: 5px;
}

.parceiros-subtitulo {
  font-size: 1.15rem;
  color: #666; /* Cor cinza suave */
  /* Adiciona uma linha de separação sutil abaixo do subtítulo */
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.matriz-title {
  font-size: 2.3rem; 
  font-weight: 700;
  color: #333;       
  margin-bottom: 30px; 
  padding-bottom: 10px; 
  position: relative; 
}

.matriz-title::after {
  content: '';
  display: block;
  width: 80px; 
  height: 4px;
    margin: 10px auto 0 auto; 
  border-radius: 2px;
}

/* ======================================================= */
/* EFEITO DE BANNER EM FUNDO DE TÍTULO NA SEÇÃO 'SOBRE' */
/* ======================================================= */

#sobre-header-overlay {
  /* 1. Define o contexto de posicionamento para os elementos filhos */
  position: relative; 
  /* 2. Define a altura do banner. Ajuste este valor se sua imagem for mais alta/baixa. */
  height: 300px; 
  overflow: hidden;
  border-radius: 8px; /* Arredonda as bordas do bloco */
}

/* 3. Estiliza a Imagem para ser o Fundo */
#sobre-header-overlay .sobre-banner-img {
  position: absolute; /* Posição absoluta em relação ao #sobre-header-overlay */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
  z-index: 1; /* Coloca a imagem ABAIXO do texto (que terá z-index maior) */
}

/* 4. Estiliza e Posiciona o Título sobre a Imagem */
#sobre-header-overlay .sobre-title-text-overlay {
  position: absolute;
  top: 50%; /* Alinha o topo do título ao centro vertical */
  left: 0;
  right: 0;
  transform: translateY(-50%); /* Puxa o título para cima pela metade de sua altura (centralização vertical perfeita) */
  width: 100%;
  
  z-index: 10; /* Garante que o texto fique ACIMA da imagem */
  
  /* Estilização para Legibilidade */
  color: #FFFFFF !important; /* Texto branco para contraste */
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8); /* Sombra escura para destacar o texto sobre a imagem */
  font-size: 3rem;
  font-weight: 900;
}

/* 5. Remove a linha de destaque da classe .matriz-title, pois ela não combina com o banner */
#sobre-header-overlay .matriz-title::after {
  content: none;
}

/* ======================================================= */
/* ANIMAÇÃO HOVER NO CARD INSTITUCIONAL 'QUEM SOMOS' */
/* ======================================================= */

.card.shadow-sm.border-0.h-100 {
  /* Garante uma transição suave para todos os efeitos */
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  /* Define uma sombra inicial sutil */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
  /* Adiciona uma borda leve para separar do fundo */
  border: 1px solid #eee !important;
}

.card.shadow-sm.border-0.h-100:hover {
  /* Efeito de "elevação": move o card 5px para cima */
  transform: translateY(-5px);
  /* Sombra mais pronunciada para indicar interatividade */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Estilização para o título do card */
.card-body .card-title {
  font-weight: 700;
  /* Linha sutil de destaque sob o título */
  border-bottom: 2px solid #ffcc80; 
  padding-bottom: 8px;
  margin-bottom: 20px !important;
}

/* Ajuste de alinhamento do texto para telas maiores */
@media (min-width: 992px) {
  .card-body .card-text {
    /* Força o justificado, mas evita problemas de quebra de linha excessiva */
    text-align: justify;
    text-justify: inter-word;
  }
}

.fundador-foto-fixa {
  width: 180px;
  height: 180px;
  object-fit: cover; /* Preenche o quadro sem deformar */
  border-radius: 50%; /* Mantém o formato redondo */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.card-img-top-servico {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* Cartões da galeria */
.card-galeria {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Imagens da galeria */
.card-galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Animação ao passar o mouse */
.card-galeria:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.card-galeria:hover img {
  transform: scale(1.08);
}

/* Efeito sutil de fade ao carregar */
.card-galeria {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

/* Delay progressivo para cada card (efeito cascata) */
#galeria-equipe .col:nth-child(1) .card-galeria { animation-delay: 0.1s; }
#galeria-equipe .col:nth-child(2) .card-galeria { animation-delay: 0.2s; }
#galeria-equipe .col:nth-child(3) .card-galeria { animation-delay: 0.3s; }
#galeria-equipe .col:nth-child(4) .card-galeria { animation-delay: 0.4s; }
#galeria-equipe .col:nth-child(5) .card-galeria { animation-delay: 0.5s; }
#galeria-equipe .col:nth-child(6) .card-galeria { animation-delay: 0.6s; }

/* Keyframe do fade + slide */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ====== ESTILO PREMIUM DOS CARDS DE ATIVOS ====== */

#ativos .reveal-card {
  background: linear-gradient(145deg, #2b2b2b, #3a3a3a) !important;
  border-radius: 15px;
  border: 1px solid rgba(255, 153, 0, 0.25);
  padding: 25px 15px;
  text-align: center;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.4),
    inset 0 0 12px rgba(255,153,0,0.05);
  
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Glow suave nas bordas */
#ativos .reveal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 22px rgba(255,153,0,0.4);
  transition: 0.4s ease;
}

/* Texto */
#ativos .reveal-card p {
  color: #ffad33 !important;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover: brilho + zoom + subida */
#ativos .reveal-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 10px 25px rgba(0,0,0,0.5),
    inset 0 0 18px rgba(255,153,0,0.15);
}

#ativos .reveal-card:hover::before {
  opacity: 1;
}

/* Animação de entrada */
#ativos .reveal-card {
  opacity: 0;
  transform: translateY(20px);
  animation: ativosFadeUp 0.8s ease forwards;
}

@keyframes ativosFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay progressivo para efeito cascata */
#ativos .col:nth-child(1) .reveal-card { animation-delay: 0.1s; }
#ativos .col:nth-child(2) .reveal-card { animation-delay: 0.2s; }
#ativos .col:nth-child(3) .reveal-card { animation-delay: 0.3s; }
#ativos .col:nth-child(4) .reveal-card { animation-delay: 0.4s; }
#ativos .col:nth-child(5) .reveal-card { animation-delay: 0.5s; }
#ativos .col:nth-child(6) .reveal-card { animation-delay: 0.6s; }
#ativos .col:nth-child(7) .reveal-card { animation-delay: 0.7s; }

/* =============================
   Estilo do bloco de números
============================= */

#numeros-bloco {
  padding: 2rem 0;
}

#numeros-bloco .row {
  text-align: center; /* centraliza o texto em todas as telas */
  justify-content: center; /* garante centralização horizontal */
  gap: 1rem; /* espaço entre as colunas */
}

#numeros-bloco .col-md-3 {
  margin-bottom: 2rem; /* espaço inferior entre colunas no desktop */
}

#numeros-bloco h2 {
  color: #cc8400;
  font-weight: 700;
}

#numeros-bloco p.fw-semibold {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

#numeros-bloco p.text-muted {
  font-size: 0.9rem;
  line-height: 1.3;
  color: #6c757d;
}


#ativos .card {
  border-radius: 12px;
  background-color: #333333;
  color: #ff9900;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  width: 100%;
}

#numeros-bloco {
  padding: 40px 0;
}

.destaque {
  color: #cc8400;
}

.descricao {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Centralização extra para dispositivos pequenos */
@media (max-width: 768px) {
  #numeros-bloco .col-10 {
    margin-left: auto;
    margin-right: auto;
  }
}


#ativos .card {
  background-color: #f8f9fa;
  border-radius: 10px;
  font-weight: 500;
  color: #333;
}

#ativos .card {
  background-color: #f8f9fa;
  border-radius: 10px;
  font-weight: 500;
  color: #333;
}

.ativo-card {
  background-color: #fff;
  border-radius: 12px;
  font-weight: 500;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ativo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.icon-ativo {
  font-size: 2rem;
  color: #cc8400;
  margin-bottom: 10px;
}

/* Em celulares: 2 cards por linha, centralizados */
@media (max-width: 576px) {
  #ativos .col-6 {
    display: flex;
    justify-content: center;
  }
}
#ativos .card {
  background-color: #fff;
  border: 2px solid #cc8400; /* borda laranja */
  border-radius: 12px;
  font-weight: 500;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ativos .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-color: #ff9900; /* borda mais clara ao passar o mouse */
}

.icon-ativo {
  font-size: 2rem;
  color: #cc8400;
  margin-bottom: 10px;
}
#ativos .card {
  background-color: #fff;
  border: 2px solid #cc8400; /* borda laranja */
  border-radius: 12px;
  font-weight: 500;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ativos .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-color: #ff9900;
}

.icon-ativo {
  font-size: 2rem;
  color: #cc8400;
  margin-bottom: 10px;
}


.embaixador-layout {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Centraliza imagem e texto em telas pequenas */
@media (max-width: 768px) {
  .embaixador-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .embaixador-foto img {
    max-width: 250px;
  }

  .embaixador-texto {
    max-width: 600px;
  }
}
/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366; /* verde oficial do WhatsApp */
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 3px 3px 12px rgba(0,0,0,0.4);
  color: #fff;
}
