*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


.header {
  position: fixed;   /* 👈 faz acompanhar a rolagem */
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;     /* 👈 evita ficar atrás de outros elementos */
}






.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 45px;
}

@media (max-width: 900px) {
  .logo img {
    height: 25px;   /* ajuste ideal para mobile */
  }
}


/* Menu */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ===== LINK ATIVO DO MENU ===== */

.menu a {
    font-weight: 600;
  color: #004f7c;
  text-decoration: none;
  font-size: 14px;
   font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff7a00, #ffc400);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a.ativo::after {
  width: 100%;
}

.menu a:hover {
  color: #ec640f;
}

/* Divisor vertical */
.divider {
  width: 1px;
  height: 20px;
  background: #cfcfcf;
}

/* Botão */
.menu-btn a {
  background: #ff8c00;
  color: #fff;
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
   font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
}

.menu-btn a:hover {
  background: #175491;
}

.menu-toggle {
  display: none;
}

.menu-toggle {
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fde006;
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }


.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

.menu-mobile {
  display: flex;
}

@media (max-width: 900px) {
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 24px;
    gap: 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    transition: right 0.35s ease;
    z-index: 1000;
  }

  .menu.open {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}





/* ====================== Página Erro / Catálogo ====================== */

.pagina-erro {
  min-height: 80vh;
  padding: 140px 20px 80px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pagina-erro h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.erro-img {
  width: 100%;
  max-width: 420px;
  margin: 20px 0;
}

.pagina-erro p {
  font-size: 1.2rem;
  color: #4d2602;
  margin-top: -6vh;
  margin-bottom: 50px;
   font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  text-align: center;

}

;











































































/* ================================================ WhatsApp ===== */


.whatsapp-fixo {
  position: fixed;
  bottom: 24px;
  right: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 999;
  cursor: pointer;
}

.whatsapp-fixo img { 
  width: 56px;
  height: 56px;

  /* sombra ao redor do ícone */
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));

  transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp-fixo:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.45));
}






h1 {
  background: -webkit-linear-gradient(#fb8a08, #f7dc0d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-size: 2.5rem;
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  text-align: center;
}


h2 {
  font-size: 1.2rem;
  color: #f27907;
  margin-top: -6vh;
  margin-bottom: 50px;
   font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  text-align: center;
}


h4 {
  font-size: 1.2rem;
  color: #000000;
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

.titulomarcas {
  margin-top: 10vh;
  margin-bottom: -8vh;

}




/* =================================================== Roda pé ===== */



.rodape {
  background: #fff;
  padding: 60px 120px;
    font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

.rodape-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.rodape-coluna h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
  
}

.rodape-coluna p {
  font-size: 14px;
  margin-bottom: 6px;
}



/* Botões */
.botoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-rodape {
  background: linear-gradient(90deg, #ff7a00, #ffc400);
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;   /* evita quebrar texto */
  
  
  
}

.btn-rodape.outline {
  background: transparent;
  border: 2px solid #ff7a00;
  color: #ff7a00;
  
}


@media (max-width: 768px) {
  .rodape {
    padding: 40px 20px;
  }

  .rodape-container {
    flex-direction: column;
    gap: 30px;
  }

  .botoes {
    flex-direction: row;
  }
}

.rodape-botoes {
  display: flex;
  flex-direction: column; /* UM ABAIXO DO OUTRO */
  gap: 10px;
  align-items: flex-start; /* mantém alinhado à esquerda */
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
}

.rodape-logo {
  height: 5vh !important;
  width: auto !important;
  max-height: none;
  max-width: none;
}




.footer-social img {
  height: 4vh;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}



footer {
  position: relative;
  margin-top: 80px;
  overflow: visible;
    clear: both;
  z-index: 1;
}



.logo-e-redes {
  display: flex;
  align-items: center; /* 🔥 AQUI está a correção */
  gap: 80px;
}



.redes-icones {
  display: flex;
  gap: 12px;
}

.redes-icones img {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {

  .rodape {
    padding: 40px 20px;
  }

  .rodape-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  /* LOGO + REDES */
  .logo-e-redes {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .redes-bloco h4 {
    margin-bottom: 10px;
  }

  .redes-icones {
    justify-content: center;
  }

  /* BOTÕES */
  .rodape-botoes {
    align-items: center;
    gap: 14px;
  }

  .btn-rodape {
    width: 220px; /* padrão visual */
  }

  /* COLUNAS DE TEXTO */
  .rodape-coluna {
    text-align: center;
  }

  .rodape-coluna h4 {
    margin-bottom: 8px;
  }
 }