  @import url(/nossos-servicos.css);
  @import url(/fale-conosco.css);
  @import url(/produtos.css);
  @import url(/autenticacao.css);
/* Configurações Básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F8FAFC; /* Um tom de cinza azulado claríssimo */
  font-family: 'Inter', sans-serif;
}

/*.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
}*/

.header {
  background-color: #fff;
  /* Sombra azul suave: deslocamento 0 2px, expansão 15px e cor azul translúcida */
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15); 
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 123, 255, 0.1); /* Um detalhe extra para reforçar a cor */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.logo img{
  max-width: 140px;
}

.logo span {
  color: #007bff; /* Cor de destaque da marca */
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #007bff;
}

/* Efeito da linha apenas nos links que NÃO são botões */
.nav-links li a:not(.btn-destaque) {
  position: relative;
  padding-bottom: 5px;
}

.nav-links li a:not(.btn-destaque)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transition: width 0.3s ease;
}

.nav-links li a:not(.btn-destaque):hover::after {
  width: 100%;
}

/* Efeito diferenciado para o botão de Afiliado */
.btn-destaque {
  background-color: #007bff;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease; /* Transição suave para todas as propriedades */
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.btn-destaque:hover {
  background-color: #0056b3 !important;
  transform: translateY(-3px); /* Ele "pula" levemente para cima */
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4); /* A sombra aumenta no hover */
}

/* Remove a linha do ::after especificamente para o botão caso ela tenha sido herdada */
.btn-destaque::after {
  display: none !important;
}

/* Destaque: Área do Afiliado */
.btn-destaque {
  background-color: #007bff;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  transition: transform 0.2s, background 0.3s;
}

.btn-destaque:hover {
  background-color: #0056b3 !important;
  transform: translateY(-2px);
}

/* Responsividade (Mobile) */
#menu-check { display: none; }

@media (max-width: 992px) {
  .menu-botao {
    display: block;
    cursor: pointer;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding-top: 50px;
    transition: 0.5s;
  }

  #menu-check:checked ~ .nav-links {
    left: 0;
  }

  /* Ícone Hambúrguer Simples */
  .menu-botao span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    position: relative;
  }
  .menu-botao span::before, .menu-botao span::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #333;
    top: -8px;
  }
  .menu-botao span::after { top: 8px; }
  .footer-fixo{display:none}	
}


/*inicio do body*/
/* Container que segura os textos */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh; /* Garante que haja espaço vertical na tela */
  text-align: center;
  padding: 20px;
  overflow: hidden; /* Evita barras de rolagem estranhas */
}

.texto-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 100px; /* IMPORTANTE: Damos uma altura fixa para o container aparecer */
  display: flex;
  justify-content: center;
  align-items: center;
}

.fade-text {
  font-size: 1.8rem;
  color: #333;
  font-weight: 500;
  position: absolute; /* Todos ficam no mesmo lugar */
  width: 100%;
  opacity: 0;
  margin: 0;
  /* Suavizando a animação */
  animation: fadeEffect 16s linear infinite; 
}

/* Delays para cada um dos 4 textos */
.fade-text:nth-child(1) { animation-delay: 0s; }
.fade-text:nth-child(2) { animation-delay: 4s; }
.fade-text:nth-child(3) { animation-delay: 8s; }
.fade-text:nth-child(4) { animation-delay: 12s; }

/* Animação de Fade (Opacidade) */
@keyframes fadeEffect {
  0% { opacity: 0; transform: translateY(10px); } /* Começa invisível e um pouco abaixo */
  5% { opacity: 1; transform: translateY(0); }    /* Aparece e sobe levemente */
  20% { opacity: 1; }                             /* Fica parado visível */
  25% { opacity: 0; transform: translateY(-10px); } /* Some subindo */
  100% { opacity: 0; }                            /* Espera o ciclo acabar */
}

.fade-text span {
  color: #007bff; /* O azul da sua logo/sombra */
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 123, 255, 0.2); /* Um brilho leve azul */
}

/*footer*/
.footer-fixo a{
text-decoration:none;
}

.footer-fixo {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.8); /* Branco com transparência */
  backdrop-filter: blur(5px); /* Efeito de vidro jateado (moderno) */
  text-align: center;
  border-top: 1px solid rgba(0, 123, 255, 0.1);
  box-shadow: 0 -2px 15px rgba(0, 123, 255, 0.1); /* Sombra azul para cima */
  z-index: 1000;
}

.footer-fixo p {
  font-size: 0.6rem;
  color: #777;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/*politica de privacidade - aceite*/
.cookie-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  z-index: 2000;
  display: none; /* Começa escondido, o JS mostrará se necessário */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
  border: 1px solid rgba(0, 123, 255, 0.1);
  padding: 20px;
  max-width: 500px;
  margin-left: auto; /* Alinha à direita em telas grandes */
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
  margin: 0;
}

.cookie-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.btn-cookie {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  white-space: nowrap;
}

.btn-cookie:hover {
  background-color: #0056b3;
}

/* Ajuste para mobile */
@media (max-width: 600px) {
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-container { left: 10px; right: 10px; bottom: 10px; }
}