/* Estilo base para o corpo da página */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
}


/* Seção de ícones com características */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 100px 20px;
  background-color: #eaf3fa;
}

.features div {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px 15px;
  text-align: center;
  width: 220px;
  transition: transform 0.2s ease-in-out;
}

.features div:hover {
  transform: scale(1.05);
}

.features p {
  font-size: 16px;
  font-weight: bold;
  color: #003366;
  margin: 0;
}

/* Seção de serviços */
.services {
  padding: 100px 20px;
  text-align: center;
}

.services h2 {
  color: #003366;
}

/* Cartões de serviço */
.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  border: 1px solid #ff6600;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Galeria de imagens */
.gallery {
  padding: 100px 20px;
  background-color: #eaf3fa;
  text-align: center;
}

.gallery h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #003366;
}

.gallery img,
.galeria-img {
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 10px;
}

/* Chamada para ação de contato */
.contact-cta {
  background-color: #ff6600;
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 30px;
}

/* Seção de formulário */
.form-section {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

/* Placeholder padronizado cross-browser */
.form-section input::placeholder,
.form-section textarea::placeholder,
.form-section input::-webkit-input-placeholder,
.form-section textarea::-webkit-input-placeholder,
.form-section input::-moz-placeholder,
.form-section textarea::-moz-placeholder,
.form-section input:-ms-input-placeholder,
.form-section textarea:-ms-input-placeholder,
.form-section input::-ms-input-placeholder,
.form-section textarea::-ms-input-placeholder {
  font-family: 'Arial', sans-serif !important;
  font-size: 16px;
  color: #666;
  opacity: 1;
}

.form-section input,
.form-section textarea,
.form-section button {
  font-family: inherit;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Campos do formulário */
input, textarea, button {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* Botão de envio do formulário */
button {
  background-color: #003366;
  color: white;
  border: none;
  cursor: pointer;
}

/* Rodapé */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 15px;
}

/* Animação para ícones sociais com classe .icon-hover */
.icon-hover {
  transition: transform 0.2s ease-in-out;
}
.icon-hover:hover {
  transform: scale(1.1);
}


/* Rodapé: ícones sociais com tamanho e espaçamento iguais */
footer .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

footer .social-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}

footer .social-icons img:hover {
  transform: scale(1.1);
}

footer .copyright-linha {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  text-align: center;
  color: #fff;
}

/* Estilo para seção extra no rodapé */
.footer-extra {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: #003366;
  color: white;
  padding: 10px 10px 0px;
  text-align: center;
}

.footer-box {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-box h4 {
  margin-bottom: 2px;
  margin-top: 10px;
  font-size: 18px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 5px;
  font-size: 14px;
}

.footer-box ul li img {
  width: 180px;
  margin-top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

footer .copyright-linha {
  margin-top: 20px;
  text-align: center;
  color: white;
  font-size: 14px;
}

/* ícone do whatsapp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
  display: block;
}

/* Corrige rolagem dos links do menu com header fixo */
#hero,
#catalogo,
#servicos,
#galeria,
#orcamento,
#localizacao {
  scroll-margin-top: 55px;
}

/* imagem da logo no menu */
header img {
  max-width: 100%;
  object-fit: contain;
}

body.login {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.login-container h2 {
  margin-bottom: 20px;
  color: #333;
}

.login-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.login-container button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.login-container button:hover {
  background-color: #0056b3;
}

.btn-sair {
  background-color: #f44336;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.btn-sair:hover {
  background-color: #d32f2f;
}

/* Força Arial nos placeholders do formulário */
input::placeholder,
textarea::placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-family: 'Arial', sans-serif !important;
  font-size: 16px !important;
  color: #666 !important;
  opacity: 1 !important;
}

.footer-box h4 {
  font-size: 1.1rem;
  font-weight: bold;
}

/*
.banner-produtos {
  position: relative;
  display: block;
  width: 100%;
  max-height: 700px; /* limita a altura do banner 
  height: 100%;      /* mantém a relação com o max-height 
  overflow: hidden;
}


.banner-produtos img {
  width: 100%;
  height: 100%;
  display: block;
  max-height: 700px; /* proteção extra caso algo force a imagem além do container 
} */


.banner-produtos {
  position: relative;
  display: block;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.banner-produtos img {
  width: 100%;
  height: auto;              /* 🔑 impede esticar */
  max-height: 700px;
  object-fit: cover;         /* preenche sem deformar */
  display: block;
}



.nossas-linhas {
  text-align: center;
  padding: 60px 20px;
}

.nossas-linhas h2 {
  font-size: 32px;
  margin-bottom: 40px;
  position: relative;
}

.nossas-linhas h2::before,
.nossas-linhas h2::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #001f4d;
  margin: 0 15px;
  vertical-align: middle;
}

.linha-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.linha-card {
  width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 5px solid #001f4d;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.linha-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.linha-texto {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
}

.linha-texto h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.linha-texto p {
  font-size: 15px;
  line-height: 1.4;
}

