/* ============================
   RESET E CONFIGURAÇÃO GLOBAL
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cor-fundo);
  color: #333;
}

/* ======================
   PALETA DE CORES
====================== */
:root {
  --cor-primaria: #0F4588;           /* Azul principal */
  --cor-secundaria: #EE7D19;         /* Azul claro */
  --cor-hover: #0F4588;              /* Hover azul escuro */
  --cor-clara: #ffffff;              /* Branco */
  --cor-fundo: #f5f5f5;              /* Fundo cinza */
  --cor-cinza-claro: #f2f2f2;        /* Cinza leve */
  --cor-destaque-laranja: #EE7D19;
  --cor-destaque-amarelo: #E2A721;
  --cor-destaque-azul: #0F4588;
  --cor-destaque-navy: #041E42;
  --cor-vermelho: #d35400;
}

/* ======================
   Faixa superior com telefone
====================== */
.faixa-telefone {
  width: 100%;
  background-color: #EE7D19;
  padding: 5px 20px;
  font-size: 14px;
  z-index: 999;
}

.conteudo-faixa {
  max-width: 1200px;
  margin: 0 auto;
  text-align: right;
}

.faixa-telefone a {
  background-color: #EE7D19;
  color: #fff;
  padding: 6px 6px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.faixa-telefone a:hover {
  background-color: #0F4588;
}



/* ======================
   CABEÇALHO E MENU
====================== */
.cabecalho {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--cor-primaria);
  padding: 9px 0; /* opcional: pode remover o padding lateral aqui */
  flex-wrap: wrap;
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 9px 30px; /* move o padding pra cá se quiser */
}

.logo img {
  height: 40px;
  width: auto;
}

.menu {
  display: flex;
  gap: 10px;
  align-items: rigth;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0 10px;
}

.menu a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.menu.ativo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--cor-primaria);
  padding: 10px 20px;
  border-radius: 8px;
  position: absolute;
  top: 100%;
  right: 30px;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.menu.ativo a {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* ======================
   ÍCONES DE CONTATO
====================== */
.contato-icons a img {
  width: 24px;
  margin-left: 15px;
}

/* ======================
   BANNER / CARROSSEL
====================== */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel {
  width: 100%;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 2s ease-in-out;
  width: 100%;
}

.slide {
  flex: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Botões do carrossel */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 28px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel button:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel .prev {
  left: 15px;
}

.carousel .next {
  right: 15px;
}

/* ======================
   BOTÃO PADRÃO
====================== */
.botao {
  background-color: var(--cor-secundaria);
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
}

.botao:hover {
  background-color: var(--cor-hover);
}
/* ======================
   SEÇÃO SOBRE A EMPRESA
====================== */
.sobre {
  padding: 80px 40px;
  background-color: var(--cor-clara);
}

.sobre-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.sobre-texto {
  flex: 1;
  min-width: 280px;
}

.sobre-texto h2 {
  color: var(--cor-primaria);
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.sobre-imagem {
  flex: 1;
  min-width: 280px;
}

.sobre-imagem img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Cartões de Missão, Visão, Valores */
.valores-container {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.card-valor {
  background-color: var(--cor-cinza-claro);
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-valor h3 {
  color: var(--cor-primaria);
  margin-bottom: 10px;
  font-size: 20px;
}

.card-valor p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.card-valor:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* ======================
   PRODUTOS EM DESTAQUE
====================== */
.especialidades {
  padding: 60px 30px;
  text-align: center;
  background-color: var(--cor-cinza-claro);
}

.especialidades h2 {
  color: var(--cor-primaria);
  margin-bottom: 30px;
}

.produtos-destaque {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.card-produto {
  width: 270px;
  height: 290px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-produto:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.card-produto img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.laranja  { background-color: var(--cor-destaque-laranja); }
.amarelo  { background-color: var(--cor-destaque-amarelo); color: #333; }
.azul     { background-color: var(--cor-destaque-azul); }
.navy     { background-color: var(--cor-destaque-navy); }
.vermelho { background-color: var(--cor-vermelho); }

.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.popup img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.popup .fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


/* ======================
   INSTAGRAM GRID
====================== */
.para-voce {
  padding: 60px 30px;
  text-align: center;
  background-color: var(--cor-cinza-claro);
}

.para-voce h2 {
  color: var(--cor-primaria);
  margin-bottom: 20px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* ======================
   LOCAIS DE ATENDIMENTO
====================== */
.locais-atendimento {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}

.locais-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 0px;
}

.locais-texto {
  max-width: 500px;
}

.locais-texto h2 {
  color: var(--cor-primaria);
  margin-bottom: 20px;
}

.locais-texto p {
  font-size: 17px;
  line-height: 1.6;
}

/* Cards circulares */
.cards-contadores {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px;
}

.contador-card {
  width: 100px;
  height: 100px;
  background-color: var(--cor-destaque-azul);
  border-radius: 50%;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.contador-card:hover {
  transform: scale(1.05);
}

.contador-card .numero {
  font-size: 18px;
  font-weight: bold;
}

.contador-card .label {
  margin-top: 0px;
  font-size: 10px;
  padding: 0 7px;
}

/* ======================
   CONTATO
====================== */
.card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.lista-contato {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lista-contato li a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.lista-contato li a:hover {
  background-color: #f0f0f0;
  transform: translateX(2px);
}

.lista-contato .icone {
  font-size: 18px; /* menor que antes */
  margin-right: 10px;
  width: 24px;
  text-align: center;
  line-height: 1.4;
}

.contato {
  padding: 60px 30px;
  background-color: var(--cor-cinza-claro);
}

.container-contato {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contato-info {
  flex: 1 1 55%;
}

.contato-info h2 {
  color: var(--cor-primaria);
  margin-bottom: 20px;
}

.contato-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.mapa iframe {
  width: 100%;
  border-radius: 8px;
}

#formTrabalhe {
  flex: 1 1 40%;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#formTrabalhe h2 {
  color: var(--cor-primaria);
  margin-bottom: 10px;
  text-align: center;
}

#formTrabalhe input,
#formTrabalhe label {
  font-size: 16px;
}

#formTrabalhe input[type="text"],
#formTrabalhe input[type="tel"],
#formTrabalhe input[type="file"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#formTrabalhe button {
  padding: 12px;
  background-color: var(--cor-secundaria);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

#formTrabalhe button:hover {
  background-color: var(--cor-hover);
}

/* Responsivo */
@media (max-width: 768px) {
  .container-contato {
    flex-direction: column;
  }

  #formTrabalhe,
  .contato-info {
    width: 100%;
  }
}


/* ======================
   RODAPÉ
====================== */
.rodape {
  background-color: var(--cor-primaria);
  color: white;
  padding: 20px 30px;
}

.rodape-conteudo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.logo-rodape img {
  height: 30px;
  width: auto;
}

.rodape-textos {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contato-icons img {
  width: 24px;
  filter: brightness(0) invert(1); /* deixa branco se o fundo for escuro */
}

/* Responsivo */
@media (max-width: 600px) {
  .rodape-conteudo {
    flex-direction: column;
  }
}


/* ======================
   BOTÃO WHATSAPP FLUTUANTE
====================== */
.whatsapp-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-flutuante img {
  width: 32px;
}

/* ======================
   RESPONSIVIDADE
====================== */

@media (max-width: 768px) {
  .cabecalho {
    flex-direction: column;
    text-align: center;
    padding-bottom: 10px;
  }

  .menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .sobre-container,
  .valores-container,
  .card-linha,
  .locais-container {
    flex-direction: column;
    align-items: center;
  }

  .card-produto,
  .card-valor {
    width: 90%;
    max-width: 320px;
  }

  .contato form {
    padding: 0 10px;
  }

  .logo img {
    height: 28px;
  }

  .contador-card {
    width: 160px;
    height: 160px;
  }

  .contador-card .numero {
    font-size: 28px;
  }

  .contador-card .label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .botao {
    padding: 8px 16px;
    font-size: 14px;
  }

  .carousel button.prev,
  .carousel button.next {
    font-size: 20px;
  }

  .menu-toggle {
    font-size: 26px;
  }
}
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* fundo escurecido */
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.popup-content h3 {
  margin-top: 0;
  color: #003b8e;
}

.popup-content button {
  margin-top: 20px;
  padding: 8px 16px;
  background-color: #003b8e;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.popup-content button:hover {
  background-color: var(--botao-hover);
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
