/* ── RESET & TOKENS ── */
:root {
  --navy:    #24476A;
  --blue:    #336699;
  --blue-lt: #4A7FB5;
  --white:   #FFFFFF;
  --ice:     #F0F7FF;
  --frost:   #D6E8F7;
  --gray:    #F5F6F8;
  --text:    #1A2B3C;
  --muted:   #6B7F90;
  --border:  #D9E5EF;
  --green:   #25D366;
  --wrap:    1200px;
  --pad:     clamp(20px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── INNER — conteúdo centralizado, seções full-width ── */
.inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--white); box-shadow: 0 2px 16px rgba(36,71,106,.1);
  height: 64px;
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.logo-txt strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 15px; color: var(--navy); line-height: 1.2; }
.logo-txt span   { font-size: 10px; font-weight: 700; color: var(--blue-lt); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--text); transition: color .2s; }
.nav-links a:hover  { color: var(--blue); }
.nav-links a.active { color: var(--blue); border-bottom: 2px solid var(--blue); padding-bottom: 2px; }

.nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; padding: 9px 18px;
  border-radius: 50px; font-weight: 800; font-size: 13px;
  text-decoration: none; box-shadow: 0 4px 14px rgba(37,211,102,.3);
  transition: transform .2s; white-space: nowrap;
}
.nav-wa:hover { transform: translateY(-2px); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; padding: 4px; border-radius: 8px; transition: background .2s;
}
.hamburger:hover { background: var(--ice); }
.hamburger span { display: block; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center; }
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 24px; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 299;
  background: var(--white); border-bottom: 1.5px solid var(--border);
  box-shadow: 0 8px 32px rgba(36,71,106,.12);
  pointer-events: none; opacity: 0; transform: translateY(-8px);
  transition: transform .3s, opacity .3s;
}
.mobile-menu.open { display: block; pointer-events: auto; opacity: 1; transform: translateY(0); }
.mobile-menu .inner { display: flex; flex-direction: column; padding-top: 16px; padding-bottom: 24px; }
.mobile-menu a {
  text-decoration: none; font-size: 16px; font-weight: 700; color: var(--text);
  padding: 13px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--blue); }
.mobile-menu .mob-wa {
  margin-top: 14px; background: var(--green); color: #fff;
  padding: 14px; border-radius: 12px; text-align: center;
  font-size: 15px; font-weight: 800; border-bottom: none; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}

/* ── SECTION HELPERS ── */
.s-tag { display: block; font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.s-h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(22px, 2.4vw, 36px); font-weight: 900; line-height: 1.18; color: var(--navy); margin-bottom: 12px; }
.s-h2.light { color: #fff; }
.s-sub { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 500; max-width: 520px; }
.s-sub.light { color: rgba(255,255,255,.58); }

/* ── HERO ── */
.hero { margin-top: 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.hero-left {
  background: var(--ice);
  padding: 52px var(--pad) 52px max(var(--pad), calc((100vw - var(--wrap)) / 2 + var(--pad)));
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
/* diagonal decorativa */
.hero-left::after {
  content: ''; position: absolute; top: 0; right: -48px; bottom: 0;
  width: 96px; background: var(--ice);
  clip-path: polygon(0 0, 45% 0, 100% 100%, 0 100%); z-index: 2;
}
/* preenche fundo do lado esquerdo até a borda da tela */
.hero-bg-left {
  position: absolute; top: 0; right: calc(50% + (var(--wrap) / 2)); bottom: 0;
  left: 0; background: var(--ice); z-index: 0; pointer-events: none;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--frost); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 6px 14px; font-size: 12px; font-weight: 700;
  color: var(--navy); margin-bottom: 20px; width: fit-content;
}
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 2.8vw, 46px); font-weight: 900; line-height: 1.12; color: var(--navy); margin-bottom: 16px; }
.hero h1 span { color: var(--blue); }
.hero-desc { font-size: 15px; line-height: 1.75; color: var(--muted); max-width: 400px; margin-bottom: 28px; font-weight: 500; }
.hero-btns { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; text-decoration: none; padding: 13px 24px; border-radius: 50px; font-weight: 800; font-size: 14px; box-shadow: 0 8px 28px rgba(37,211,102,.35); transition: transform .2s; }
.btn-wa:hover { transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--border); color: var(--navy); text-decoration: none; padding: 12px 20px; border-radius: 50px; font-weight: 700; font-size: 14px; transition: border-color .2s, background .2s; }
.btn-ghost:hover { border-color: var(--blue); background: var(--frost); }

/* ── HERO RIGHT — 1:1 QUADRADA ── */
.hero-right { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ph { width: 100%; height: 100%; background: linear-gradient(145deg, #BFD0E0, #98B5CA); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.ph svg { opacity: .28; }
.ph p { font-size: 13px; font-weight: 700; color: var(--navy); opacity: .38; text-align: center; max-width: 180px; line-height: 1.5; }

.hero-badge-float { position: absolute; bottom: 20px; left: 20px; z-index: 10; background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: 0 8px 32px rgba(36,71,106,.18); display: flex; align-items: center; gap: 10px; }
.hbf-icon { width: 40px; height: 40px; background: var(--ice); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hbf-text strong { display: block; font-size: 16px; font-weight: 900; color: var(--navy); line-height: 1.2; }
.hbf-text span   { font-size: 11px; color: var(--muted); font-weight: 600; }

/* ── STATS (full-width navy) ── */
.stats-strip { background: var(--navy); }
.stats-strip .inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-box { padding: 24px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); transition: background .2s; }
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(255,255,255,.05); }
.stat-num   { font-family: 'Montserrat', sans-serif; font-size: 34px; font-weight: 900; color: #fff; line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.52); font-weight: 600; margin-top: 5px; }

/* ── SERVIÇOS ── */
#servicos { padding: 64px 0; background: var(--white); }
.svc-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 20px; flex-wrap: wrap; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.s-card { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); background: var(--white); transition: box-shadow .3s, transform .3s; }
.s-card:hover { box-shadow: 0 14px 44px rgba(36,71,106,.12); transform: translateY(-3px); }

/* ── FOTO CARD — 1:1 QUADRADA ── */
.c-photo { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; position: relative; }
.c-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .4s; }
.s-card:hover .c-photo img { transform: scale(1.04); }
.c-badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; z-index: 1; }
.c-body { padding: 22px; }
.c-body h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.c-body p  { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; font-weight: 500; }
.c-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.c-tag  { background: var(--ice); border: 1.5px solid var(--border); color: var(--navy); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.c-btn  { display: inline-flex; align-items: center; gap: 7px; background: var(--green); color: #fff; text-decoration: none; padding: 11px 18px; border-radius: 50px; font-weight: 800; font-size: 13px; transition: background .2s; }
.c-btn:hover { background: #1fba58; }

.s-card.wide { grid-column: span 2; }
.wide-inner { display: grid; grid-template-columns: 280px 1fr; }
.wide-inner .c-photo { aspect-ratio: 1 / 1; height: 100%; }
.wide-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }

/* ── GALERIA — 1:1 QUADRADAS ── */
#galeria { padding: 0 0 64px; background: var(--white); }
.gal-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.gal-item { border-radius: 12px; overflow: hidden; aspect-ratio: 1 / 1; cursor: pointer; position: relative; }
.gal-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .4s; }
.gal-item:hover img { transform: scale(1.05); }
.gal-ph { width: 100%; height: 100%; min-height: 160px; background: linear-gradient(145deg, #BFD0DF, #9BB5C9); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.gal-ph-icon { font-size: 28px; opacity: .3; }
.gal-ph-txt  { font-size: 11px; font-weight: 700; color: var(--navy); opacity: .4; }

/* ── POR QUE NÓS (full-width navy) ── */
#porque { padding: 64px 0; background: var(--navy); }
.porque-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.porque-photo-wrap { position: relative; }
/* 1:1 QUADRADA */
.porque-photo { width: 100%; aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden; }
.porque-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.porque-ph { width: 100%; height: 100%; min-height: 320px; background: linear-gradient(145deg, #2A5580, #1A3A55); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border-radius: 18px; }
.porque-ph p { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.22); text-align: center; }
.porque-float-card { position: absolute; bottom: -20px; right: -16px; background: #fff; border-radius: 14px; padding: 16px 20px; box-shadow: 0 14px 44px rgba(0,0,0,.28); min-width: 160px; }
.porque-float-card strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 900; color: var(--navy); }
.porque-float-card span   { font-size: 13px; color: var(--muted); font-weight: 600; }
.dif-list { display: flex; flex-direction: column; gap: 14px; }
.dif-item { display: flex; gap: 14px; padding: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; transition: background .3s; }
.dif-item:hover { background: rgba(255,255,255,.1); }
.dif-ic   { width: 44px; height: 44px; flex-shrink: 0; background: rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.dif-item h4 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.dif-item p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; font-weight: 500; }

/* ── CLIENTES (full-width gray) ── */
#clientes { padding: 64px 0; background: var(--gray); }
.cli-head { text-align: center; margin-bottom: 40px; }
.cli-head .s-sub { margin: 0 auto; }
.cli-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cli-card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; transition: box-shadow .3s, transform .3s; }
.cli-card:hover { box-shadow: 0 8px 32px rgba(36,71,106,.12); transform: translateY(-3px); }
.cli-logo-area { width: 100%; height: 90px; display: flex; align-items: center; justify-content: center; border-bottom: 1.5px solid var(--border); padding: 12px 18px; background: #fff; }
.cli-logo-area img { max-width: 100%; max-height: 58px; object-fit: contain; display: block; }
.cli-logo-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 100%; height: 100%; }
.cli-mono { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; color: var(--navy); }
.cli-word { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.cli-info { padding: 12px 16px 16px; }
.cli-name { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.cli-seg  { font-size: 11px; color: var(--muted); font-weight: 600; }

/* ── PARCEIROS (full-width white) ── */
#parceiros { padding: 56px 0; background: #fff; border-top: 1.5px solid var(--border); }
.parc-head { text-align: center; margin-bottom: 36px; }
.parc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 640px; margin: 0 auto; }
.parc-card { border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .3s, box-shadow .3s, transform .3s; }
.parc-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(36,71,106,.1); transform: translateY(-3px); }
.parc-logo-area { width: 100%; height: 110px; display: flex; align-items: center; justify-content: center; border-bottom: 1.5px solid var(--border); padding: 18px 28px; background: #fff; }
.parc-logo-area img { max-width: 100%; max-height: 70px; object-fit: contain; display: block; }
.parc-logo-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 100%; height: 100%; }
.parc-mono { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 24px; color: var(--navy); }
.parc-word { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }
.parc-info { padding: 16px 20px 20px; }
.parc-name     { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 5px; }
.parc-role-txt { font-size: 13px; color: var(--muted); font-weight: 500; line-height: 1.6; margin-bottom: 10px; }
.parc-badge { display: inline-flex; align-items: center; gap: 5px; background: var(--ice); border: 1.5px solid var(--border); border-radius: 100px; padding: 4px 12px; font-size: 11px; font-weight: 700; color: var(--navy); }

/* ── CTA BAND ── */
.cta-band { padding: 0 0 64px; background: var(--white); }
.cta-inner { background: var(--navy); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.cta-left { padding: 48px; }
.cta-left h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(20px, 2vw, 32px); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.cta-left p  { font-size: 14px; color: rgba(255,255,255,.58); font-weight: 500; margin-bottom: 28px; }
.cta-right   { background: linear-gradient(145deg, #2A5580, #1A3A55); display: flex; align-items: center; justify-content: center; padding: 36px; text-align: center; }
.cta-tel-label { font-size: 13px; color: rgba(255,255,255,.48); font-weight: 600; margin-bottom: 4px; }
.cta-phone  { display: block; font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 900; color: #fff; text-decoration: none; margin-bottom: 16px; }
.cta-hours  { font-size: 12px; color: rgba(255,255,255,.32); font-weight: 600; }

/* ── HIG TEASER ── */
#hig { padding: 0 0 64px; background: #fff; }
.hig-banner { background: var(--ice); border: 2px solid var(--frost); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; text-decoration: none; color: inherit; transition: box-shadow .3s, transform .3s; }
.hig-banner:hover { box-shadow: 0 16px 48px rgba(36,71,106,.1); transform: translateY(-3px); }
.hig-text { padding: 40px; }
.hig-text .s-tag { color: #1FAD56; }
.hig-text h2 { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.hig-text p  { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 500; margin-bottom: 24px; }
.hig-btn { display: inline-flex; align-items: center; gap: 9px; background: var(--navy); color: #fff; font-size: 14px; font-weight: 800; padding: 11px 22px; border-radius: 50px; }
/* 1:1 QUADRADA */
.hig-photo { overflow: hidden; aspect-ratio: 1 / 1; }
.hig-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hig-ph { width: 100%; height: 100%; min-height: 240px; background: linear-gradient(145deg, #C5D5E3, #A0BCCE); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.hig-ph-icon { font-size: 56px; opacity: .26; }
.hig-ph-txt  { font-size: 12px; font-weight: 700; color: var(--navy); opacity: .35; }

/* ── FOOTER ── */
footer { background: var(--text); padding: 48px 0 28px; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.ft-brand .logo-txt strong { color: #fff; }
.ft-brand .logo-txt span   { color: rgba(255,255,255,.42); }
.ft-brand p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75; margin-top: 14px; max-width: 260px; }
.ft-col h4  { font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 14px; }
.ft-col ul  { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ft-col ul li a { font-size: 14px; color: rgba(255,255,255,.62); text-decoration: none; font-weight: 600; transition: color .2s; }
.ft-col ul li a:hover { color: #fff; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.28); font-weight: 600; flex-wrap: wrap; gap: 8px; }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-tooltip { background: #fff; color: var(--navy); border: 1.5px solid var(--border); border-radius: 10px; padding: 8px 14px; font-size: 12px; font-weight: 700; white-space: nowrap; box-shadow: 0 4px 16px rgba(36,71,106,.14); opacity: 0; transform: translateX(8px); transition: all .3s; pointer-events: none; }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn { width: 56px; height: 56px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,.42); transition: transform .2s; animation: waPop 3s ease-in-out infinite; }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 28px; height: 28px; }
@keyframes waPop { 0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.42); } 50% { box-shadow: 0 8px 40px rgba(37,211,102,.68); } }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   HIGIENIZAÇÃO PAGE
════════════════════════════════ */
.hero-hig { min-height: auto; }

#beneficios { padding: 64px 0; background: var(--white); }
.sec-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 20px; flex-wrap: wrap; }
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ben-card { border-radius: 14px; border: 1.5px solid var(--border); padding: 24px; background: var(--white); transition: box-shadow .3s, transform .3s; }
.ben-card:hover { box-shadow: 0 10px 36px rgba(36,71,106,.1); transform: translateY(-3px); }
.ben-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.ben-card h3 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.ben-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 500; }

#antesdepois { padding: 64px 0; background: var(--gray); }
.ad-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ad-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* 1:1 QUADRADAS */
.ad-photo { border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 1 / 1; }
.ad-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ad-ph { width: 100%; height: 100%; min-height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.ad-ph.before { background: linear-gradient(145deg, #D8C4C4, #C0ABAB); }
.ad-ph.after  { background: linear-gradient(145deg, #BFD0E0, #98B5CA); }
.ad-ph-icon { font-size: 32px; opacity: .38; }
.ad-ph-txt  { font-size: 11px; font-weight: 700; opacity: .42; color: var(--navy); }
.ad-label { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); white-space: nowrap; background: rgba(0,0,0,.5); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 100px; }
.checklist { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px; background: var(--white); border-radius: 10px; border: 1.5px solid var(--border); }
.check-ic { width: 32px; height: 32px; background: var(--ice); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.check-item span { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.6; padding-top: 5px; }

#processo { padding: 64px 0; background: var(--navy); }
.proc-head { text-align: center; margin-bottom: 48px; }
.proc-head .s-sub { margin: 0 auto; }
.proc-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.proc-steps::before { content: ''; position: absolute; top: 30px; left: 8%; right: 8%; height: 2px; background: rgba(255,255,255,.1); }
.proc-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.proc-num { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.07); border: 2px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.proc-step h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.proc-step p  { font-size: 12px; color: rgba(255,255,255,.48); line-height: 1.6; font-weight: 500; }

#galeria-hig { padding: 64px 0; background: var(--white); }
.gal-grid2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gal-grid2 .gal-item { aspect-ratio: 1 / 1; }
.gal-grid2 .gal-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.g1 { background: linear-gradient(145deg, #BFD0E0, #98B5CA); }
.g2 { background: linear-gradient(145deg, #C5D5E3, #A0BCCE); }
.g3 { background: linear-gradient(145deg, #C8D0DC, #AABAC9); }
.g4 { background: linear-gradient(145deg, #BDC8D8, #9BAFC4); }
.g5 { background: linear-gradient(145deg, #C0CCDA, #9FB0C3); }

#periodo { padding: 64px 0; background: var(--gray); }
.periodo-head { text-align: center; margin-bottom: 40px; }
.periodo-head .s-sub { margin: 0 auto; }
.periodo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.per-card { border-radius: 16px; padding: 28px; border: 1.5px solid var(--border); background: var(--white); position: relative; transition: box-shadow .3s, transform .3s; }
.per-card:hover { box-shadow: 0 10px 36px rgba(36,71,106,.1); transform: translateY(-3px); }
.per-card.dest { background: var(--navy); border-color: var(--navy); }
.per-badge-top { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1px; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.per-card.dest .per-badge-top { background: var(--blue); }
.per-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.per-freq { font-family: 'Montserrat', sans-serif; font-size: 44px; font-weight: 900; color: var(--navy); line-height: 1; }
.per-card.dest .per-freq { color: #fff; }
.per-unit { font-size: 14px; font-weight: 700; color: var(--muted); margin-bottom: 12px; }
.per-card.dest .per-unit { color: rgba(255,255,255,.52); }
.per-card h3 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.per-card.dest h3 { color: #fff; }
.per-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 500; }
.per-card.dest p { color: rgba(255,255,255,.5); }

#alerta { padding: 64px 0; background: var(--white); }
.alerta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
/* 1:1 QUADRADA */
.alerta-photo { border-radius: 18px; overflow: hidden; aspect-ratio: 1 / 1; }
.alerta-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.alerta-ph { width: 100%; height: 100%; min-height: 320px; background: linear-gradient(145deg, #BFD0E0, #98B5CA); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border-radius: 18px; }
.alerta-ph p { font-size: 12px; font-weight: 700; color: var(--navy); opacity: .26; text-align: center; }
.sintomas { display: flex; flex-direction: column; gap: 9px; }
.sint { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--text); background: var(--white); transition: border-color .2s, background .2s; }
.sint:hover { border-color: var(--blue); background: var(--ice); }
.sint-dot { width: 9px; height: 9px; border-radius: 50%; background: #E05555; flex-shrink: 0; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 44px var(--pad); }
  .hero-left::after { display: none; }
  .hero-right { aspect-ratio: 4 / 3; width: 100%; }

  .cards { grid-template-columns: 1fr; }
  .s-card.wide { grid-column: span 1; }
  .wide-inner { grid-template-columns: 1fr; }
  .wide-inner .c-photo { aspect-ratio: 4 / 3; width: 100%; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .gal-item.tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  .porque-grid { grid-template-columns: 1fr; gap: 36px; }
  .porque-float-card { right: 12px; bottom: -18px; }
  .cta-inner { grid-template-columns: 1fr; }
  .hig-banner { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .ben-grid { grid-template-columns: 1fr 1fr; }
  .ad-grid { grid-template-columns: 1fr; gap: 28px; }
  .proc-steps { grid-template-columns: repeat(3, 1fr); }
  .proc-steps::before { display: none; }
  .periodo-grid { grid-template-columns: 1fr 1fr; }
  .alerta-grid { grid-template-columns: 1fr; }
  .gal-grid2 { grid-template-columns: 1fr 1fr; }
  .gal-grid2 .gal-item.wide { grid-column: span 1; aspect-ratio: 1 / 1; }
  .stats-strip .inner { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-right: none; }
}

@media (max-width: 640px) {
  nav { height: 58px; }
  .mobile-menu { top: 58px; }
  .hero { margin-top: 58px; }
  .nav-links, .nav-wa { display: none; }
  .hamburger { display: flex; }

  .hero h1    { font-size: 26px; }
  .hero-right { aspect-ratio: 1 / 1; }
  .stat-num   { font-size: 28px; }

  .svc-top { flex-direction: column; align-items: flex-start; }
  .gal-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .porque-photo { aspect-ratio: 1 / 1; }
  .porque-float-card { position: static; margin-top: 14px; width: 100%; text-align: center; }
  .cli-grid { grid-template-columns: 1fr 1fr; }
  .parc-grid { grid-template-columns: 1fr; }
  .cta-inner { border-radius: 14px; }
  .cta-left  { padding: 28px 24px; }
  .cta-right { padding: 28px 24px; }
  .hig-text  { padding: 28px 24px; }
  .hig-text h2 { font-size: 20px; }
  .hig-photo { aspect-ratio: 4 / 3; }
  .ft-grid { grid-template-columns: 1fr; gap: 24px; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .ben-grid { grid-template-columns: 1fr; }
  .sec-top  { flex-direction: column; align-items: flex-start; }
  .proc-steps { grid-template-columns: 1fr 1fr; }
  .periodo-grid { grid-template-columns: 1fr; }
  .gal-grid2 { grid-template-columns: 1fr 1fr; gap: 8px; }
}

@media (max-width: 400px) {
  .cli-grid { grid-template-columns: 1fr; }
  .gal-grid2 .gal-item.wide { grid-column: span 1; aspect-ratio: 1 / 1; }
}

/* ── Logo imagem (nav + footer) ── */
.nav-logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.ft-logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* deixa a logo branca no rodapé escuro */
}
.cli-logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}