@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Rum+Raisin&family=Teko:wght@300..700&family=Tilt+Neon&family=Turret+Road:wght@200;300;400;500;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

#area-produtos #area-produto-secao1 #area-produto-secao2 {
  scroll-margin-top: 100px; /* Ajuste este valor de acordo com a altura do seu menu */
}

/*WhatsApp icone*/
.whatsapp-fixed {
  position: fixed;
  bottom: 20px; /* Distância do fundo da tela */
  right: 20px; /* Distância da lateral direita */
  width: 60px; /* Tamanho do botão */
  height: 60px;
  background-color: #00816a; /* Verde oficial do WhatsApp */
  color: #fff;
  border-radius: 50%; /* Faz o botão ser redondo */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10000; /* Garante que fique por cima de tudo */
  transition: transform 0.3s ease;
}

.whatsapp-fixed img {
  width: 35px; /* Tamanho do ícone dentro do círculo */
  height: auto;
}

/* Efeito ao passar o mouse */
.whatsapp-fixed:hover {
  transform: scale(1.1); /* Aumenta levemente */
  background-color: #1ebe57;
}

/* Ajuste para telas pequenas (Mobile) */
@media (max-width: 768px) {
  .whatsapp-fixed {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
}

/*tela WhatsApp */
.modal-overlay {
  display: none; /* Escondido por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Transparência escura */
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

/* Caixa do Modal */
.modal-container {
  background: #fdfdfd;
  width: 90%;
  max-width: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-family: "Arial", sans-serif;
}

/* Cabeçalho superior */
.modal-header {
  background: #00816a; /* Cor de atendimento online */
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-logo-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: white;
  padding: 2px;
}
.header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-info strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
}
.header-info span {
  font-size: 11px;
  opacity: 0.9;
}

.close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Balão de Chat */
.chat-bubble {
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  margin: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 13px;
  color: #444;
  border: 1px solid #eee;
}

/* Formulário e Inputs */
.modal-form {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f9f9f9;
  box-sizing: border-box;
}

.modal-form textarea {
  height: 80px;
  resize: none;
}

/* Botão WhatsApp */
.btn-iniciar {
  background: #00816a; /* Verde oficial WhatsApp */
  color: white;
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-iniciar:hover {
  background: #1ebe57;
  transform: scale(1.02);
}

/* TOPBAR */
.top-bar-contato {
  background-color: #01448b; /* Azul marinho da imagem */
  padding: 10px 0;
  width: 100%;
}

.container-top-bar {
  display: flex;
  flex-direction: row; /* Garante que fiquem um do lado do outro */
  justify-content: center; /* Centraliza o grupo todo na tela */
  align-items: center; /* Alinha verticalmente */
  gap: 30px; /* Espaçamento entre os blocos de contato */
  max-width: 1200px;
  margin: 0 auto;
}

.item-contato-topo {
  display: flex;
  align-items: center; /* Alinha o ícone PNG com o texto ao lado */
  gap: 8px; /* Espaço curto entre o ícone e o número */
}

.item-contato-topo img {
  height: 18px; /* Ajuste o tamanho do seu PNG aqui */
  width: auto;
  display: block;
}

.item-contato-topo span {
  color: #ffffff;
  font-size: 11px;
  font-family: sans-serif;
  font-weight: 500;
}

/* NAVBAR */
.navbar {
  background: #ffffffb0;
  border-bottom: 1px solid #ddd;
  position: -webkit-sticky; /* Suporte Safari */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-soma-btn {
  height: 15px; /* Ajusta o tamanho do seu ícone PNG */
  width: auto;
}

/* LOGO */
.logo img {
  height: 40px;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #444;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 0;
  font-size: 14px;
}

.nav-menu a:hover {
  border-bottom: 2px solid #44c2e0;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: #01448b;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  z-index: 10;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: white;
  font-size: 12px;
}

.dropdown-menu li a:hover {
  background: #44c2e0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* BOTÃO */
.btn-orcamento-estilo {
  background-color: #44c2e0; /* Cor azul celeste da imagem */
  color: #ffffff; /* Texto em branco */
  padding: 10px 23px; /* Espaçamento interno */
  border-radius: 8px; /* Bordas levementes arredondadas */
  text-decoration: none;
  font-weight: bold; /* Texto em negrito */
  font-size: 12px;
  display: inline-flex; /* Mantém ícone e texto na mesma linha */
  align-items: center; /* Centraliza verticalmente */
  gap: 10px; /* Espaço entre o ícone e o texto */
  transition: background 0.3s ease;
}

.btn-orcamento-estilo:hover {
  background-color: #01448b; /* Cor levemente mais escura ao passar o mouse */
}

.icon-whats-btn {
  height: 20px; /* Ajusta o tamanho do seu ícone PNG */
  width: auto;
}

/* ESTILO DO MENU HAMBÚRGUER (Escondido no Desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #01448b;
  transition: 0.3s;
}

/* RESPONSIVIDADE (Mobile) */
@media (max-width: 992px) {
  .top-bar-contato {
    display: none;
  } /* Opcional: esconde topbar no mobile para ganhar espaço */

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px; /* Ajuste conforme a altura da sua navbar */
    left: -100%;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu {
    position: static;
    display: none; /* Só aparece se clicar (requer JS extra) ou manter hover */
    width: 100%;
  }

  .btn-orcamento-estilo {
    padding: 8px 15px;
    font-size: 10px;
  }
}

/* Parte Azul Inicial */
.cta-budget {
  background-image: url(img/fundoorcamento-2.png);
  background-size: 40px 40px;
  padding: 40px 20px;
  color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cta-budget-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-budget-text h2 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.cta-budget-text p {
  font-size: 12px;
  margin-bottom: 5px;
  color: #44c2e0;
}

.cta-budget-text a {
  color: #44c2e0;
}

.cta-budget-text a:hover {
  color: white;
}

.cta-budget-text strong {
  font-size: 14px;
  display: block;
}

.cta-budget-action img {
  width: 60px;
  height: 65px;
}

/* Responsividade para celulares */
@media (max-width: 768px) {
  .cta-budget-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-budget-text h2 {
    font-size: 26px;
  }
}

/*Parte Contato e Formulario*/
/*Contato*/
.contato-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 50px auto;
  gap: 40px;
  padding: 20px;
}

.contato-info,
.contato-form {
  flex: 1;
  min-width: 320px;
}

/* Estilo Coluna Esquerda */
.contato-info h2 {
  color: #133e75;
  margin-bottom: 10px;
  font-size: 22px;
}

.linha-azul {
  width: 40px;
  height: 3px;
  background-color: #133e75;
  margin-bottom: 30px;
}

.item-contato {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.icone {
  width: 30px;
  height: 30px;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.texto strong {
  display: block;
  font-size: 16px;
  color: #000000;
}

.texto a {
  margin: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.texto a:hover {
  color: #133e75;
}

.texto p {
  margin: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}

/* Estilo Coluna Direita (Formulário) */
.contato-form p {
  margin-bottom: 20px;
  font-weight: bold;
  color: #000000;
  font-size: 16px;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  box-sizing: border-box; /* Garante que o padding não quebre a largura */
  font-size: 14px;
}

.contato-form button {
  width: 100%;
  padding: 10px;
  background-color: #133e75;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
  font-size: 16px;
}

.contato-form button:hover {
  background-color: transparent;
  color: #133e75;
  border: 2px solid #133e75;
}

/*Parte do Mapa*/
.secao-mapa {
  width: 100%;
  margin-top: 50px; /* Espaço entre a seção de contato e o mapa */
  background-color: #f9f9f9;
  margin-bottom: 70px;
}

.mapa-container {
  width: 100%;
  line-height: 0; /* Remove pequenos espaços em branco abaixo do iframe */
}

.mapa-container iframe {
  width: 100%;
  height: 300px;
  filter: grayscale(10%); /* Opcional: deixa o mapa um pouco mais suave */
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
  .mapa-container iframe {
    height: 100px;
  }
}

/* --- Parte Final --- */
.footer-inpack {
  background-color: #ffffff;
  padding: 30px 10px;
  color: #01448b;
}

.container-footer {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.textoFooter {
  font-size: 12px;
  padding: 2px;
  color: #000000;
}

.footer-menu,
.footer-contato {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

.footer-menu li a:hover {
  color: #38b6e6;
}

.footer-contato li:hover {
  color: #38b6e6;
}

.info-item p:hover {
  color: #38b6e6;
}

.footer-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("img/seta.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  border: none;
  border-radius: 0;
}

.footer-menu a {
  text-decoration: none;
  color: #000000;
  font-size: 12px;
}

.footer-contato li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 12px;
  color: #000000;
}

.footer-contato i,
.info-item i {
  color: #44c2e0; /* Ícones em azul claro */
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a:hover {
  background-color: #01448b;
  transform: translateY(-2px);
}

.social-icons a {
  background-color: #44c2e0;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsividade */
@media (max-width: 992px) {
  .container-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container-footer {
    grid-template-columns: 1fr;
  }
}

/* footer */
.footer-bottom {
  background-color: #f5f5f5; /* Cor cinza claro da imagem */
  color: #000000;
  padding: 15px 0;
  font-size: 10px;
}

.footer-bottom a {
  color: #000000;
  text-decoration: none;
}

.container-bottom {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Texto na esquerda e direita */
  padding: 0 20px;
}

/* =========================
   AJUSTES EXTRAS DE RESPONSIVIDADE
   (SEM ALTERAR O RESTO)
========================= */

/* -------- Tablets (até 992px) -------- */
@media (max-width: 992px) {
  .nav-container {
    padding: 10px 15px;
  }

  .logo img {
    height: 35px;
  }

  .cta-budget-container {
    gap: 20px;
  }

  .contato-container {
    gap: 30px;
    margin: 30px auto;
  }

  .container-footer {
    padding: 0 15px;
  }

  .container-bottom {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

/* -------- Celulares (até 768px) -------- */
@media (max-width: 768px) {
  /* Navbar */
  .nav-container {
    padding: 10px;
  }

  .nav-menu {
    top: 60px;
  }

  .nav-menu li {
    padding: 12px 0;
  }

  /* CTA azul */
  .cta-budget {
    padding: 30px 15px;
  }

  .cta-budget-text h2 {
    font-size: 22px;
  }

  .cta-budget-text strong {
    font-size: 13px;
  }

  .cta-budget-action img {
    width: 50px;
    height: auto;
  }

  /* Contato */
  .contato-container {
    flex-direction: column;
    gap: 25px;
    padding: 15px;
  }

  .contato-info,
  .contato-form {
    min-width: 100%;
  }

  /* Footer */
  .footer-logo {
    width: 150px;
  }

  .footer-col h3 {
    font-size: 14px;
  }

  .textoFooter,
  .footer-menu a,
  .footer-contato li {
    font-size: 11px;
  }
}

/* -------- Celulares pequenos (até 480px) -------- */
@media (max-width: 480px) {
  /* Navbar */
  .logo img {
    height: 30px;
  }

  .btn-orcamento-estilo {
    font-size: 9px;
    padding: 6px 10px;
  }

  /* CTA */
  .cta-budget-text h2 {
    font-size: 20px;
  }

  .cta-budget-text p {
    font-size: 11px;
  }

  /* Formulário */
  .contato-form input,
  .contato-form textarea,
  .contato-form button {
    font-size: 13px;
  }

  /* Footer */
  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 9px;
  }
}
