/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f2f2f2;
  color: #333;
}
body {
  padding-top: 120px; /* ajuste conforme a altura do header */
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER FIXO */
.header {
  background-color: #D4A017; /* amarelo ouro */
  padding: 20px 0;
}

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

.logo {
  height: 90px;
}

/* MENU */
.menu a {
  font-size: 18px; /* aumentou 3pt */
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
}

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

/* HERO COM IMAGEM */
.hero-com-imagem {
  position: relative;
  padding: 0;
  height: 380px;
  background-image: url('img/banner.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
/* TEXTO DO BANNER */
.hero-com-imagem h1 {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.banner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.banner-texto {
  flex: 1;
  color: #fff;
}

.banner-botao {
  flex-shrink: 0;
}
.hero-com-imagem p {
  font-size: 20px;
  color: #f2f2f2;
  margin-top: 10px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.hero-com-imagem h1 {
  color: #fff;
}

.hero-com-imagem p {
  color: #f2f2f2;
}

/* HERO PADRÃO (caso use sem imagem) */
.hero {
  padding: 200px 0 100px;
  text-align: center;
  background: #fff;
  border-bottom: 4px solid #D4A017;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BOTÃO PADRÃO */
.btn {
  background: #D4A017;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #b88a12;
}

/* SEÇÕES */
.section {
  padding: 60px 0;
}

.title {
  font-size: 38px;
  color: #D4A017;
  margin-bottom: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARDS */
.card {
  background: #fff;
  padding: 25px;
  border-left: 6px solid #D4A017;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* GALERIA */
.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ANTES E DEPOIS */
.ad-img {
  width: 100%;
  border-radius: 10px;
}

/* CHECKLIST */
.checklist {
  list-style: none;
}

.checklist li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* ÁREAS ATENDIDAS */
.areas-list {
  list-style: none;
}

.areas-list li {
  margin-bottom: 8px;
  font-size: 18px;
}

/* FORMULÁRIO */
.form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border-left: 6px solid #D4A017;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.form input,
.form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

/* FOOTER */
.footer {
  background: #fff;
  padding: 40px 0;
  text-align: center;
  border-top: 3px solid #e0e0e0;
  margin-top: 40px;
}

/* RESPONSIVO */
@media (max-width: 968px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu a {
    margin-left: 0;
    font-size: 14px;
  }

  .logo {
    height: 70px;
  }

  .hero {
    padding: 140px 0 60px;
  }
}
.sobre-nos {
  padding: 60px 0;
}

.sobre-nos h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.sobre-nos h3 {
  margin-top: 40px;
  font-size: 26px;
  color: #333;
}

.sobre-nos p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.lista-beneficios {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.lista-beneficios li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.lista-beneficios li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #D4A017; /* amarelo ouro */
  font-size: 24px;
  line-height: 18px;
}
.banner-flex {
  display: flex;
  flex-direction: column; /* ✅ botão abaixo */
  align-items: flex-start; /* ✅ alinhado à esquerda */
  gap: 20px;
}

.banner-texto h1 {
  font-size: 40px;
  line-height: 1.2;
  max-width: 700px;
  color: #fff;
}
/* --- AJUSTE DO BANNER --- */

.banner-flex {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 20px !important;
}

.banner-texto h1 {
  font-size: 40px !important;
  line-height: 1.2 !important;
  max-width: 700px !important;
  color: #fff !important;
}

.banner-botao .btn {
  font-size: 18px !important;
  padding: 12px 25px !important;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .banner-flex {
    align-items: center !important;
    text-align: center !important;
  }

  .banner-texto h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  .banner-botao .btn {
    width: 100% !important;
    max-width: 300px !important;
  }
}
.banner-botao .btn {
  font-size: 18px;
  padding: 12px 25px;
}

@media (max-width: 768px) {
  .banner-texto h1 {
    font-size: 26px; /* ✅ reduz só no celular */
    line-height: 1.3;
  }

  .banner-flex {
    align-items: center; /* ✅ centraliza no celular */
    text-align: center;
  }

  .banner-botao .btn {
    width: 100%;
    max-width: 300px;
  }
}
.servicos {
  padding: 60px 0;
  text-align: center;
}

.servicos h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.servicos .subtitulo {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.card-servico {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-servico img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card-servico h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-servico p {
  font-size: 16px;
  color: #555;
}

/* Ajuste mobile */
@media (max-width: 768px) {
  .card-servico img {
    height: 150px;
  }
}
.descricao-areas {
  font-size: 18px;
  color: #555;
  margin: 20px 0;
  line-height: 1.5;
}

.areas-imagem {
  margin: 30px 0;
}

.areas-imagem img {
  width: 100%;
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-orcamento {
  margin-top: 40px;
  text-align: center;
}

.btn-orcamento .btn {
  background-color: #fcbf1e;
  color: #000;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

.btn-orcamento .btn:hover {
  background-color: #e0a800;
}
/* ====== GALERIA SWIPER ====== */

/* Não usa mais .gallery como grid dentro da galeria */
#galeria .gallery {
  display: block;
}

/* Container do carrossel */
.galeriaSwiper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Garante que o wrapper continue sendo flex (comportamento padrão do Swiper) */
.galeriaSwiper .swiper-wrapper {
  display: flex;
}

/* Cada slide */
.galeriaSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

/* Imagem da galeria */
.galeria-item img {
  width: 100%;
  max-width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {

  /* deixa o swiper ocupar a tela inteira */
  .galeriaSwiper {
    max-width: 100%;
  }

  .galeria-item img {
    height: 180px;
  }
}

/* ====== GALERIA SWIPER — CSS FINAL ====== */

.galeriaSwiper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.galeriaSwiper .swiper-wrapper {
  display: flex;
}

.galeriaSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.galeria-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .galeriaSwiper .swiper-slide {
    width: 100% !important;
  }

  .galeria-item img {
    height: 180px;
  }
}
.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-fixo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.whatsapp-fixo img:hover {
  transform: scale(1.1);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
/* Fundo escurecido */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Caixa do modal */
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  animation: fadeIn 0.3s ease;
}

/* Botão de fechar */
.close-modal {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

/* Animação */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}