/* =========================
   RESET BÁSICO
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   CONFIGURAÇÕES GERAIS
   ========================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f3ee;
  color: #2f2f2f;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   TOPO
   ========================= */
.topo {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e7edf5;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.topo-conteudo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 82px;
}

.logo-area {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1f3f68, #174a88);
  box-shadow: 0 8px 18px rgba(23, 74, 136, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-area:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(23, 74, 136, 0.24);
}

.logo {
  width: 120px;
  height: auto;
}

.nome-topo {
  flex: 1;
  text-align: center;
  line-height: 1;
}

.nome-principal-topo {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #1f3f68;
}

.nome-secundario-topo {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #d4a017;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.menu a {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: #1f3f68;
  transition: color 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #d4a017;
  transition: width 0.3s ease;
}

.menu a:hover {
  color: #174a88;
}

.menu a:hover::after {
  width: 100%;
}

/* =========================
   BANNER
   ========================= */
.banner {
  padding: 60px 0;
  background: linear-gradient(to right, #f4efe6, #ece3d5);
}

.banner-conteudo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.destaque {
  display: inline-block;
  background-color: #1f5fae;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 14px;
}

.banner-texto h1 {
  font-size: 42px;
  color: #3f2f25;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-texto p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #4d433d;
}

.banner-botoes {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.banner-imagem img {
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* =========================
   BOTÕES
   ========================= */
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-principal {
  background-color: #1f5fae;
  color: #ffffff;
}

.btn-principal:hover {
  background-color: #174a88;
}

.btn-secundario {
  background-color: transparent;
  border: 2px solid #d4a017;
  color: #8b6b1f;
}

.btn-secundario:hover {
  background-color: #d4a017;
  color: #ffffff;
}

/* =========================
   TÍTULOS
   ========================= */
.titulo-secao {
  text-align: center;
  margin-bottom: 45px;
}

.titulo-secao h2 {
  font-size: 36px;
  color: #3f2f25;
  margin-bottom: 12px;
  line-height: 1.2;
}

.titulo-secao p {
  max-width: 760px;
  margin: 0 auto;
  color: #6a5f58;
  font-size: 17px;
}

/* =========================
   RESUMO DA HOME
   ========================= */
.home-resumo {
  padding: 70px 0;
  background-color: #fffaf3;
}

/* =========================
   CARDS
   ========================= */
.home-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
}

.card h3 {
  margin-bottom: 12px;
  color: #1f5fae;
}

/* =========================
   EXPERIÊNCIA / OBRAS
   ========================= */
.obras-realizadas {
  padding: 10px 0 0;
}

.obras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}

.obra-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
}

.obra-card h3 {
  color: #1f5fae;
  margin-bottom: 12px;
}

.obra-card p {
  margin-bottom: 8px;
  color: #4d433d;
}

.obra-texto {
  margin-top: 12px;
}

/* =========================
   CHAMADA
   ========================= */
.chamada {
  background: linear-gradient(to right, #1f5fae, #174a88);
  color: white;
  padding: 85px 0;
  text-align: center;
  margin-top: 70px;
}

.chamada h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.chamada p {
  font-size: 18px;
  margin-bottom: 24px;
}

/* =========================
   RODAPÉ
   ========================= */
.rodape {
  background: #3f2f25;
  color: white;
  padding: 28px 0;
}

.rodape-conteudo {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

/* =========================
   PÁGINAS INTERNAS
   ========================= */
.pagina-topo {
  background: linear-gradient(to right, #1f5fae, #174a88);
  padding: 70px 0;
  text-align: center;
}

.pagina-topo h1 {
  font-size: 36px;
  color: white;
  margin-bottom: 10px;
}

.pagina-topo p {
  color: #e3ecff;
}

/* =========================
   TEXTO SOBRE
   ========================= */
.sobre-detalhado {
  padding: 60px 0;
  background-color: #fffaf3;
}

.sobre-texto {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sobre-texto p {
  margin-bottom: 18px;
  font-size: 18px;
  color: #4d433d;
}

/* =========================
   MISSÃO / VISÃO / VALORES
   ========================= */
.missao-visao {
  padding: 60px 0;
  background-color: #f1eadf;
}

.grid-mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* =========================
   PÁGINA DE SERVIÇOS
   ========================= */
.servicos-pagina {
  padding: 80px 0;
  background-color: #fffaf3;
}

/* Espaçamento elegante entre blocos internos */
.servicos-pagina > .container > section,
.servicos-pagina > .container > .home-cards {
  margin-top: 70px;
}

/* =========================
   PÁGINA CONTATO
   ========================= */
.contato-pagina {
  padding: 70px 0;
  background-color: #fffaf3;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}

.contato-info p {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  margin-bottom: 10px;
}

.formulario-contato {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.formulario-contato input,
.formulario-contato textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.formulario-contato input:focus,
.formulario-contato textarea:focus {
  border-color: #1f5fae;
  outline: none;
}

.formulario-contato button {
  border: none;
  cursor: pointer;
}

/* =========================
   GALERIA PROFISSIONAL
   ========================= */
.galeria-pro {
  padding: 10px 0 20px;
}

.galeria-principal {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 22px;
}

.galeria-principal img {
  width: 100%;
  max-width: 820px;
  height: 430px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  margin: 0 auto;
  transition: opacity 0.25s ease;
}

/* Faixa das miniaturas */
.galeria-miniaturas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

/* Área das miniaturas */
.miniaturas-container {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: center;
}

/* Miniaturas */
.miniaturas-container img {
  width: 118px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.82;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.miniaturas-container img:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

/* Botões laterais */
.btn-miniatura {
  background: #1f5fae;
  color: #ffffff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-miniatura:hover {
  background: #174a88;
  transform: scale(1.06);
}

/* =========================
   WHATSAPP
   ========================= */
.whatsapp-fixo {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fixo img {
  width: 36px;
  height: 36px;
}

.whatsapp-fixo:hover {
  transform: scale(1.12);
  background-color: #1ebe5d;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* =========================
   BOTÃO WHATSAPP
   ========================= */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
}

.btn-whatsapp img {
  width: 22px;
  height: 22px;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* =========================
   COOKIES
   ========================= */
.cookies {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #1f3f68;
  color: #ffffff;
  padding: 15px 20px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookies button {
  background: #d4a017;
  border: none;
  padding: 8px 15px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
}

/* =========================
   RESPONSIVIDADE
   ========================= */
@media (max-width: 900px) {
  .banner-conteudo,
  .home-cards,
  .grid-mvv,
  .contato-grid,
  .obras-grid {
    grid-template-columns: 1fr;
  }

  .banner-texto h1 {
    font-size: 32px;
  }

  .titulo-secao h2,
  .chamada h2,
  .pagina-topo h1 {
    font-size: 28px;
  }

  .topo-conteudo {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding: 6px 0;
  }

  .nome-principal-topo {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .nome-secundario-topo {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .logo {
    width: 100px;
  }

  .galeria-principal img {
    height: 320px;
  }

  .miniaturas-container img {
    width: 90px;
    height: 68px;
  }
}

@media (max-width: 768px) {
  .menu a {
    font-size: 15px;
  }

  .nome-principal-topo {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .nome-secundario-topo {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .galeria-principal img {
    height: 230px;
  }

  .miniaturas-container {
    gap: 8px;
  }

  .miniaturas-container img {
    width: 58px;
    height: 58px;
  }

  .btn-miniatura {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .sobre-texto p,
  .banner-texto p,
  .chamada p,
  .titulo-secao p,
  .pagina-topo p {
    font-size: 16px;
  }

  .cookies button {
    display: block;
    margin: 10px auto 0;
  }
}

/* =========================
   MAPA
   ========================= */
.mapa {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}