/* ======== ESTILO GERAL ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  max-width: 100%; /* Adicione isso */
}

body {
  background-color: #f9f9f9; /* branco gelo */
  color: #333; /* preto */
}
/* = Novo = tela "deslizando" suavemente - Serviços */
/* O segredo para não passar do ponto */
#mais-servicos {
    scroll-margin-top: 110px; /* Ajuste este valor se quiser que pare mais em cima ou mais embaixo */
}

/* Garante que a rolagem seja macia */
html {
    scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden; /* E isso para garantir que nada escape da largura da tela */
}

/* ======== CABEÇALHO ======== */
header {
  /* 2. Deixa o cabeçalho fixo no topo */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Garante que ele fique por cima de tudo */

  /* Estilo do Degradê */
  background: linear-gradient(90deg, #001f3f 0%, #0074D9 100%);
  color: white;
  
  /* Alinhamento dos itens */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2); /* Sombra para dar profundidade */
}

/* Cor branca para todos os links do menu */
/* Estilo para todos os links do menu que NÃO são o botão de contato */
.menu-principal li a:not(.btn-contato) {
    color: #ffffff !important; /* Força o branco */
    text-decoration: none;      /* Remove o sublinhado */
    font-size: 16px;            /* Tamanho padrão equilibrado */
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Efeito ao passar o mouse nos links normais */
.menu-principal li a:not(.btn-contato):hover {
    color: #cbdcf7; /* Um azul bem clarinho/gelo para dar feedback visual */
}

/* Garante que a lista do menu não tenha as "bolinhas" e fique alinhada */
.menu-principal {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px; /* Espaçamento entre os itens do menu */
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding-top: 80px; /* ajuste conforme a altura do header Novo era 120*/
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-container img {
  height: 70px; /* Um pouco menor para dar respiro */
  width: auto;
  background-color: white; /* Garante que o fundo seja branco sólido */
  border-radius: 50%; /* Faz o logo ficar redondo */
  padding: 8px; /* Dá um espaço entre o desenho e a borda da bola */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Dá profundidade */
  transition: transform 0.3s ease;
}

.logo-container img:hover {
  transform: scale(1.2); 
}

.logo-container h1 {
  font-size: 22px;
  font-weight: 600;
}

.logo-container p {
  font-size: 14px;
  color: #003366;
}
.logo-container h3, 
.logo-container p {
  color: white;
}

nav ul {
    display: flex;
    align-items: center; /* Garante que links e botão fiquem alinhados pelo centro */
    list-style: none;
    gap: 20px;
}

nav a {
  text-decoration: none;
  color: #003366;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #0066cc;
}

/* Botão "Fale Conosco" Versão Compacta */
nav a.btn-contato {
    background-color: #003366;
    color: #ffffff !important;
    padding: 6px 15px;         /* Diminuído: 6px altura, 15px largura */
    border-radius: 4px;        /* Bordas levemente arredondadas */
    font-size: 14px;           /* Fonte um pouco menor para equilíbrio */
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;      /* Ajuda no alinhamento interno */
    align-items: center;
    text-decoration: none;
}

/* Efeito Hover Sutil */
nav a.btn-contato:hover {
    background-color: #004a94;
    transform: scale(1.05);    /* Aumenta só um pouquinho ao passar o mouse */
    color: #ffffff;
}


/* ======== AJUSTE PARA O BOTÃO HAMBÚRGUER (FORA DO MEDIA QUERY) ======== */
/* Estilo do botão - invisível no computador */
	.menu-toggle {
		display: none; 
		color: #ffffff;
		font-size: 30px;
		cursor: pointer;
		z-index: 1100;
	}
	
/* ======== RESPONSIVIDADE COMPACTA (CELULAR) ======== */
@media screen and (max-width: 768px) {
    /* Se estiver usando o Font Awesome 6, force o ícone a aparecer */

	header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px !important; 
        flex-direction: row !important; /* Logo e Barrinhas lado a lado */
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 20px !important;
        z-index: 1000;
        background: linear-gradient(90deg, #001f3f 0%, #0074D9 100%); /* Mantém o azul */
    }

	/* FORÇA AS BARRINHAS A APARECEREM */
    .menu-toggle {
        display: block !important;
        color: white !important;
        font-size: 25px !important;
        z-index: 1100;
    }
	
    /* O MENU QUE DESLIZA - Ajustado para não encavalar */
    nav {
        display: none; 
        position: absolute;
        top: 70px; 
        left: 0;
        width: 100%;
        background: #001f3f; 
        padding: 10px 0 !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }

	/* Quando clicar no JS, essa classe vai mostrar o menu */
    nav.active {
        display: block !important;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #001f3f;
    }
	
    /* RESOLVE O ENCAVALAMENTO: Força os itens a serem blocos individuais */
    .menu-principal {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important; /* Remove o gap para usar padding nos links */
    }

    .menu-principal li {
        display: block !important; /* Cada item vira uma linha inteira */
        width: 100% !important;
        margin: 0 !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255,255,255,0.1); /* Divisória sutil */
    }

    .menu-principal li a {
        display: block !important;
        padding: 15px 0 !important; /* Dá espaço para o dedo tocar sem apertar outro link */
        width: 100% !important;
        color: white !important;
        font-size: 16px !important;
        border-bottom: none !important; /* Remove o sublinhado que estava encavalando */
    }

    /* Ajuste para o link ATIVO no celular (tira o sublinhado e usa cor) */
    .menu-principal li a.ativo {
        border-bottom: none !important;
        background-color: rgba(255, 255, 255, 0.1); /* Destaca o fundo da página atual */
        color: #0074D9 !important;
    }

    /* Botão Fale Conosco no Celular */
    nav a.btn-contato {
        display: inline-block !important;
        width: 90% !important;
        margin: 15px auto !important;
        padding: 12px !important;
    }

    /* Esconde o slogan e ajusta o logo */
    .logo-container img { height: 45px !important; }
    .logo-container p { display: none !important; }
    body { padding-top: 70px !important; }
}


/* ======== MENU DESTAQUE ======== */

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  display: inline-block; /* deixa o menu lado a lado, mas sem caixas */
  margin-right: 5px;
}

.menu li a {
  text-decoration: none;
  color: #000;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent; /* começa sem sublinhado */
  transition: 0.3s;
}

/* efeito de hover opcional */
.menu li a:hover {
  border-bottom: 2px solid #007bff;
}

/* página ativa */
.menu li a.ativo {
  border-bottom: 2px solid #007bff; /* sublinhado azul */
  font-weight: bold; /* opcional */
}


/* ======== SEÇÕES ======== */
section {
  padding: 60px 10%;
}

/* ======== SLIDER ======== */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px; /* Mantém a altura fixa do container */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
  height: 100%; /* Garante que os slides ocupem a altura do pai */
}

.slide {
  width: 100%;
  min-width: 100%;
  height: 100%; /* Força o slide a ter 400px */
  position: relative; 
  flex-shrink: 0;
  overflow: hidden; 
}

.slide img {
  width: 100%;
  height: 100%; /* Importante: força a imagem a preencher os 400px */
  object-fit: cover; /* Garante que a imagem não fique esticada */
  transition: transform 5s ease-in-out;
  transform: scale(1);
  display: block;
}

/* Quando o slide for o atual (via JS), ele ganha o zoom */
.slide.ativo img {
  transform: scale(1.15);
}

/* O texto do slide */
.slide-text {
  position: absolute;
  bottom: 40px;
  left: 60px;
  background-color: rgba(0,0,0,0.6); /* Um pouco mais escuro para ler melhor */
  color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 60%;
  z-index: 10; /* Valor alto para garantir que fique na frente da imagem */
  pointer-events: auto; /* Garante que o botão seja clicável */
}

.slide-text button {
  background-color: #ff5330; /* Vermelho conforme seu comentário */
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
}

.slide-text button:hover {
  background-color: #c75670;
}

@keyframes slide {
   /* Codigo antigo para 3 Slides	
   0% {transform: translateX(0);}
  33% {transform: translateX(0);}
  
  38% {transform: translateX(-100%);}
  66% {transform: translateX(-100%);}
  
  71% {transform: translateX(-200%);}
  100% {transform: translateX(-200%);} */

  0%   { transform: translateX(0); }
  20%  { transform: translateX(0); }

  25%  { transform: translateX(-100%); }
  45%  { transform: translateX(-100%); }

  50%  { transform: translateX(-200%); }
  70%  { transform: translateX(-200%); }

  75%  { transform: translateX(-300%); }
  100% { transform: translateX(-300%); }

}

/* ======== Novo Para Rolar o Slide para esquerda e direita ==== */

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 12px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
}

.nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.nav.prev {
  left: 15px;
}

.nav.next {
  right: 15px;
}
/* ======== Contador ======== */

.counter-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1000px; /* Reduzi um pouco a largura total */
    margin: -50px auto 20px; /* Sobreposição mais discreta */
    padding: 0 15px;
}

.counter-section {
    display: flex;
    justify-content: center; /* Itens mais próximos */
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 10px; /* Reduzi o padding interno drasticamente */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #0056b3;
}

.counter-item {
    flex: 1;
    min-width: 150px; /* Itens menores */
    margin: 5px;
    text-align: center;
    border-right: 1px solid #eee; /* Divisória sutil entre itens */
}

.counter-item:last-child {
    border-right: none;
}

.counter-number {
    font-size: 2rem; /* Tamanho menor para a faixa ficar fina */
    color: #0056b3;
    font-weight: 800;
    margin-bottom: 2px;
    display: block;
}

.counter-item p {
    font-size: 0.75rem; /* Texto mais compacto */
    color: #444;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 auto;
    max-width: 140px;
}

@media (max-width: 768px) {
    .counter-item { border-right: none; margin: 10px 0; }
    .counter-wrapper { margin: -30px auto 10px; }
}

/* ======== SEÇÃO DESTAQUE ======== */
.destaque {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.destaque img {
  width: 25%;  /* Tamanho da imagem em destaque era 25 */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.8s ease, box-shadow 0.8s ease, filter 0.8s ease; /* NOVO */
}
.destaque:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.6); /* brilho azul */
  filter: brightness(1.1);
}
.destaque .texto {
  flex: 1;
}
.destaque h2 {
  color: #003366;
  margin-bottom: 15px;
}
/* ======== EMPRESA ======== */
.empresa {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.empresa img {
  width: 25%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* ======== SERVIÇOS ======== */
.servicos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  background: #f7faff;
}
.titulo-pagina {
    text-align: center;
    font-size: 32px;
    color: #003d80;
    margin-bottom: 40px;
}

.servicos img {
  width: 45%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.servicos-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 90%;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap; /* permite quebrar no celular */
}

.servico-item {
    background: #fff;
    width: 23%; /* 4 por linha */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
	flex: 1 1 260px;  /* RESPONSIVO NOVO*/
}

.servico-item:hover {
    transform: translateY(-5px);
}

.servico-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.servico-item h3 {
    margin-top: 10px;
    color: #007bff;
    font-size: 20px;
}

/* ======== CONTATO ======== */
.contato-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px; /* Distancia do endereço */
}
form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px; /* Junta mais os inputs */
}
form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  background-color: #007bff;
  border: none;
  padding: 10px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
form button:hover {
  background-color: #0056b3;
}
.info {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.info i {
  color: #007bff;
  margin-right: 8px;
}
iframe {
  margin-top: 30px;
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

/* ======== RODAPÉ ======== */
.footer {
    /* Degradê igual ao Header */
    background: linear-gradient(90deg, #001f3f 0%, #0074D9 100%);
    padding: 60px 0 0 0; /* Aumentado o respiro superior */
    margin-top: 40px;
    border-top: none; /* Removida a borda sólida para um visual mais limpo */
    color: #ffffff;
    font-family: sans-serif;
}

.footer-container {
    width: 95%; 
    max-width: 1300px; 
    margin: 0 auto;
    display: grid;
    /* Coluna da empresa um pouco maior para acomodar o texto institucional */
    grid-template-columns: 1.5fr 1.2fr 1fr; 
    gap: 40px; /* Aumentado o espaço entre as colunas para melhor leitura */
    align-items: start;
}

.footer-col {
    width: 100%;
}

/* --- ALINHAMENTOS ESPECÍFICOS --- */

/* Coluna 1: Nossa Empresa */
.footer-col:nth-child(1) {
    text-align: left;
}

/* Coluna 2: Contato */
.footer-col:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.footer-col:nth-child(2) .contato-wrapper {
    text-align: left;
    display: inline-block;
}

/* Coluna 3: Mapa do Site */
.footer-col:nth-child(3) {
    text-align: right;
}

/* --- ESTILIZAÇÃO DOS ELEMENTOS --- */
.footer-col h3 {
    color: #ffffff; /* Títulos em branco */
    margin-bottom: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    display: inline-block;
}

.footer-col p, 
.footer-col ul li, 
.footer-col ul li a {
    color: #ffffff; /* Tudo em branco para o fundo azul */
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

/* Efeito hover nos links do mapa do site */
.footer-col ul li a:hover {
    color: #cbdcf7;
    text-decoration: underline;
}

/* Ajuste dos ícones (Localização, Telefone, etc) */
.footer-col i {
    margin-right: 10px;
    color: #ffffff; /* Ícones brancos */
    width: 20px;
    text-align: center;
    opacity: 0.9;
}

/* Força a cor branca no link de e-mail */
.footer-col a[href^="mailto:"] {
    color: #ffffff !important;
    text-decoration: none;
}

/* Força a cor branca no link do WhatsApp e outros links de contato */
.footer-col .contato-wrapper a {
    color: #ffffff !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Garante que ao passar o mouse eles ganhem o destaque azul clarinho */
.footer-col .contato-wrapper a:hover {
    color: #cbdcf7 !important;
    text-decoration: underline;
}

/* Remove a cor azul automática que o Safari/Chrome coloca em números de telefone */
.footer-col p {
    color: #ffffff !important;
}

/* Ícones das Redes Sociais */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-link {
    font-size: 22px;
    color: #ffffff !important;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px); /* Efeito de flutuar */
    color: #cbdcf7 !important;
}

/* Ajuste das Redes Sociais (2ª Coluna) */
.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    justify-content: flex-start; /* Alinha à esquerda */
}

/* --- EFEITO REDES SOCIAIS (ZOOM + TOOLTIP) --- */
.social-icon {
    position: relative;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    background: #0dd2e0; /* cor verde clarinha 00d1b2 passou para azul clarinho */
}

.social-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #0dd2e0;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.social-icon:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


/* Faixa Final de Direitos Autorais */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2); /* Fundo sutilmente mais escuro que o degradê */
    margin-top: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
}

/* Estilo padrão dos links do Mapa do Site */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #bbbbbb; /* Cor cinza para links não ativos */
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

/* O DESTAQUE: Quando a página for a atual */
.footer-col ul li a.ativo-footer {
    color: #ffffff; /* Cor azul igual ao seu degradê #0074D9 passou para branco */
    font-weight: bold;
    padding-left: 10px; /* Dá um leve recuo para a direita */
    border-left: 3px solid #0074D9; /* Adiciona uma barrinha vertical na esquerda */
}

/* Efeito ao passar o mouse nos outros links */
.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* --- RESPONSIVIDADE DO RODAPÉ (AJUSTADA) --- */

@media screen and (max-width: 768px) {
    .footer-container {
        display: flex !important;
        flex-direction: column !important; /* Empilha as colunas */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important; /* Garante que o padding não aumente a largura */
        gap: 30px !important;
    }

    .footer-col {
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
    }

    /* Remove o recuo exagerado que você pode ter nos links do mapa do site */
    .footer-col ul {
        padding: 0 !important;
        list-style: none !important;
    }
    
    /* Faz o botão do WhatsApp e ícones ficarem no centro */
    .contato-wrapper, .social-icons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .social-icons {
        flex-direction: row !important; /* Ícones sociais continuam lado a lado */
    }
}

/* ======== ICONE CONTATO ======== */

p i {
  margin-right: 8px;
  color: #007bff;  /* azul */
  font-size: 18px;
}


/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
  .destaque img, .servicos img {
    width: 100%;
  }
  .slide-text {
    max-width: 80%;
    left: 10%;
  }
  header {
    padding: 10px 20px;
  }
}

/* ======== SLIDER LOGOTIPO ======== */
.titulo-clientes {
    text-align: center;      /* Centraliza o texto */
    font-size: 1.6rem;       /* Tamanho médio */
    font-family: sans-serif; /* Altera a fonte se desejar */
    margin-bottom: 30px;     /* Espaço entre o título e os logos */
    color: #333;             /* Cor do texto #333 Cinza escuro */
}
 
.logo-slider {
	background: #f9f9f9;  /* Branco #fff cor claro forma de cinzento */
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
	width: max-content; /* 🔥 deixa crescer conforme os logos */
	animation: scroll 35s linear infinite;
}

.slidelogo {
    width: 180px; /* Ajuste se tiver logos grandes */
    display: flex;
    justify-content: center;
    align-items: center;
	flex-shrink: 0; /* 🔥 impede encolher */
}

.slidelogo img {
    width: 150px;
    height: auto;
    margin: 10px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: 0.3s;
}

.slidelogo img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Movimento contínuo */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ======== BOTÃO ======== */

.botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 26px;
    background: linear-gradient(135deg, #4db6ff, #7cc8ff);
    color: #fff;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;

    border-radius: 999px;
    border: none;

    box-shadow: 0 8px 18px rgba(77, 182, 255, 0.4);
    cursor: pointer;

    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.botao:hover {
    background: linear-gradient(135deg, #2f95e8, #5ab5ff); /* azul mais escuro */
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(47, 149, 232, 0.55);
}

.botao:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(47, 149, 232, 0.35);
}

/* Caixa de destaque do WhatsApp */
.caixa-whatsapp {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    margin: 20px 0;
    text-align: center; /* Centraliza o conteúdo dentro da caixa */
}

.caixa-whatsapp strong {
    display: block;
    font-size: 1.2em;
    color: #007bff;
    margin-bottom: 5px;
}

.caixa-whatsapp p {
    margin-bottom: 15px;
    font-size: 0.95em;
    color: #333;
}

/* O Botão propriamente dito */
.btn-whatsapp-box {
    background-color: #25d366;
    color: white !important; /* Garante que o texto seja branco */
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-whatsapp-box:hover {
    background-color: #128c7e;
}

/* ==========================================================================
   BOTÃo PERMANCENTE DO WhatsApp
   ========================================================================== */

/* Estilo do Botão Flutuante */
.whatsapp-fixo {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Garante que fique na frente de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
.whatsapp-fixo:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

/* Pequena animação de "pulso" para chamar atenção */
@keyframes pulsar {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-fixo {
    animation: pulsar 2s infinite;
}

/* Ajuste para telas pequenas (opcional) */
@media (max-width: 768px) {
    .whatsapp-fixo {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 15px;
        right: 15px;
    }
}