body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  background: url("../img/background.jpg") center center / cover no-repeat;
  display: flex;
  justify-content: center;
  padding-top: 90px;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* FRASE DE IMPACTO */
.headline {
  color: #ffc107;
  font-size: 1.7rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 35px;
  padding: 0 15px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

/* LOGO */
.logo {
  width: 90%;
  max-width: 420px;
  margin-bottom: 25px;
}

/* BOTÃO HERO */
.btn-warning {
  color: #000;
  border-radius: 30px;
  padding: 14px 34px;
}

/* ================= SERVIÇOS ================= */
.servicos {
  background-color: #fff;
  padding: 70px 0;
}

.titulo-servicos {
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #000;
}

/* CARD SERVIÇO */
.servico-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO SERVIÇO */
.servico-titulo {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffc107;
  text-shadow: 1px 1px 2px #000;
}

/* TEXTO SERVIÇO */
.servico-texto {
  margin-top: 15px;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

/* BOTÃO DÚVIDAS */
.btn-duvida {
  display: inline-block;
  margin-top: 10px;
  background-color: #000;
  color: #ffc107;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-duvida:hover {
  background-color: #ffc107;
  color: #000;
}

/* ================= CARROSSEL ================= */
.carousel-inner img {
  border-radius: 12px;
}

/* ESCONDER CONTROLES NO MOBILE */
.carousel-control-prev,
.carousel-control-next {
  display: flex;
}

/* MOSTRAR CONTROLES NO DESKTOP */
@media (min-width: 992px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: flex;
  }
}

/* ================= MENU ================= */
.navbar {
  background-color: transparent;
  transition: transform 0.4s ease, background-color 0.4s ease;
}

/* ESCONDER MENU AO DESCER */
.hide-menu {
  transform: translateY(-100%);
}

.navbar-toggler {
  box-shadow: none;
}
/* ================= FRASE SOBRE IMAGEM ================= */
.frase-imagem {
  position: relative;
  background: url("../img/fundo2.jpg") center center / cover no-repeat;
  padding: 100px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frase-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8); /* 80% opacidade */
  z-index: 1;
}

.frase-conteudo {
  position: relative;
  z-index: 2;
  text-align: center;
}

.frase-texto {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.3;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.frase-texto span {
  color: #ffc107;
}

/* RESPONSIVO */
@media (min-width: 768px) {
  .frase-texto {
    font-size: 3rem;
  }
}


/* ================= ÁREAS DE ATENDIMENTO ================= */
.atendimento {
  background-color: #fff;
  padding: 80px 0;
}

.titulo-atendimento {
  text-align: center;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #000;
}

.texto-atendimento {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

/* MAPA */
.mapa {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* MAPA RESPONSIVO */
.mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* DESKTOP */
@media (min-width: 768px) {
  .titulo-atendimento {
    font-size: 2.4rem;
  }

  .mapa {
    height: 420px;
  }
}

/* ================= POR QUE ME ESCOLHER ================= */
.porque-escolher {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.titulo-escolher {
  text-align: center;
  font-weight: 900;
  font-size: 2rem;
  color: #000;
}

.card-escolher {
  background-color: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.card-escolher:hover {
  transform: translateY(-6px);
}

.icone-escolher {
  width: 60px;
  margin-bottom: 18px;
}

.card-escolher p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

/* DESKTOP */
@media (min-width: 768px) {
  .titulo-escolher {
    font-size: 2.4rem;
  }
}

/* ================= ORÇAMENTO ================= */
.orcamento {
  background-color: #000;
  padding: 80px 0;
}

.titulo-orcamento {
  text-align: center;
  font-weight: 900;
  font-size: 2.2rem;
  color: #ffc107;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.orcamento form {
  max-width: 520px;
  margin: 0 auto;
  background-color: #111;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.form-label {
  color: #ffc107;
  font-weight: 600;
}

.form-control,
.form-select {
  background-color: #000;
  border: 1px solid #ffc107;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus,
.form-select:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255,193,7,0.25);
}

.btn-orcamento {
  width: 100%;
  background-color: #ffc107;
  color: #000;
  font-weight: 800;
  padding: 14px;
  border-radius: 30px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-orcamento:hover {
  background-color: #000;
  color: #ffc107;
  border: 1px solid #ffc107;
}

/* ================= QUEM SOMOS ================= */
.quem-somos {
  background-color: #fff;
  padding: 80px 0;
}

.titulo-quem-somos {
  text-align: center;
  font-weight: 900;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #000;
}

.foto-wrapper {
  display: inline-block;
  padding: 6px;
  border-radius: 50%;
  border: 4px solid #ffc107;
}

.foto-perfil {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
}

.texto-quem-somos {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* AJUSTES MOBILE */
@media (max-width: 768px) {
  .foto-perfil {
    width: 220px;
    height: 220px;
  }

  .texto-quem-somos {
    text-align: center;
  }
}

/* ================= CONTATOS ================= */
.contatos {
  background-color: #000;
  padding: 80px 0;
  text-align: center;
}

.titulo-contatos {
  color: #ffc107;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.subtitulo-contatos {
  color: #fff;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* CARD CONTATO */
.contato-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #111;
  border: 2px solid #ffc107;
  border-radius: 16px;
  padding: 35px 20px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

.contato-card i {
  font-size: 3rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.contato-card span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* HOVER */
.contato-card:hover {
  background-color: #ffc107;
  color: #000;
  transform: translateY(-6px);
}

.contato-card:hover i {
  color: #000;
}

/* ================= RODAPÉ ================= */
.rodape {
  background-color: #000;
  padding: 50px 20px 35px;
  text-align: center;
}

/* CONTATOS */
.rodape-contatos {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.rodape-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  transition: color 0.3s;
}

.rodape-link i {
  color: #ffc107;
  font-size: 1.2rem;
}

.rodape-link:hover {
  color: #ffc107;
}

/* FRASE BÍBLICA (MENOR) */
.rodape-frase {
  color: #ddd;
  font-size: 0.75rem; /* metade do tamanho */
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.rodape-frase span {
  display: block;
  color: #ffc107;
  font-weight: 600;
  margin-top: 4px;
}

/* LINHA */
.rodape-linha {
  width: 100px;
  height: 2px;
  background-color: #ffc107;
  margin: 0 auto 18px;
}

/* COPY */
.rodape-copy {
  color: #888;
  font-size: 0.8rem;
}

.processo {
  background: #000;
  padding: 80px 0;
}

.titulo-processo {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 10px;
}

.subtitulo-processo {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.processo-card {
  max-width: 500px;
  margin: 0 auto;
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.processo-card img {
  border-radius: 10px;
  margin-bottom: 15px;
}

.processo-card h3 {
  color: #ffc107;
  font-weight: 800;
  margin-bottom: 10px;
}

.processo-card p {
  color: #ddd;
  font-size: 0.95rem;
}




/* SOMENTE antes e depois */
.processos-antes-depois img {
  width: 90%;
  height: 420px;          /* altura fixa */
  object-fit: cover;     /* mantém proporção */
  object-position: center;
  border-radius: 12px;

  /* >>> ADICIONADO (NÃO ALTERA O QUE VOCÊ FEZ) <<< */
  display: block;
  margin: 0 auto;
}

/* Ajuste fino no mobile */
@media (max-width: 768px) {
  .processos-antes-depois img {
    height: 280px;

    /* >>> ADICIONADO (CENTRALIZA NO CELULAR) <<< */
    margin-left: auto;
    margin-right: auto;
  }
}
