/* RESET */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* MENU */
/* MENU PREMIUM */
.menu {
  background:#0f4c81;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.menu-container {
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 20px;
}

/* LOGO */
.menu-logo {
  color:#ffffff;
  font-weight:700;
  font-size:18px;
}

/* LINKS */
.menu-links {
  display:flex;
  align-items:center;
  gap:20px;
}

.menu-links a {
  color:#ffffff;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.menu-links a:hover {
  opacity:0.8;
}

/* BOTÃO DE ORÇAMENTO (DESTAQUE) */
.menu-cta {
  background:#25D366;
  color:#fff;
  padding:10px 16px;
  border-radius:8px;
  font-weight:bold;
  text-decoration:none;
  transition:0.3s;
}

.menu-cta:hover {
  background:#1ebe5d;
}

/* MENU MOBILE */
.menu-toggle {
  display:none;
  font-size:26px;
  color:white;
  cursor:pointer;
}

/* RESPONSIVO */
@media (max-width:768px){

  .menu-links {
    display:none;
    flex-direction:column;
    align-items:flex-start;
    background:#0f4c81;
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    padding:20px;
    gap:15px;
  }

  .menu-links.active {
    display:flex;
  }

  .menu-toggle {
    display:block;
  }

}
/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 520px;
  text-align: center;
  overflow: hidden;
}

/* IMAGEM FUNDO (LCP) */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
}

/* CONTEÚDO */
.hero-conteudo {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding: 80px 20px 40px;
}

/* ================= MASCOTE ================= */

.mascote {
  width: 200px;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

/* ================= TEXTO ================= */

.hero h1 {
  font-size: 28px;
  color: #0f4c81;
  margin-bottom: 8px;
  line-height: 1.2;
}

.subtexto {
  font-size: 16px;
  color: #222;
  margin-bottom: 10px;
}

.beneficios {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ================= BOTÕES ================= */

.botoes-hero {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* BASE */
.botoes-hero a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
  min-height: 50px;

  padding: 14px 20px;
  border-radius: 10px;

  font-weight: 800;
  font-size: 16px;

  text-decoration: none;
  transition: none;
}

/* WHATSAPP */
.btn-whatsapp {
  background: #00CF4B;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-whatsapp:hover {
  background: #0d6e63;
  transform: none;
}

/* TELEFONE */
.btn-telefone {
  background: rgba(15, 76, 129, 0.08);
  color: #0f4c81;
  border: 1px solid rgba(15, 76, 129, 0.2);
}

.btn-telefone:hover {
  background: rgba(15, 76, 129, 0.15);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .hero {
    min-height: 480px;
  }

  .hero-conteudo {
    padding: 60px 15px 30px;
  }

  .mascote {
    width: 120px;
  }

  .hero h1 {
    font-size: 20px;
  }

  .subtexto {
    font-size: 14px;
  }

  .beneficios {
    font-size: 14px;
  }

  .botoes-hero {
    flex-direction: column;
    gap: 10px;
  }

  .botoes-hero a {
    width: 100%;
    max-width: 320px;
  }

}
/* SOBRE */
.sobre {
  padding: 70px 20px;
  background: #f8fafc;
}

.container-sobre {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;

  align-items: center;
}

/* IMAGEM */
.sobre-img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 3; /* 🔥 trava proporção */
}

.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* TEXTO */
.sobre-texto {
  text-align: left;
}

.sobre-texto h2 {
  font-size: 28px;
  color: #0f4c81;
  margin: 15px 0;
}

.descricao {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* TAG */
.tag {
  font-size: 14px;
  color: #0d6e63;
  font-weight: bold;
}

/* BENEFÍCIOS */
.beneficios {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.beneficios li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* BOTÃO */
.btn-whatsapp {
  background: #128c7e;
  color: #ffffff;
  font-weight: 600;
  border: 2px solid #0f4c81;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* MOBILE */
@media (max-width:768px){

  .container-sobre {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sobre-texto {
    text-align: center;
  }

}


/* SERVIÇOS */
.servicos {
  padding: 70px 20px;
  text-align: center;
  background: #ffffff;
}

.servicos h2 {
  font-size: 28px;
  color: #0f4c81;
  margin-bottom: 10px;
}

.subtitulo {
  color: #555;
  margin-bottom: 40px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.grid-servicos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

/* CARD */
.card-servico {
  background: #f8fafc;
  padding: 25px;
  border-radius: 14px;
  text-align: left;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card-servico:hover {
  transform: translateY(-5px);
}

.card-servico h3 {
  margin-bottom: 10px;
  color: #0f4c81;
}

.card-servico p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width:768px){

  .grid-servicos {
    grid-template-columns: 1fr;
  }

  .card-servico {
    text-align: center;
  }

}
/* BAIRROS */
/* ===== FUNDO PREMIUM ===== */

.bairros-premium {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f9fc, #e9f1f7);
}

/* CONTAINER */
.container-bairros {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD BASE */
.bairros-box {
  background: white;
  padding: 40px;
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.bairros-box:hover {
  transform: translateY(-5px);
}

/* TAG */
.tag {
  display: inline-block;
  background: rgba(15,76,129,0.1);
  color: #0f4c81;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* TEXTO */
.bairros-info h2 {
  font-size: 28px;
  color: #0f4c81;
  margin-bottom: 15px;
}

.bairros-info p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* BENEFÍCIOS */
.beneficios {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.beneficios li {
  margin-bottom: 8px;
  color: #333;
}

/* BOTÕES */
.botoes {
  display: flex;
  gap: 10px;
}

.btn-whats {
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-call {
  background: #eef4f8;
  color: #0f4c81;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
}

/* LISTA */
.bairros-lista h3 {
  margin-bottom: 20px;
  color: #0f4c81;
}

/* GRID DE BAIRROS */
.grid-bairros {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.grid-bairros a {
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #0f4c81;
  font-size: 14px;
  transition: 0.3s;
}

.grid-bairros a:hover {
  background: #25D366;
  color: white;
  transform: translateX(5px);
}

/* ===== MOBILE ===== */

@media (max-width:768px){

  .container-bairros {
    grid-template-columns: 1fr;
  }

  .bairros-box {
    padding: 25px;
  }

  .grid-bairros {
    grid-template-columns: 1fr;
  }

  .botoes {
    flex-direction: column;
  }

}


/* FOOTER */
.footer {
  background:#222;
  color:white;
  text-align:center;
  padding:25px;
}
.lista-bairros li {
  margin-bottom: 10px;
}

.lista-bairros a {
  text-decoration: none;
  color: #0f4c81;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
}

.lista-bairros a:hover {
  color: #25D366;
  transform: translateX(5px);
}

/* RESPONSIVO */
@media (max-width:768px){

  .menu-links {
    display:none;
    flex-direction:column;
    background:#0f4c81;
    position:absolute;
    top:60px;
    width:100%;
  }

  .menu-links.active {
    display:flex;
  }

  .menu-toggle {
    display:block;
  }

  .bairros-container {
    flex-direction:column;
  }

  .bairros-left,
  .bairros-right {
    width:100%;
  }

}