@charset "utf-8";
/* CSS Document */

/* === Morada Minha — css_principal.css ===
   Objetivo: estilos base compartilhados por home, páginas internas “p/”, artigos, cabeçalho, capa, sessões e footer.
   Observações:
   - Mantida a mesma ordem de seletores; apenas comentários e pequenas trocas para variáveis.
   - Cabeçalho com variáveis e resets leves (opcional).
*/

/* === Variáveis e base (opcional) === */
:root{
  --accent-gold:#f7b122;      /* dourado destaque */
  --brand-blue:#004aad;       /* azul botões/CTA */
  --brand-blue-2:#0066ff;     /* azul gradiente */
  --brand-indigo:rgba(70,56,255,1); /* indigo gradiente */
  --bg:#fff;                  /* cor de fundo padrão */
  --text:#333;                /* cor de texto padrão */
}
/* html{box-sizing:border-box}
*,*::before,*::after{box-sizing:inherit} */
img{max-width:100%;height:auto}

/* === Base tipografia/elementos === */
body {
  font-family: 'Overpass', sans-serif;
  background-color: var(--bg); /* era rgba(255,255,255,1) */
  color: var(--text);
  height: auto;
  margin: 0px 0px 0px 0px;	
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Atenção: hr é usado como espaçador vertical global */
hr { height: 100px; width: 0px; margin: auto 0px auto 0px; }

h3 { margin: 0px; font-size: 14px; }
h4 { margin: 0px; font-size: 12px; }

/* ===================== CAPA / HERO ===================== */
#capa { position: relative; }
#capa { }
#capa img { height: auto; width: 100%; }

/* Texto sobre a capa (overlay) */
#capa .texto{
  position: absolute;
  z-index: 9998;
  text-align: center;
  margin: 20% auto auto auto;
  width: 100%;
  color: white;
}
#capa .texto h2{ font-size: 200%; margin: 0px; }
#capa .texto h3{ font-size: 150%; }
/* Botão da capa */
#capa .texto button{
  padding: 10px 20px;
  background-color: var(--accent-gold); /* era #f7b122 */
  border-radius: 8px;
  border: none;
}
.capa-texto { display: flex; }

/* ===================== EMPREENDIMENTOS (seção azul/dourado) ===================== */
#empreendimentos {
  /*background-color: rgba(70,56,255,1);*/
  background-image: linear-gradient(135deg, var(--brand-indigo), var(--brand-blue-2), rgb(48, 77, 216));
  color: rgba(255,255,255,1);
}
#empreendimentos h1{ margin: 0px; color: #ffffff; }
#empreendimentos h2{ margin: 10px 0px 50px 0px; color: var(--accent-gold); }
#empreendimentos .i{ color: black; }

/* Nota: em partes/conteudo.php o id é "Empreendimentos" (E maiúsculo).
   A cor/gradiente normalmente vem de .azul-dourado usada lá. */

/* ===================== WHATSAPP (seção de conteúdo) ===================== */
#whatsapp {
  background-color: var(--accent-gold); /* era #f7b122 */
  color: rgba(255,255,255,1);
  text-align: center;
  padding: 4% 0px;
}
#whatsapp h1{ padding: 4% 0px; margin: 0px; color: black; }
#whatsapp .botoes{ margin: 0px 30%; }
#whatsapp img{ width: 20%; margin: 0px auto -30px; }
/* Botão interno destacado em azul */
#whatsapp .i{
  background-color: var(--brand-blue);  /* era #004aad */
  border-color: var(--brand-blue);
}

/* ===================== UTILITÁRIOS ===================== */
.none { display: none; }
.pelicula { background-image: linear-gradient(135deg, rgb(54, 230, 181), rgba(0, 8, 255, 0.9), rgba(159, 48, 216, 0.8)); }
.div-black { background: rgba(0,0,0,.7); height: 90px; margin: 0px auto 0px auto; }

/* ===================== HOME HERO ===================== */
.mm-home-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 34px;
  background: linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
  color: #16324f;
}
.mm-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(17,70,126,.08), rgba(17,70,126,0) 34%),
    radial-gradient(circle at bottom right, rgba(247,177,34,.12), rgba(247,177,34,0) 28%);
  pointer-events: none;
}
.mm-home-hero-inner {
  padding: 0 0 18px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 28px;
  align-items: center;
}
.mm-home-hero-copy {
  padding: 18px 0 0;
}
.mm-home-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: #ffffff;
  border: 1px solid rgba(22,50,79,.10);
  color: #32506e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mm-home-hero h1 {
  margin: 0 0 16px;
  max-width: 580px;
  font-size: 54px;
  line-height: .94;
  letter-spacing: -.03em;
  color: #15314e;
}
.mm-home-hero p {
  max-width: 500px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #52667d;
}
.mm-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.mm-home-hero-contact {
  margin-top: 14px;
}
.mm-home-hero-contact a {
  color: #355473;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(53,84,115,.28);
  text-underline-offset: 3px;
}
.mm-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  box-sizing: border-box;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.mm-home-btn:hover {
  filter: brightness(1.04);
}
.mm-home-btn-primary {
  background: #f7b122;
  color: #1b2a3a;
  box-shadow: 0 14px 28px rgba(177,126,12,.18);
}
.mm-home-btn-secondary {
  background: #ffffff;
  color: #17324f;
  border: 1px solid rgba(23,50,79,.14);
  box-shadow: 0 10px 24px rgba(17,48,80,.08);
}
.mm-home-hero-visual {
  position: relative;
}
.mm-home-hero-figure {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  margin: 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(6,18,31,.04), rgba(6,18,31,.24)),
    url('/imagens/slide-banner/construcao-pessoas.webp') center/cover no-repeat;
  box-shadow: 0 22px 48px rgba(18,49,80,.16);
}
.mm-home-hero-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,24,40,.02) 0%, rgba(10,24,40,.26) 100%),
    linear-gradient(90deg, rgba(10,24,40,.22) 0%, rgba(10,24,40,0) 46%);
}
.mm-home-hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 28px rgba(12,37,64,.14);
}
.mm-home-hero-badge strong {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6b7c90;
}
.mm-home-hero-badge span {
  display: block;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 700;
  color: #17324f;
}
.mm-home-hero-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.mm-home-hero-summary-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(20,50,79,.08);
}
.mm-home-hero-summary-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #677b90;
}
.mm-home-hero-summary-item span {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  color: #17324f;
}

/* ===================== HOME HERO ALT ===================== */
.mm-home-hero-alt {
  padding: 28px 0 34px;
  background: #eef3f7;
}
.mm-home-hero-alt-inner {
  display: grid;
  grid-template-columns: minmax(320px, .96fr) minmax(0, 1.04fr);
  gap: 22px;
  align-items: stretch;
}
.mm-home-hero-alt-media {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8,21,36,.06), rgba(8,21,36,.24)),
    url('/imagens/slide-banner/construcao-pessoas.webp') center/cover no-repeat;
  box-shadow: 0 20px 40px rgba(19,50,79,.14);
}
.mm-home-hero-alt-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,30,48,.04) 0%, rgba(12,30,48,.42) 100%),
    linear-gradient(90deg, rgba(12,30,48,.26) 0%, rgba(12,30,48,0) 44%);
}
.mm-home-hero-alt-stamp {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 28px rgba(12,37,64,.14);
}
.mm-home-hero-alt-stamp strong {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6c7c8e;
}
.mm-home-hero-alt-stamp span {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  color: #16324f;
}
.mm-home-hero-alt-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(19,50,79,.08);
}
.mm-home-hero-alt-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: #f3f7fb;
  border: 1px solid rgba(20,50,79,.08);
  color: #4c647d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mm-home-hero-alt h1 {
  margin: 0 0 14px;
  max-width: 520px;
  font-size: 50px;
  line-height: .95;
  letter-spacing: -.03em;
  color: #14314d;
}
.mm-home-hero-alt p {
  max-width: 470px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #5b6e83;
}
.mm-home-hero-alt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.mm-home-hero-alt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 16px;
  color: #6e8094;
  font-size: 14px;
}
.mm-home-hero-alt-meta a {
  color: #2f5274;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(47,82,116,.24);
  text-underline-offset: 3px;
}

/* ===================== HOME HERO V3 ===================== */
.mm-home-hero-v3 {
  padding: 24px 0 40px;
  background: linear-gradient(180deg, #f1f5f8 0%, #eef3f7 100%);
}
.mm-home-hero-v3 .mm-home-container {
  position: relative;
}
.mm-home-hero-v3-media {
  min-height: 420px;
  margin: 0;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(10,27,45,.22) 0%, rgba(10,27,45,.06) 38%, rgba(10,27,45,.18) 100%),
    url('/imagens/slide-banner/construcao-pessoas.webp') center/cover no-repeat;
  box-shadow: 0 22px 50px rgba(18,49,80,.12);
}
.mm-home-hero-v3-card {
  width: min(560px, calc(100% - 48px));
  margin: -96px 0 0 32px;
  padding: 26px 28px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 36px rgba(18,49,80,.12);
  position: relative;
}
.mm-home-hero-v3-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: #f3f7fb;
  border: 1px solid rgba(20,50,79,.08);
  color: #4c647d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mm-home-hero-v3 h1 {
  margin: 0 0 12px;
  max-width: 480px;
  font-size: 46px;
  line-height: .96;
  letter-spacing: -.03em;
  color: #14314d;
}
.mm-home-hero-v3 p {
  max-width: 460px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #5b6e83;
}
.mm-home-hero-v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.mm-home-hero-v3-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 16px;
}
.mm-home-hero-v3-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f4f7fa;
  color: #5f748a;
  font-size: 13px;
  font-weight: 700;
}
.mm-home-hero-v3-meta a {
  color: #2f5274;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(47,82,116,.24);
  text-underline-offset: 3px;
}

/* ===================== HOME CARDS ===================== */
.mm-home-cards {
  padding: 42px 0px;
}
.shape.mm-home-cards {
  padding: 42px 0px;
}
.mm-home-container {
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: left;
}
.mm-home-section-head {
  margin-bottom: 20px;
  text-align: left;
}
.mm-home-section-head h2 {
  margin: 0px;
  font-size: 40px;
  line-height: .95;
}
.mm-home-section-head p {
  margin: 8px 0px 0px;
  font-size: 15px;
  line-height: 1.5;
}
.mm-home-card-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 10px;
  scroll-snap-type: x proximity;
}
.mm-home-card-grid::-webkit-scrollbar {
  height: 8px;
}
.mm-home-card-grid::-webkit-scrollbar-thumb {
  background: rgba(18, 51, 91, .22);
  border-radius: 999px;
}
.mm-home-card {
  flex: 0 0 calc(50% - 9px);
  min-width: 420px;
  scroll-snap-align: start;
  background: rgba(255,255,255,.96);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(17,47,84,.08);
  box-shadow: 0 16px 30px rgba(12, 37, 64, 0.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mm-home-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(12, 37, 64, 0.14);
}
.mm-home-card-media {
  min-height: 260px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.mm-home-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(9,21,36,.08) 100%);
}
.mm-home-card-media.jm-garagens {
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.22)), url('/imagens/paginas/jardins-mangueiral-garagem.jpg');
}
.mm-home-card-media.jm-reformas {
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.22)), url('/imagens/garagens/jardins-mangueiral/quintal.jpg');
}
.mm-home-card-media.emp-varjao {
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.22)), url('/imagens/empreendimentos/varjao/galeria/externo/ext-01.jpg');
}
.mm-home-card-media.emp-rf2 {
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.22)), url('/imagens/empreendimentos/riacho-fundo-2/casa-riachofundo2-compintura.jpeg');
}
.mm-home-card-copy {
  padding: 20px 20px 18px;
  text-align: left;
}
.mm-home-label {
  display: inline-block;
  padding: 0 0 6px;
  color: #6b7b91;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.mm-home-card-copy h3 {
  margin: 2px 0px 10px;
  font-size: 40px;
  line-height: .92;
  letter-spacing: -.03em;
  color: #17304b;
}
.mm-home-card-copy p {
  margin: 0px;
  font-size: 14px;
  line-height: 1.52;
  color: #64758b;
}
.mm-home-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.mm-home-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f6fa;
  color: #20456d;
  font-size: 11px;
  font-weight: 700;
}
.mm-home-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e7edf5;
  text-align: left;
}
.mm-home-card-meta {
  color: #7d8ea5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.mm-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  box-sizing: border-box;
  background: #16375b;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(12, 37, 64, 0.12);
}
.mm-home-link:hover {
  filter: brightness(1.05);
}

.mm-home-jm {
  background: linear-gradient(135deg, #4a9a63 0%, #357c4b 55%, #285f39 100%);
}
.mm-home-jm .mm-home-section-head h2 {
  color: #ffffff;
}
.mm-home-jm .mm-home-section-head p {
  color: #dbe9de;
}
.mm-home-jm .mm-home-card:nth-child(2) {
  border-top: 4px solid rgba(247,177,34,.55);
}
.mm-home-jm .mm-home-card-media::after {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(49,90,63,.08) 100%);
}
.mm-home-jm .mm-home-label {
  color: #b47a12;
}
.mm-home-jm .mm-home-link {
  background: #f7b122;
  color: #1b2a3a;
}
.mm-home-jm .mm-home-card-meta {
  color: #8a6a2c;
}

.mm-home-emp {
  background: radial-gradient(circle at top right, rgba(255,255,255,.55), rgba(255,255,255,0) 24%), linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
}
.mm-home-emp .mm-home-section-head h2 {
  color: #16375b;
}
.mm-home-emp .mm-home-section-head p {
  color: #66758b;
}
.mm-home-emp .mm-home-card {
  background: rgba(255,255,255,.97);
  border-top: 4px solid rgba(11,105,200,.24);
  box-shadow: 0 16px 30px rgba(17, 56, 102, 0.08);
}
.mm-home-emp .mm-home-card:nth-child(2) {
  border-top-color: rgba(65,125,214,.34);
}
.mm-home-emp .mm-home-label {
  color: #0b69c8;
}
.mm-home-emp .mm-home-link {
  background: #16375b;
  color: #ffffff;
}

/* Texto grande sobre imagens/banners (overlay) */
.enunciado {
  position: absolute;
  z-index: 9998;
  text-align: center;
  margin: 210px auto auto auto;
  width: 100%;
}
.enunciado h1 {
  margin: 0px;
  font-size: 60px;
  color: white;
  text-shadow: 1px 1px 5px rgba(0,0,0,.5);
}
.enunciado h3 {
  font-size: 18px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,.5);
}

/* Botões genéricos */
.botoes { margin-top: 50px; }
.botao {
  font-size: 18px;
  margin: 10px;
  padding: 5px 60px;
  background-color: chocolate;
  color: white;
  border-style: solid;
  border-radius: 4px;
  cursor: pointer;
}
/* Variantes rápidas de cor (dourado/azul) */
.i  { background-color: var(--accent-gold); border-color: var(--accent-gold); }
.ii { background-color: dodgerblue;        border-color: dodgerblue; }

/* ===================== CAPA / HERO DA HOME (mobile-first) ===================== */
.mm-capa {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.mm-capa-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 72% 28%;
  background-repeat: no-repeat;
}
.mm-capa-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,15,31,.25) 0%, rgba(6,15,31,.5) 52%, rgba(4,10,22,.9) 100%);
}
.mm-capa-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px 44px;
  color: #ffffff;
}
.mm-capa-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f7b122;
}
.mm-capa-title {
  margin: 0 0 14px;
  max-width: 640px;
  font-size: clamp(30px, 8vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.mm-capa-sub {
  margin: 0 0 26px;
  max-width: 520px;
  font-size: clamp(15px, 4vw, 19px);
  line-height: 1.5;
  color: rgba(255,255,255,.9);
}
.mm-capa-acoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mm-capa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.mm-capa-btn--primary { background: #f7b122; color: #1b2a3a; box-shadow: 0 10px 24px rgba(247,177,34,.3); }
.mm-capa-btn--ghost {
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.mm-capa-btn:hover { transform: translateY(-2px); }

/* Tablet/desktop */
@media (min-width: 560px) {
  .mm-capa-acoes { flex-direction: row; flex-wrap: wrap; }
  .mm-capa-btn { width: auto; }
}
@media (min-width: 900px) {
  .mm-capa { min-height: 82vh; }
  .mm-capa-inner { padding: 0 40px 64px; }
}

/* ===================== BLOCO / LAYOUTS DE SESSÃO ===================== */
.shape { margin: 0px; padding: 0px; text-align: center; }
.inscricao { background-color: rgba(252,252,252,1); }

/* Paletas pré-montadas para retângulos/seções */
.azul-dourado {
  /*background-color: rgba(70,56,255,1);*/
  background-image: linear-gradient(135deg, var(--brand-indigo), var(--brand-blue-2), rgb(48, 77, 216));
  color: rgba(255,255,255,1);
}
.azul-dourado h1{ color: var(--accent-gold); }
.dourado-azul { background-color: var(--accent-gold); }
.cinza-dourado {
  background-image: linear-gradient(135deg, rgb(20 6 6), rgb(28 28 28), rgb(20 6 6));
  color: rgba(255, 255, 255, 1);
}
.cinza-dourado h1{ color: var(--accent-gold); }
.branco-preto{
  background-color: white;
  /*background-image: linear-gradient(135deg, rgb(235 233 255), #f1f1f1, rgb(195 197 207));*/
  color: rgba(20, 20, 20, 1);
}
.branco-preto h1{ color: rgba(20, 20, 20, 1); }

/* Cartão/retângulo de seção com imagem e texto lado a lado */
.parceiro { background-color: rgba(245,245,245,1); color: black; }
.retangulo {
  display: inline-flex;
  padding: 0px;
  height: auto;
  max-height: 700px;
  width: 100%;
  margin: 0px;
  box-shadow: 1px 1px 10px rgba(0,0,0,.5);
}
.retangulo img { border-radius: 50% 5%; height: auto; width: 100%; }

.shape .texto{ width: 100%; padding: 5% 8%; }
.shape .texto h1{ font-size: 28pt; }
.shape .texto h3{ font-size: 14pt; }

/* Variação de cidades (título grande) */
.shape.cidades h1{
  color: #134251;
  font-size: 34pt;
  padding: 90px 0px 0px;
  margin: 0px;
}

/* Grade de 3 colunas com imagens circulares */
.box-3xline{ display: flex; padding: 0px 16%; }
.img-3xline{ width: 33.333%; padding: 5%; }
.img-3xline img{ width: 80%; border-radius: 50%; }
.img-3xline p{
  margin: 0;
  color: #1d4a58;
  text-transform: uppercase;
  padding: 10px;
  bottom: 0; left: 0; right: 0;
  text-align: center;
}

/* Layout das duas colunas da seção */
.lado-ilustrado { padding: 5%; width: 40%; }
.lado-descricao { padding: 5%; width: 40%; align-content: center; }
.lado-descricao h1{ font-size: 30px; }
.lado-descricao h3{ font-size: 16px; }

/* Utilitário/overlay de debug? */
.azul {
  margin: 0px;
  background-color: rgba(0,255,0,1);
  height: 100%; width: 100%; position: absolute;
}

/* Títulos de tópicos (faixas pretas com título) */
.topicos { }
.topicos h1 { text-align: center; }
.topicos h2 {
  font-size: 20px;
  margin: 30px 11% 5px 11%;
  padding: 4px 0px 4px 5%;
  border-radius: 5px;
  background-color: rgba(0,0,0,1);
  color: white;
}

/* ===================== NAVEGAÇÃO / MENU FIXO ===================== */
/* Nova nav alinhada ao footer */
.mm-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 0 20px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
/* Hamburger em CSS puro — só aparece no mobile (ver css_mobile.css) */
.mm-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: #0b69c8;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.mm-nav-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
}
.mm-nav-logo img {
  height: 42px;
  display: block;
}
.mm-nav-actions {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  align-self: stretch;
  margin-right: 22px;
}
.mm-nav-link {
  position: relative;
  font-weight: 600;
  font-size: 14px;
  color: #1f2a44;
  text-decoration: none;
  height: 100%;
  display: inline-flex;
  align-items: center;
  transition: color .15s ease;
}
.mm-nav-link:hover { color: #004aad; }
.mm-nav-link.is-active { color: #004aad; }
.mm-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 2px;
  border-radius: 2px;
  background: #004aad;
}
.mm-nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #f7b122;
  color: #1b2a3a;
  box-shadow: 0 6px 14px rgba(247,177,34,.32);
  transition: transform .15s ease, box-shadow .15s ease;
}
.mm-nav-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(247,177,34,.45);
}
.mm-nav-drawer {
  position: absolute;
  top: 60px;
  left: 12px;
  right: 12px;
  display: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
  padding: 10px;
}
.mm-nav-drawer-link {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: #1f2a44;
  text-decoration: none;
  font-weight: 600;
}
.mm-nav-drawer-link.is-active {
  background: #eaf1ff;
  color: #004aad;
}
.mm-nav-drawer-cta {
  display: block;
  margin-top: 6px;
  padding: 13px 14px;
  border-radius: 10px;
  background: #f7b122;
  color: #1b2a3a;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}
.show { display: block; }

/* ===================== CONTATO (bloco com parallax) ===================== */
.contato {
  padding: 0px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100%;
}
.contato .pelicula { width: 100%; height: auto; }
.contato div .lado-descricao{ padding: 10% 15% 0px 15%; width: 30%; }

/* Ajustes de layout diversos */
.tres-partes { display: block; margin: 0px; }
.caixa-texto { margin: 0px auto 0px 5%; }

/* ===================== NAV LEGADA (REMOVIDA) ===================== */

/* ===================== WHATSAPP (ÍCONE FIXO) ===================== */
.whatsapp-icon img {
  width: 64px; height: 64px; z-index: 9999;
  position: fixed; left: 4%; bottom: 15%;
  transition: transform .2s ease;
  border-radius: 0;
}
.whatsapp-icon img:hover { transform: scale(1.05); }

/* ===================== SLIDER PRODUTOS (cards) ===================== */
.slider_produtos {
  /* container do slider */
  /*background: rgba(255,0,0,1);*/
  margin: 5px 0px 30px 0px;
  padding: 0px 13% 0px 13%;
  text-align: center;
}
.slider_produtos-parte {
  margin: 10px 20px 10px 20px;
  padding: 10px;
  text-align:justify;
  /*background-color: #0F0;*/
}
.slider_produtos-parte h1 {
  font-size: 18px; position: fixed; margin: 25px 0px 0px 25px; opacity: 1;
}
.slider_produtos-parte h2 {
  font-size: 14px; text-align: right; margin: -50px 10px 0px 10px; opacity: 1;
}
.slider_produtos-parte a h1 { text-shadow: 1px 1px 2px rgba(0,0,0,1); opacity: 0; }
.slider_produtos-parte a h2 { text-shadow: 1px 1px 2px rgba(0,0,0,1); opacity: 0; }
.slider_produtos-parte a:hover h1 { opacity: 1; }
.slider_produtos-parte a:hover h2 { opacity: 1; }
.slider_produtos-parte a:hover { color: rgba(255,255,255,1); text-decoration: blink; opacity: 1; }
.slider_produtos-parte img{
  margin: 0px auto 10px auto; border: 9px rgba(230,230,230,1) solid; width: 100%;
}

/* ===================== PARALLAX (mm-play) ===================== */
/* IDs específicos para variar a imagem de fundo */
#contato { background-image: url(../imagens/slide-banner/img-01.jpg); }
#mm-play  { background-image: url(../imagens/slide-banner/img-01.jpg); }
#mm-play-a{ background-image: url(../imagens/slide-banner/img-02.jpg); }
#mm-play-b{ background-image: url(../imagens/slide-banner/img-03.jpg); }
#mm-play-c{ background-image: url(../imagens/slide-banner/img-04.jpg); }
#mm-play-d{ background-image: url(../imagens/slide-banner/img-05.jpg); }

/* Container parallax (banner grande) */
#mm-play,
#mm-play-a,
#mm-play-b,
#mm-play-c,
#mm-play-d {
  background-color: black;
  background-repeat: repeat;
  -webkit-box-shadow:-20px 0 20px 5px rgba(0,0,0,0.7);
  -moz-box-shadow:-20px 0 20px 5px rgba(0,0,0,0.7);
  -ms-box-shadow:-20px 0 20px 5px rgba(0,0,0,0.7);
  -o-box-shadow:-20px 0 20px 5px rgba(0,0,0,0.7);
  box-shadow:-20px 0 20px 5px rgba(0,0,0,0.7);
}

/* Estrutura interna do bloco parallax (texto + vídeo) */
.mm-play {
  display: inline-flex;
  opacity: 10px; /* legado */
  padding: 30px auto 30px auto;
  margin: 0 auto; width: 100%;
  position: relative; min-height: 100%;
  text-shadow: 0 0 10px rgba(0,0,0,.7);
  background-position: 50% 0; background-repeat: no-repeat; background-attachment: fixed; background-size: 100%;
}
.info-i { height: auto; width: 100%; padding: 0px; margin: auto; }
.info-i img { height: auto; width: 84.25%; display: block; margin: auto 8px auto auto; }

/* Vídeo responsivo */
.video-container { position: relative; padding-bottom: 56.25%; overflow: hidden; }
.video-container iframe,
.video-container object,
.video-container embed { position: absolute; width: 100%; height: 100%; }

.mm-play .info {
  /*background-color: rgba(255,255,255,1);*/
  border-right: 2px rgba(0,0,0,.5) dotted;
  margin: 30px 2% 30px 2%;
  padding: 0px 20px 0px 0px;
  height: auto; width: 45%;
}
.mm-play .video {
  margin: 30px 2% 30px 0px;
  height: auto; width: 45%;
}

/* ===================== NOTÍCIAS (lista resumida) ===================== */
.noticias {
  display: inline-flex;
  height: auto; width: 100%;
  background-color: rgba(240,240,240,1);
}
.noticias .lista { margin: 30px 2% 30px 2%; height: auto; width: 45%; }
.caixa { }
.caixa ul { margin-left: 15%; margin-top: 30px; width: 80%; }
.caixa ul li { display: inline-block; vertical-align: middle; }
.miniatura { margin-right: 20px; }
.miniatura img { border-radius: 20%; border: 3px solid white; height: 80px; width: 80px; }
.descricao { padding-bottom: 10px; }
.descricao h5 { margin: 0px; text-transform: uppercase; }
.descricao p { margin: 2px auto 2px auto; max-inline-size: 230px; font-size: 13px; }
.descricao p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.descricao span { color: #3498DB; }
.noticias .monitor { margin: 30px 2% 30px 0px; height: auto; width: 45%; }

/* ===================== NOTICIAS DESTAQUE (slider home) ===================== */
#noticias-destaque {
  background: #f4f7fb;
  color: #16243a;
  padding: 36px 0px 30px;
}
.noticias-slider-topo {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto 12px;
  display: block;
}
.noticias-slider-topo .topicos h1 {
  margin: 0px;
  text-align: left;
  color: #16243a;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.noticias-slider-topo .topicos h1 a {
  color: #16243a;
}
.noticias-slider-topo .noticias-sub {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #64758b;
}
.noticias-slider-shell {
  position: relative;
  overflow: hidden;
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px 0px 8px;
}
.noticias-slider-shell::before,
.noticias-slider-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
  display: none;
}
.noticias-slider-track {
  padding: 6px 0px;
}
.noticia-destaque {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0px 7px;
  width: 300px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(12, 37, 64, 0.10);
  transform: scale(.97);
  transition: transform .25s ease, box-shadow .25s ease;
}
.noticia-destaque-bg {
  flex: none;
  width: 100%;
  height: 178px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.noticia-destaque:hover {
  box-shadow: 0 20px 44px rgba(12, 37, 64, 0.18);
}
.noticia-destaque.principal,
.noticias-slider-track .slick-center .noticia-destaque,
.noticias-slider-track .slick-current .noticia-destaque {
  transform: scale(1);
}
.noticia-destaque .descricao {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
  background: #ffffff;
}
.noticia-destaque .descricao-conteudo {
  display: flex;
  flex-direction: column;
}
.noticia-destaque .descricao h3 {
  margin: 0px;
  color: #16243a;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: none;
  max-width: none;
  text-shadow: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.noticia-destaque .descricao p {
  margin: 8px 0px 0px;
  max-inline-size: none;
  color: #64758b;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.noticia-destaque .descricao .tag {
  order: -1;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0px 11px;
  margin: 0 0 10px;
  border-radius: 999px;
  background: #eef3ff;
  border: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #004aad;
}
.noticia-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  color: #004aad;
  font-size: 13.5px;
  font-weight: 700;
  transition: gap .18s ease;
}
.noticia-destaque:hover .noticia-cta { gap: 10px; }
/* ── Destaques: cards estilo /artigos/noticias.php no carrossel slick ── */
#noticias-destaque .news-card {
  width: 300px;
  margin: 0 9px;
  text-align: left;
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}
#noticias-destaque .news-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
#noticias-destaque .news-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8f0e8;
  flex-shrink: 0;
  text-decoration: none;
}
#noticias-destaque .news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s;
}
#noticias-destaque .news-card:hover .news-card-img { transform: scale(1.04); }
#noticias-destaque .news-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f0f4f1;
  color: #94a3b8;
  font-size: 36px;
}
#noticias-destaque .news-card-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0,74,173,.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
#noticias-destaque .news-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#noticias-destaque .news-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
#noticias-destaque .news-card-dot { opacity: .5; }
#noticias-destaque .news-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  margin: 0 0 10px;
}
#noticias-destaque .news-card-title a { color: inherit; text-decoration: none; transition: color .14s; }
#noticias-destaque .news-card-title a:hover { color: #004aad; }
#noticias-destaque .news-card-excerpt {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}
#noticias-destaque .news-card-link {
  font-size: 13px;
  font-weight: 700;
  color: #004aad;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .14s;
  margin-top: auto;
}
#noticias-destaque .news-card-link:hover { gap: 8px; }

/* Card principal (primeiro / em destaque) — maior */
#noticias-destaque .news-card--featured {
  flex: 0 0 min(400px, 88vw);
  width: min(400px, 88vw);
  border-color: #d6e3f5;
  box-shadow: 0 6px 22px rgba(0,74,173,.12);
}
#noticias-destaque .news-card--featured .news-card-title { font-size: 21px; }
#noticias-destaque .news-card--featured .news-card-excerpt { font-size: 14.5px; }
#noticias-destaque .news-card--featured .news-card-badge { background: #f7b122; color: #1b2a3a; }
#noticias-destaque .news-card--featured .news-card-link {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 18px;
  background: #004aad;
  color: #fff;
  border-radius: 10px;
}
#noticias-destaque .news-card--featured .news-card-link:hover { color: #fff; gap: 8px; }

/* Setas do carrossel */
#noticias-destaque .slick-prev,
#noticias-destaque .slick-next {
  width: 42px;
  height: 42px;
  z-index: 3;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(12,37,64,.18);
  border: none;
  font-size: 0;
}
#noticias-destaque .slick-prev { left: 4px; }
#noticias-destaque .slick-next { right: 4px; }
#noticias-destaque .slick-prev:hover,
#noticias-destaque .slick-next:hover { background: #f0f5ff; }
#noticias-destaque .slick-prev::before,
#noticias-destaque .slick-next::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #004aad;
  border-right: 2px solid #004aad;
  opacity: 1;
}
#noticias-destaque .slick-prev::before { transform: rotate(-135deg); margin-left: 4px; }
#noticias-destaque .slick-next::before { transform: rotate(45deg); margin-right: 4px; }

.noticias-slider-rodape {
  width: 92%;
  max-width: 1100px;
  margin: 10px auto 0px;
  text-align: center;
}
.noticias-slider-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0px 18px;
  border-radius: 999px;
  background: #004aad;
  border: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 74, 173, 0.22);
}
.noticias-slider-shell .slick-list {
  overflow: visible;
}
.noticias-slider-shell .slick-track {
  display: flex !important;
  align-items: stretch;
}
.noticias-slider-shell .slick-slide {
  height: auto;
}
.noticias-slider-shell .slick-slide > div {
  height: 100%;
}

/* ===================== FOOTER ===================== */
footer.mm-footer {
  background: #0f2a33;
  color: #eef4fb;
  margin: 0px;
  padding: 28px 0px 20px;
}
.mm-footer-inner {
  width: 90%;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.mm-footer-row {
  display: grid;
  gap: 20px;
}
.mm-footer-brand p {
  margin: 8px 0 12px;
  font-size: 15px;
  color: #cfe0f3;
}
.mm-footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f2f6ff;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.mm-footer-logo { height: 72px; width: auto; display: block; }
.mm-footer-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.mm-badge {
  background: rgba(255,255,255,.1);
  color: #e7f0ff;
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.mm-footer-cta {
  background: #102f3a;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}
.mm-footer-cta h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #fff;
}
.mm-footer-cta p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #d8e7fb;
}
.mm-footer-actions { display: grid; gap: 8px; }
.mm-btn-primary,
.mm-btn-outline {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}
.mm-btn-primary {
  background: #f7b122;
  color: #1b2a3a;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}
.mm-btn-outline {
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
}
.mm-cta-bubbles { margin-top: 12px; display: grid; gap: 8px; }
.mm-cta-bubble {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  padding: 10px 12px;
}
.mm-cta-bubble strong { display: block; font-size: 13px; color: #fff; }
.mm-cta-bubble span { display: block; font-size: 12px; color: #d8e7fb; }
.mm-footer-links {
  display: grid;
  gap: 8px;
  font-size: 14px;
  align-content: start;
}
.mm-footer-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #e8f1ff;
  font-weight: 700;
  margin-bottom: 4px;
}
.mm-footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #f5f9ff;
  font-weight: 600;
}
.mm-footer-link:hover { background: rgba(255,255,255,.16); color: #ffffff; }
.mm-footer-contacts {
  width: 90%;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.mm-footer-contact-head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #e8f1ff;
  font-weight: 700;
}
.mm-footer-contacts a {
  color: #eaf2ff;
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.mm-footer-contacts a:hover { background: rgba(255,255,255,.16); }
.mm-contact.instagram {
  border-color: rgba(247,177,34,.5);
  box-shadow: 0 6px 14px rgba(247,177,34,.12);
}
.mm-pill {
  margin-left: auto;
  background: #f7b122;
  color: #1b2a3a;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.mm-icon { height: 18px; width: auto; }

@media (min-width: 900px) {
  .mm-footer-inner {
    width: 80%;
  }
  .mm-footer-row-primary {
    grid-template-columns: 1.2fr 1.4fr;
    align-items: start;
  }
  .mm-footer-row-secondary {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .mm-footer-actions {
    grid-template-columns: 1fr 1fr;
  }
  .mm-cta-bubbles {
    grid-template-columns: repeat(3, 1fr);
  }
  .mm-footer-contacts {
    width: 80%;
    grid-template-columns: 1fr;
  }
  .mm-footer-contact-head {
    grid-column: 1 / -1;
  }
  .mm-contact.address {
    grid-column: 1 / -1;
  }
}

.sem-borda { border: none; }

/* ===================== P (PÁGINAS INTERNAS) ===================== */
.formulario {
  background-color: green;
  background-image: url(../banco_de_imagens/familia-unida.jpg);
}
.formulario h1{ font-size:9px; }

/* ===================== ARTIGOS / VIEW ARTICLE ===================== */
/* css para artigos */
.artigos { padding: 30px; }
/*FIM= css para artigos =FIM*/

.view_article { display: block; height: auto; width: 100%; }
.view_article img { max-width: 500px; }

.artigo {
  /* coluna principal do artigo */
  padding: 20px 2%;
  height: auto;
  width: 66%;
  text-align: justify;
}
.lateral-artigos {
  /* coluna lateral (destaques/links) */
  padding: 20px 2%;
  height: auto;
  width: 26%;
}

/* ======= Fim ======= */
/* ===================== EMPREENDIMENTOS (DETALHES) ===================== */
.hero-empreendimento {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-empreendimento::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.75), rgba(0,0,0,.35));
}
.hero-empreendimento__conteudo {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 600px;
  margin-left: 6%;
  padding: 40px;
  background: rgba(0,0,0,.55);
  border-left: 4px solid var(--accent-gold);
  border-radius: 8px;
}
.hero-empreendimento__conteudo .badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.hero-empreendimento__conteudo h1 {
  margin: 10px 0;
  font-size: 36px;
}
.hero-empreendimento__conteudo p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.hero-empreendimento--varjao {
  background-image: url('../imagens/empreendimentos/varjao/galeria/externo/ext-01.jpg');
}
.hero-empreendimento--rf2 {
  background-image: url('../imagens/empreendimentos/riacho-fundo-2/casa-riachofundo2-compintura.jpeg');
}
.hero-empreendimento--jm {
  background-image: url('../imagens/garagens/jardins-mangueiral/garagem-premium.png');
  background-position: center;
}
.hero-empreendimento--jm::after {
  background: linear-gradient(120deg, rgba(0,0,0,0.45), rgba(0,0,0,0.2), rgba(0,0,0,0.05));
}

.empreendimento-detalhe {
  padding: 60px 8%;
  background: #f9f9f9;
}
.empreendimento-detalhe__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.empreendimento-detalhe__grid h2,
.empreendimento-detalhe__grid h3 {
  color: #0d3959;
}
.empreendimento-detalhe__grid ul,
.empreendimento-detalhe__grid ol {
  padding-left: 20px;
  color: #424242;
  line-height: 1.7;
}
.empreendimento-detalhe__cta {
  text-align: center;
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.empreendimento-detalhe__cta h2 {
  margin: 0 0 10px;
  color: #0d3959;
}
.empreendimento-detalhe__cta p {
  max-width: 600px;
  margin: 0 auto 20px;
}
.modelos-garagem {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 24px;
  margin-top: 20px;
}
.modelos-garagem > div {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.modelos-garagem h3 {
  margin-top: 0;
  color: #0d3959;
}
.modelos-garagem ul {
  padding-left: 18px;
  color: #424242;
  line-height: 1.6;
}
/* Modelos (cards) - Garagens JM */
.modelos-section {
  padding: 60px 0;
  text-align: center;
}
.modelos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.modelo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.modelo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.modelo-card h3 {
  margin: 16px 16px 8px;
  color: #0d3959;
}
.modelo-card p {
  margin: 0 16px 12px;
  color: #444;
  line-height: 1.6;
}
.modelo-card ul {
  margin: 0 16px 20px;
  padding-left: 18px;
  color: #444;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .modelo-card img {
    height: 180px;
  }
  .hero-empreendimento--jm {
    min-height: 420px;
  }
}

/* ====== Garagens JM (layout novo) ====== */
.jm-page {
  background: #f9f9f9;
  color: #0d3959;
}
.jm-section {
  padding: 60px 0;
}
.jm-container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}
.jm-intro {
  background: #ededed;
}
.jm-intro h1 {
  font-size: 36px;
  margin: 0 0 18px;
}
.jm-intro p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 12px;
  color: #1f2d3d;
}
.jm-heading h2 {
  text-align: center;
  font-size: 32px;
  margin: 0;
}
.jm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}
.jm-grid--fullleft .jm-image {
  margin-left: 0;
  width: 100%;
  max-width: 100%;
}
.jm-grid--fullright .jm-image {
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}
.jm-grid--fullleft .jm-image img,
.jm-grid--fullright .jm-image img {
  border-radius: 10px;
}
.jm-model {
  background: #f5f5f5;
}
.jm-model .jm-container {
  align-items: center;
}
.jm-model--reverse .jm-container {
  direction: rtl;
}
.jm-model--reverse .jm-text,
.jm-model--reverse .jm-image {
  direction: ltr;
}
.jm-text h3 {
  font-size: 28px;
  margin: 0 0 14px;
}
.jm-text h2 {
  font-size: 32px;
  margin: 0 0 18px;
}
.jm-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #1f2d3d;
}
.jm-text ul {
  padding-left: 20px;
  margin: 0 0 16px;
  color: #1f2d3d;
  line-height: 1.6;
  list-style: disc;
}
.jm-text ul li + li {
  margin-top: 4px;
}
.jm-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}
.jm-cta {
  display: inline-block;
  margin-top: 16px;
  background: #f7b122;
  color: #111;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.jm-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.jm-image--tall img {
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .jm-section {
    padding: 42px 0;
  }
  .jm-model--reverse .jm-container {
    direction: ltr;
  }
  .jm-grid {
    grid-template-columns: 1fr;
  }
  .jm-img-right .jm-image {
    order: -1;
  }
  .jm-grid--fullleft .jm-image,
  .jm-grid--fullright .jm-image {
    margin: 0;
    width: 100%;
  }
  .jm-grid--fullleft .jm-image img,
  .jm-grid--fullright .jm-image img {
    border-radius: 10px;
  }
  .jm-intro h1 {
    font-size: 30px;
  }
  .jm-intro p {
    font-size: 18px;
  }
  .jm-image img {
    height: 240px;
  }
  .jm-image--tall img {
    height: auto;
    max-height: none;
  }
}


/* ====== JM — Inter-like clean design ====== */

:root {
  --jm-navy:   #0c1f35;
  --jm-gold:   #f7b122;
  --jm-text:   #1f2a38;
  --jm-muted:  #64748b;
  --jm-bg:     #f8f9fb;
  --jm-border: #e8ecf0;
  --jm-white:  #ffffff;
  --jm-radius: 12px;
}

/* Box model fix — escopo local para não afetar o restante do site */
.jm-page, .jm-page * { box-sizing: border-box; }

/* Page base */
.jm-page {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: var(--jm-text);
  overflow-x: hidden;
}

/* Container */
.jm-container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
.jm-section        { padding: 64px 0; }
.jm-section--gray  { background: var(--jm-bg); }
.jm-section--dark  { background: var(--jm-navy); color: #fff; }

/* Chip badge */
.jm-chip {
  display: inline-block;
  background: rgba(247,177,34,.12);
  color: var(--jm-gold);
  border: 1px solid rgba(247,177,34,.3);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Buttons */
.jm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--jm-radius);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .01em;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
}
.jm-btn:hover          { opacity: .88; transform: translateY(-1px); }
.jm-btn--primary       { background: var(--jm-gold); color: var(--jm-navy); }
.jm-btn--ghost         { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.jm-btn--full          { width: 100%; margin-top: 20px; }
.jm-btn--cta           { height: 56px; padding: 0 36px; font-size: 16px; flex-shrink: 0; }

/* Typography */
.jm-overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--jm-muted);
  margin: 0 0 12px;
}
.jm-overline--gold { color: var(--jm-gold); }
.jm-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--jm-navy);
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -.01em;
}
.jm-title--white { color: #fff; }
.jm-subtitle {
  font-size: 15px;
  color: var(--jm-muted);
  line-height: 1.7;
  margin: 0 0 36px;
}
.jm-br { display: block; }

/* Hero */
.jm-hero {
  position: relative;
  background: var(--jm-navy);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.jm-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 60%, rgba(247,177,34,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(30,100,200,.18) 0%, transparent 55%);
  pointer-events: none;
}
.jm-hero-body {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
.jm-hero-body h1 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -.015em;
}
.jm-hero-body > p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin: 0 0 32px;
}
.jm-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jm-hero-actions .jm-btn--primary { width: 100%; }

/* Service cards */
.jm-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 36px;
}
.jm-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--jm-border);
  border-radius: var(--jm-radius);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
a.jm-card:hover {
  border-color: var(--jm-gold);
  box-shadow: 0 4px 16px rgba(12,31,53,.08);
}
.jm-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--jm-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jm-navy);
}
.jm-card-body         { flex: 1; }
.jm-card-body strong  { display: block; font-size: 15px; font-weight: 700; color: var(--jm-navy); margin-bottom: 3px; }
.jm-card-body p       { font-size: 13px; color: var(--jm-muted); margin: 0; line-height: 1.55; }
.jm-card-arrow        { font-size: 16px; color: var(--jm-gold); flex-shrink: 0; }

/* Model cards */
.jm-models {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 8px auto 0;
  padding: 0 20px;
}
.jm-model-card {
  background: #fff;
  border: 1px solid var(--jm-border);
  border-radius: 16px;
  overflow: hidden;
}
.jm-model-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--jm-bg);
  position: relative;
}
.jm-img-label {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 10px;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.35);
  padding: 2px 7px;
  border-radius: 4px;
  pointer-events: none;
  letter-spacing: .02em;
}
.jm-model-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.jm-model-card:hover .jm-model-img img { transform: scale(1.03); }
.jm-model-body { padding: 24px; }
.jm-model-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--jm-bg);
  color: var(--jm-muted);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.jm-model-tag--gold { background: rgba(247,177,34,.12); color: #9a6600; }
.jm-model-wpp {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  margin-top: 10px;
}
.jm-model-wpp:hover { color: #25d366; }
.jm-model-body h3 { font-size: 20px; font-weight: 800; color: var(--jm-navy); margin: 0 0 14px; }
.jm-model-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jm-model-body ul li {
  font-size: 14px;
  color: var(--jm-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.jm-model-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jm-gold);
}

/* Quintal / feature list */
.jm-quintal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
}
.jm-quintal-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--jm-bg);
}
.jm-quintal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jm-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.jm-feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.jm-feature-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--jm-gold);
  margin-top: 6px;
}
.jm-feature-list strong { display: block; font-size: 15px; font-weight: 700; color: var(--jm-navy); margin-bottom: 3px; }
.jm-feature-list p      { font-size: 13px; color: var(--jm-muted); margin: 0; line-height: 1.55; }

/* Obra grid (real photos) */
.jm-obra-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.jm-obra-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--jm-bg);
}
.jm-obra-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jm-obra-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(12,31,53,.75) 0%, transparent 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 32px 16px 14px;
}

/* Steps (mobile: vertical list) */
.jm-steps {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.jm-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.jm-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--jm-navy);
  color: var(--jm-gold);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
}
.jm-step-body         { padding-top: 10px; padding-bottom: 28px; }
.jm-step-body strong  { display: block; font-size: 16px; font-weight: 700; color: var(--jm-navy); margin-bottom: 5px; }
.jm-step-body p       { font-size: 14px; color: var(--jm-muted); margin: 0; line-height: 1.65; }
.jm-step-divider {
  width: 2px;
  height: 20px;
  background: var(--jm-border);
  margin-left: 21px;
}

/* Diferenciais (dark section) */
.jm-diffs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 36px;
}
.jm-diff {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 24px 0;
}
.jm-diff-num  { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--jm-gold); margin-bottom: 8px; }
.jm-diff strong { display: block; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.jm-diff p    { font-size: 14px; color: rgba(255,255,255,.55); margin: 0; line-height: 1.7; }

/* CTA final */
.jm-cta { padding: 56px 0; background: var(--jm-gold); }
.jm-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.jm-cta-text h2 { font-size: 26px; font-weight: 800; color: var(--jm-navy); margin: 0 0 8px; line-height: 1.2; }
.jm-cta-text p  { font-size: 15px; color: rgba(12,31,53,.65); margin: 0; }
.jm-cta .jm-btn--primary { background: var(--jm-navy); color: #fff; align-self: flex-start; }

/* ─── Tablet (≥ 600px) ─── */
@media (min-width: 600px) {
  .jm-title                          { font-size: 34px; }
  .jm-hero-body h1                   { font-size: 42px; }
  .jm-hero-actions                   { flex-direction: row; }
  .jm-hero-actions .jm-btn--primary  { width: auto; }
  .jm-cards                          { grid-template-columns: repeat(2, 1fr); }
  .jm-obra-grid                      { grid-template-columns: repeat(2, 1fr); }
  .jm-diffs                          { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .jm-diff                           { border-top: none; border-left: 1px solid rgba(255,255,255,.12); padding: 0 24px; }
  .jm-diff:first-child               { border-left: none; padding-left: 0; }
  .jm-cta-inner                      { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
  .jm-cta .jm-btn--primary           { align-self: auto; }
}

/* ─── Desktop (≥ 900px) ─── */
@media (min-width: 900px) {
  .jm-section            { padding: 96px 0; }
  .jm-title              { font-size: 38px; }
  .jm-hero               { min-height: 640px; }
  .jm-hero-body h1       { font-size: 52px; max-width: 640px; }
  .jm-hero-body > p      { max-width: 520px; }
  .jm-cards              { grid-template-columns: repeat(3, 1fr); }
  .jm-models             { grid-template-columns: repeat(3, 1fr); }
  .jm-quintal-grid       { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .jm-cta-text h2        { font-size: 32px; }
  .jm-steps {
    flex-direction: row;
    align-items: flex-start;
  }
  .jm-step {
    flex: 1;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .jm-step-body   { padding-top: 16px; padding-bottom: 0; }
  .jm-step-divider {
    width: auto;
    flex-shrink: 0;
    align-self: flex-start;
    margin: 22px 0 0;
    height: 2px;
    min-width: 24px;
    flex: 0 1 40px;
    background: var(--jm-border);
  }
}

/* ====== Formulário de orçamento de obra (orcamento.php) ====== */

.orc-page, .orc-page * { box-sizing: border-box; }

.orc-page {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #1f2a38;
  min-height: 100vh;
}

.orc-container { max-width: 680px; width: 100%; margin: 0 auto; padding: 0 20px; }

.orc-progress { padding: 32px 0 0; }
.orc-progress-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.orc-progress-label { font-size: 13px; font-weight: 600; color: #64748b; }
.orc-progress-track { height: 4px; background: #e8ecf0; border-radius: 999px; overflow: hidden; }
.orc-progress-fill  { height: 100%; background: #f7b122; border-radius: 999px; transition: width .35s ease; }

.orc-step { padding: 36px 0 0; }

.orc-step-title {
  font-size: 24px; font-weight: 800; color: #0c1f35;
  margin: 0 0 8px; line-height: 1.2; letter-spacing: -.01em;
}
.orc-step-sub { font-size: 14px; color: #64748b; margin: 0 0 28px; line-height: 1.6; }

/* Service cards */
.orc-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

.orc-svc { cursor: pointer; display: block; position: relative; }
.orc-svc input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.orc-svc-inner {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 10px; padding: 18px 16px;
  border: 1.5px solid #e8ecf0; border-radius: 12px;
  background: #fff; position: relative;
  transition: border-color .15s, background .15s;
}
.orc-svc:hover .orc-svc-inner        { border-color: #cbd5e1; }
.orc-svc input:checked ~ .orc-svc-inner { border-color: #f7b122; background: rgba(247,177,34,.05); }
.orc-svc-icon {
  width: 36px; height: 36px; border-radius: 8px; background: #f8f9fb;
  display: flex; align-items: center; justify-content: center; color: #0c1f35;
}
.orc-svc input:checked ~ .orc-svc-inner .orc-svc-icon { background: rgba(247,177,34,.15); }
.orc-svc-label { font-size: 14px; font-weight: 600; color: #1f2a38; line-height: 1.3; }
.orc-svc-check {
  position: absolute; top: 10px; right: 10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #f7b122; color: #fff;
  font-size: 11px; font-weight: 800;
  display: none; align-items: center; justify-content: center;
}
.orc-svc input:checked ~ .orc-svc-inner .orc-svc-check { display: flex; }

/* Fields */
.orc-field        { margin-bottom: 20px; }
.orc-field-label  { display: block; font-size: 12px; font-weight: 600; color: #64748b; margin-bottom: 8px; letter-spacing: .05em; text-transform: uppercase; }
.orc-input, .orc-textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid #e8ecf0; border-radius: 10px;
  font-size: 15px; color: #1f2a38; font-family: inherit;
  background: #fff; outline: none;
  transition: border-color .15s; -webkit-appearance: none;
}
.orc-input:focus, .orc-textarea:focus { border-color: #0c1f35; }
.orc-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.orc-input-hint { font-size: 12px; color: #94a3b8; margin-top: 6px; }

/* Horário radio pills */
.orc-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.orc-opt  { position: relative; cursor: pointer; }
.orc-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.orc-opt-label {
  display: inline-flex; align-items: center; padding: 10px 18px;
  border: 1.5px solid #e8ecf0; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: #1f2a38;
  transition: border-color .15s, background .15s, color .15s;
}
.orc-opt input:checked ~ .orc-opt-label { border-color: #0c1f35; background: #0c1f35; color: #fff; }

/* Nav buttons */
.orc-nav { display: flex; gap: 12px; padding: 28px 0 52px; align-items: center; }
.orc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 28px; border-radius: 12px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  border: none; cursor: pointer;
  transition: opacity .15s, transform .15s; letter-spacing: .01em;
}
.orc-btn:hover      { opacity: .88; transform: translateY(-1px); }
.orc-btn--primary   { background: #f7b122; color: #0c1f35; flex: 1; }
.orc-btn--back      { background: #f8f9fb; color: #64748b; border: 1.5px solid #e8ecf0; flex-shrink: 0; }

/* Error message */
.orc-error-msg {
  display: none; background: #fef2f2; border: 1px solid #fecaca;
  color: #dc2626; border-radius: 8px; padding: 12px 16px;
  font-size: 13px; font-weight: 500; margin-bottom: 20px;
}
.orc-error-msg.is-visible { display: block; }

/* Confirmation screen */
.orc-confirm { text-align: center; padding: 64px 0; }
.orc-confirm-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(247,177,34,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: #f7b122;
}
.orc-confirm h2  { font-size: 26px; font-weight: 800; color: #0c1f35; margin: 0 0 12px; line-height: 1.2; }
.orc-confirm p   { font-size: 15px; color: #64748b; margin: 0 0 32px; line-height: 1.7; }
.orc-confirm-wpp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; font-weight: 700; font-size: 15px;
  padding: 0 28px; height: 52px; border-radius: 12px;
  text-decoration: none; font-family: inherit;
}

@media (min-width: 600px) {
  .orc-step-title { font-size: 30px; }
  .orc-services   { grid-template-columns: repeat(3, 1fr); }
}

/* ====== Varjao (landing) e RF2 (landing) ====== */
.varjao-page,
.rf2-page {
  background: #ffffff;
  color: #0c1a2a;
  font-family: 'Overpass', Arial, sans-serif;
  overflow-x: hidden;
}

.varjao-main,
.rf2-main {
  padding-top: 24px;
}

.varjao-section,
.rf2-section {
  padding: 80px 20px;
}

.varjao-container,
.rf2-container {
  max-width: 1180px;
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  align-items: center;
}

.loc-text h1 {
  font-size: 44px;
  margin: 0 0 16px;
  line-height: 1.1;
}

.loc-text p {
  font-size: 21px;
  line-height: 1.6;
  margin: 0 0 22px;
  color: #1f2d3d;
}

.bullet-card {
  list-style: disc inside;
  background: #f1f3f6;
  border: 1px solid #e4e7ed;
  border-radius: 10px;
  padding: 22px 26px;
  margin: 0;
  color: #1f2d3d;
  font-size: 18px;
  line-height: 1.65;
}

.bullet-card li + li {
  margin-top: 8px;
}

.loc-map img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.features {
  padding-top: 16px;
  padding-bottom: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.feature-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 22px 20px;
}

/* RF2: seis ícones, grid se ajusta para 3 colunas em telas maiores */
.rf2-page .feature-icons {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}
.rf2-page .feature-icons img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.icon-card {
  background: #f7f9fb;
  border: 1px solid #e4e7ed;
  border-radius: 12px;
  padding: 18px 18px 12px;
  text-align: center;
  font-weight: 700;
  color: #0c1a2a;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.icon-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 10px;
}

.icon-card span {
  display: block;
  background: #e9ecf1;
  border-radius: 10px;
  padding: 10px 8px;
  line-height: 1.3;
}

.feature-text {
  border-left: 2px solid #d5dde8;
  padding-left: 24px;
}

.feature-text h2 {
  font-size: 36px;
  margin: 0 0 12px;
  line-height: 1.2;
}

.feature-text p {
  font-size: 21px;
  line-height: 1.6;
  margin: 0;
  color: #1f2d3d;
}

.planta-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.planta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 1fr));
  gap: 44px;
  align-items: center;
}

.planta-grid-invert {
  direction: rtl;
}

.planta-grid-invert > * {
  direction: ltr;
}

.planta-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: block;
}

.planta-copy h2 {
  font-size: 32px;
  margin: 0 0 12px;
}

.planta-copy p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 14px;
  color: #1f2d3d;
}

.renders {
  padding-top: 36px;
  padding-bottom: 36px;
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
  text-align: center;
  display: block;
  background: #f5f6f8;
  padding: 14px 18px;
  width: 100%;
}

/* mosaico da galeria */
.pswp-gallery {
  column-count: 3;
  column-gap: 16px;
}

.pswp-gallery.pswp-single {
  column-count: 1;
}

.pswp-gallery.renders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: 260px;
  gap: 18px;
  grid-auto-flow: dense;
  column-count: initial;
  column-gap: initial;
}

.pswp-gallery.renders-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.pswp-gallery.renders-grid a:nth-child(2) { grid-row: span 2; }
.pswp-gallery.renders-grid a:nth-child(4) { grid-column: span 2; }
.pswp-gallery.renders-grid a:nth-child(5) { grid-row: span 2; }
.pswp-gallery.renders-grid a:nth-child(7) { grid-column: span 2; grid-row: span 2; }
.pswp-gallery.renders-grid a:nth-child(8) { grid-row: span 2; }

.pswp-gallery.renders-grid a {
  display: block;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #fff;
}

.pswp-gallery.renders-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pswp-gallery a {
  display: block;
  margin-bottom: 20px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #fff;
}

.pswp-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-hidden {
  display: none !important;
}

.load-more-gallery {
  margin-top: 12px;
  padding: 12px 20px;
  border: 1px solid #d6e3ff;
  background: #eef2ff;
  color: #0d1a2a;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
}

.cta {
  padding-top: 18px;
  padding-bottom: 48px;
}

.cta-box {
  background: #eaf2ff;
  border: 1px solid #d6e3ff;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.cta-box h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.cta-box p {
  margin: 0;
  font-size: 18px;
  color: #1f2d3d;
  max-width: 540px;
  line-height: 1.6;
}

.cta-actions .botao {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 16px;
  min-width: 190px;
  background: #1fb060;
  color: #fff;
  border-radius: 10px;
  border: none;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .pswp-gallery {
    column-count: 2;
  }

  .loc-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
  }

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .feature-icons {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .planta-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
  }

  .pswp-gallery.renders-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-auto-rows: 210px;
    gap: 18px;
  }

  .pswp-gallery.renders-grid a:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

.pswp-gallery.renders-grid a:nth-child(5) {
  grid-column: span 2;
}

.pswp-gallery.renders-grid a:nth-child(4) {
  grid-row: span 2;
}
}

@media (max-width: 1280px) {
  .varjao-container,
  .rf2-container {
    width: min(1120px, 95vw);
  }
  .pswp-gallery.renders-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    grid-auto-rows: 230px;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .varjao-section,
  .rf2-section {
    padding: 32px 16px;
  }

  .loc-text h1 {
    font-size: 32px;
  }

  .loc-text p,
  .feature-text p,
  .planta-copy p {
    font-size: 18px;
  }

  .feature-text h2,
  .planta-copy h2 {
    font-size: 26px;
  }

  .feature-text {
    border-left: none;
    padding-left: 0;
  }

  .loc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-icons {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 14px;
  }

  .planta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pswp-gallery {
    column-count: 1;
  }

  .pswp-gallery.renders-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    grid-auto-rows: 180px;
    gap: 12px;
  }

  .pswp-gallery.renders-grid a:nth-child(1),
  .pswp-gallery.renders-grid a:nth-child(3) {
    grid-column: span 2;
    grid-row: span 2;
  }

.loc-map img {
    height: 260px;
  }
}

/* ===================== COMO PARTICIPAR ===================== */
.como-participar-page {
  background: #ffffff;
  color: #0d4253;
}

.cp-shell {
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
}

.cp-shell--flush-mobile {
  width: 100%;
}

.cp-section {
  padding: 0 0 44px;
}

.cp-hero {
  background: #0e57b6;
  color: #fff;
  padding: 96px 0 0;
}

.cp-hero__conteudo {
  max-width: 760px;
}

.cp-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.02;
  font-weight: 800;
}

.cp-hero h1 span {
  color: #f8bc2d;
}

.cp-hero p {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 22px;
  line-height: 1.35;
}

.cp-hero__linha {
  margin-top: 44px;
}

.cp-hero__linha svg {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
}

.cp-hero__linha path {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-section--cinza {
  background: #f4f4f4;
  padding-top: 36px;
}

.cp-card {
  background: #ebebeb;
  padding: 28px;
  margin-bottom: 28px;
}

.cp-card h2,
.cp-card h3,
.cp-heading h2,
.cp-faq__item h3,
.cp-manifesto p,
.cp-processo__titulo span,
.cp-etapa__titulo h3 {
  color: #0d4253;
}

.cp-card h2,
.cp-card h3,
.cp-heading h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 0.98;
  font-weight: 800;
}

.cp-card p,
.cp-etapa__texto p,
.cp-processo__corpo p,
.cp-faq__item p,
.cp-manifesto p {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
}

.cp-associacoes {
  display: grid;
  gap: 28px;
}

.cp-card--com-imagem {
  position: relative;
  overflow: hidden;
  padding-right: 180px;
  min-height: 320px;
}

.cp-card__imagem {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
}

.cp-card__imagem img {
  display: block;
  width: 100%;
  height: auto;
}

.cp-card__imagem picture {
  display: block;
}

.cp-section--etapas {
  padding-top: 0;
}

.cp-heading {
  padding: 38px 32px;
}

.cp-heading--amarelo {
  background: #f8c248;
}

.cp-heading--cinza {
  background: #efefef;
}

.cp-etapas {
  padding: 34px 0 0;
}

.cp-etapa {
  margin-bottom: 42px;
}

.cp-etapa__icone {
  width: min(100%, 320px);
  margin: 0 auto 22px;
  background: #fff3cf;
  padding: 24px;
}

.cp-etapa__icone img {
  display: block;
  width: 100%;
  max-width: 172px;
  margin: 0 auto;
  height: auto;
}

.cp-etapa__texto {
  position: relative;
  padding: 0 18px 18px 30px;
}

.cp-etapa__texto::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 26px;
  bottom: 0;
  width: 3px;
  background: #0d5b67;
}

.cp-etapa__texto::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #0d5b67;
}

.cp-etapa__titulo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.cp-etapa__titulo img {
  width: 22px;
  height: 22px;
  margin-top: 6px;
  flex: 0 0 22px;
}

.cp-etapa__titulo h3 {
  margin: 0;
  font-size: 24px;
  line-height: 0.98;
  font-weight: 800;
}

.cp-faixa-processo {
  background: #0e57b6;
  color: #fff;
  padding: 26px 28px 26px 32px;
  border-bottom-right-radius: 88px;
  margin-bottom: 34px;
}

.cp-faixa-processo h2 {
  margin: 0;
  font-size: 56px;
  line-height: 0.92;
  font-weight: 800;
}

.cp-processo {
  padding: 0 24px;
}

.cp-processo__item {
  position: relative;
  margin-bottom: 30px;
  padding-top: 34px;
}

.cp-processo__icone {
  position: absolute;
  right: 10px;
  top: -6px;
  z-index: 1;
}

.cp-processo__icone img {
  display: block;
  width: 104px;
  height: 104px;
}

.cp-processo__titulo {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  min-width: 58%;
}

.cp-processo__titulo--azul {
  background: #0e57b6;
}

.cp-processo__titulo--amarelo {
  background: #f8bc2d;
}

.cp-processo__titulo span {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.cp-processo__titulo--amarelo span {
  color: #0d4253;
}

.cp-processo__corpo {
  background: #efefef;
  padding: 16px 14px;
  min-height: 92px;
}

.cp-section--faq {
  padding-top: 18px;
}

.cp-faq {
  padding-top: 24px;
}

.cp-faq__item {
  padding: 20px 0 32px 18px;
  border-left: 3px solid #0d5b67;
}

.cp-faq__item + .cp-faq__item {
  margin-top: 28px;
  border-top: 1px solid #c8d5d9;
  padding-top: 34px;
}

.cp-faq__item h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 0.98;
  font-weight: 800;
}

.cp-section--manifesto {
  padding-bottom: 0;
}

.cp-manifesto {
  background: #f8bc2d;
  padding: 34px 32px 40px;
}

.cp-manifesto p {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
}

.cp-manifesto p + p {
  margin-top: 18px;
}

@media (max-width: 800px) {
  .cp-hero {
    padding-top: 88px;
  }

  .cp-hero h1 {
    font-size: 31px;
  }

  .cp-hero p {
    margin-top: 16px;
    font-size: 18px;
  }

  .cp-hero__linha {
    margin-top: 22px;
  }

  .cp-card {
    padding: 22px 18px;
  }

  .cp-card h2,
  .cp-card h3,
  .cp-heading h2 {
    font-size: 30px;
  }

  .cp-card p,
  .cp-etapa__texto p,
  .cp-processo__corpo p,
  .cp-faq__item p {
    font-size: 17px;
  }

  .cp-card--com-imagem {
    padding-right: 150px;
    min-height: 260px;
  }

  .cp-card__imagem {
    width: 150px;
  }

  .cp-heading {
    padding: 32px 24px;
  }

  .cp-etapa__titulo h3,
  .cp-processo__titulo span,
  .cp-faq__item h3 {
    font-size: 21px;
  }

  .cp-faixa-processo {
    padding: 22px 18px 22px 24px;
    border-bottom-right-radius: 72px;
  }

  .cp-faixa-processo h2 {
    font-size: 38px;
  }

  .cp-processo {
    padding: 0 16px;
  }

  .cp-processo__titulo {
    min-height: 48px;
  }

  .cp-processo__corpo {
    min-height: 84px;
  }

  .cp-processo__icone {
    right: 8px;
    top: -4px;
  }

  .cp-processo__icone img {
    width: 88px;
    height: 88px;
  }

  .cp-manifesto {
    padding: 28px 24px 32px;
  }

  .cp-manifesto p {
    font-size: 21px;
  }
}

@media (min-width: 801px) {
  .cp-section {
    padding-bottom: 64px;
  }

  .cp-section--cinza {
    padding-top: 48px;
  }

  .cp-associacoes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cp-etapas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 36px;
  }

  .cp-etapa {
    margin-bottom: 0;
  }

  .cp-processo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .cp-faq {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 34px;
  }

  .cp-faq__item + .cp-faq__item {
    margin-top: 0;
  }
}

/* ============================================================
   Overlay de entrada da home — escolha de caminho
   (Jardins Mangueiral  ×  Casa própria) · usado em index.php
   ============================================================ */

/* Fundo escurecido sobre a home real.
   Usa 100lvh (large viewport height) pra cobrir mesmo quando a barra do
   navegador recolhe ao rolar no mobile — evita a "tarja sem sombra" embaixo. */
.mm-entry { position: fixed; top: 0; left: 0; right: 0; min-height: 100vh; min-height: 100lvh; z-index: 99990; display: flex; align-items: center; justify-content: center; padding: 28px 20px; overflow: auto; background: rgba(6,15,31,.82); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); animation: mmEntryFade .35s ease; }
@keyframes mmEntryFade { from { opacity: 0; } to { opacity: 1; } }
.mm-entry--hidden { display: none; }

/* Conteúdo central */
.mm-entry-inner { max-width: 1000px; width: 100%; text-align: center; margin: auto; }
.mm-entry-close { position: fixed; top: 16px; right: 18px; width: 44px; height: 44px; border: none; border-radius: 50%; cursor: pointer; z-index: 2; background: rgba(255,255,255,.14); color: #fff; font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .15s ease, transform .15s ease; }
.mm-entry-close:hover { background: rgba(255,255,255,.26); transform: rotate(90deg); }
.mm-entry-kicker { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #f7b122; margin: 0 0 12px; }
.mm-entry-title { font-size: clamp(26px, 4.5vw, 42px); font-weight: 800; color: #fff; line-height: 1.1; margin: 0 0 12px; }
.mm-entry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; text-align: left; }

/* Cards com foto */
.mm-bh-card { position: relative; display: block; min-height: 384px; border-radius: 20px; overflow: hidden; text-decoration: none; box-shadow: 0 22px 50px rgba(0,0,0,.4); }
.mm-bh-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .55s ease; }
.mm-bh-card:hover .mm-bh-card-bg { transform: scale(1.06); }
.mm-bh-card-ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,20,40,.12) 0%, rgba(8,20,40,.42) 52%, rgba(5,14,30,.9) 100%); }
.mm-bh-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 28px 26px; z-index: 1; color: #fff; }
.mm-bh-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.mm-bh-card--obra .mm-bh-tag { background: #f7b122; color: #1b2a3a; }
.mm-bh-card--casa .mm-bh-tag { background: #004aad; color: #fff; }
.mm-bh-card h2 { font-size: 25px; font-weight: 800; color: #fff; line-height: 1.14; margin: 0 0 8px; }
.mm-bh-card p { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.92); margin: 0 0 20px; max-width: 94%; }
.mm-bh-btn { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: #004aad; font-size: 14px; font-weight: 700; padding: 12px 20px; border-radius: 11px; transition: gap .18s ease; }
.mm-bh-card--obra .mm-bh-btn { color: #b9810a; }
.mm-bh-card:hover .mm-bh-btn { gap: 12px; }

/* Responsivo: mobile lado a lado */
@media (max-width: 720px) {
    .mm-entry { align-items: flex-start; padding: 48px 14px 44px; }
    .mm-entry-kicker { margin-bottom: 10px; }
    .mm-entry-title { font-size: 24px; line-height: 1.2; margin-bottom: 32px; }
    .mm-entry-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .mm-bh-card { min-height: 340px; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.42); }
    .mm-bh-card-body { padding: 17px 15px 17px; }
    .mm-bh-card-ov { background: linear-gradient(180deg, rgba(8,20,40,.08) 0%, rgba(8,20,40,.5) 44%, rgba(5,14,30,.94) 100%); }
    .mm-bh-tag { margin-bottom: 9px; font-size: 9.5px; padding: 4px 9px; }
    .mm-bh-card h2 { font-size: 17px; line-height: 1.14; margin-bottom: 6px; }
    .mm-bh-card p { font-size: 12.5px; margin-bottom: 13px; max-width: 100%; }
    .mm-bh-btn { padding: 9px 13px; font-size: 12px; border-radius: 9px; }
}
@media (max-width: 360px) {
    .mm-bh-card { min-height: 304px; }
    .mm-bh-card h2 { font-size: 16px; }
    .mm-bh-card p { display: none; }
}
