/* ============================================================
   AQUASAVE — folha de estilos do site institucional (2026)
   Paleta original preservada:
   azul #478ac9 | azul-escuro #035aa6 / #01579b | azul-claro #29a7d9
   amarelo #ffc00b | âmbar #ffad05 | texto #111111
   ============================================================ */

:root {
  --blue: #478ac9;
  --blue-hover: #387cbd;
  --blue-dark: #035aa6;
  --blue-deep: #01579b;
  --blue-light: #29a7d9;
  --sky: #66ccff;
  --map-blue: #0094d9;
  --map-hover: #003399;
  --yellow: #ffc00b;
  --yellow-dark: #efb200;
  --amber: #ffad05;
  --amber-dark: #ea9d00;
  --ink: #111111;
  --text: #2f3a46;
  --muted: #5c6b7a;
  --bg-light: #f2f7fc;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(3, 90, 166, 0.10);
  --shadow-soft: 0 6px 18px rgba(3, 90, 166, 0.08);
  --header-h: 177px;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
  --font-alt: "Roboto Condensed", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--blue-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--blue-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(56px, 9vw, 104px) 0;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.section-light { background: var(--bg-light); }

.section-blue {
  background: var(--blue-dark) url("images/b5225536-b997-41e2-9dd3-4b50dfbf9f7a.png") center / cover no-repeat;
  color: var(--white);
}

.section-blue h2,
.section-blue h3 { color: var(--white); }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: var(--yellow);
  margin-top: 14px;
}

.center .section-title::after { margin-inline: auto; }
.center { text-align: center; }

.lead {
  font-family: var(--font-alt);
  font-size: 1.08rem;
  color: var(--muted);
}

.section-blue .lead { color: rgba(255, 255, 255, 0.88); }

/* ---------- Botões ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 30px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(255, 192, 11, 0.35);
}

.btn-yellow:hover { background: var(--amber); }

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--yellow);
}

.btn-outline:hover { background: var(--yellow); color: var(--ink); }

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-white:hover { background: var(--yellow); color: var(--ink); }

/* ---------- Cabeçalho ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.25s;
}

.site-header.scrolled { box-shadow: 0 6px 24px rgba(3, 90, 166, 0.12); }

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img { height: 177px; width: auto; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue-dark);
  padding: 10px 12px;
  border-radius: 8px;
  transition: color 0.2s, background-color 0.2s;
}

.site-nav a:hover { color: var(--amber-dark); background: rgba(255, 192, 11, 0.12); }

.header-cta { white-space: nowrap; padding: 11px 22px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--blue-dark);
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0 0;
  text-align: center;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.3rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.08;
  max-width: 18ch;
  margin: 0 auto 18px;
}

.hero h1 mark {
  background: linear-gradient(transparent 62%, rgba(255, 192, 11, 0.65) 62%);
  color: inherit;
}

.hero-sub {
  font-family: var(--font-alt);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-wave {
  margin-top: clamp(8px, 3vw, 30px);
  line-height: 0;
}

.hero-wave img {
  width: 100%;
  height: clamp(110px, 22vw, 240px);
  object-fit: cover;
  object-position: center 65%;
}

/* ---------- Quem somos ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: -22px auto auto -22px;
  width: 140px;
  height: 140px;
  background: url("images/bc2cd006-954b-45ae-a7db-54c3afc8f483.png") center / 420px auto;
  z-index: -1;
  opacity: 0.9;
}

.service-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.service-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(71, 138, 201, 0.25);
  border-left: 5px solid var(--yellow);
  border-radius: 12px;
  padding: 14px 18px;
  text-decoration: none;
  font-family: var(--font-alt);
  font-size: 1rem;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-links a:hover { transform: translateX(4px); box-shadow: var(--shadow); }

.service-links strong { color: var(--blue-dark); white-space: nowrap; }

/* ---------- Metodologia ---------- */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(26px, 4vw, 44px);
}

.method-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 5px solid var(--yellow);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.method-card figure {
  margin: 0 0 14px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-card figure img { max-height: 130px; width: auto; }

.method-card h3 {
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}

.method-card p {
  font-family: var(--font-alt);
  color: var(--muted);
  margin: 0;
  text-align: justify;
}

/* ---------- Serviços (intro) ---------- */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.services-grid .big-quote {
  font-family: var(--font-alt);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text);
  text-align: justify;
}

.services-grid .big-quote strong { color: var(--blue-dark); }
.services-grid .big-quote u { text-decoration-color: var(--yellow); text-decoration-thickness: 3px; }

.services-photo { position: relative; text-align: center; }

.services-photo > img {
  max-height: 440px;
  width: auto;
}

.services-photo::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  background: url("images/bc2cd006-954b-45ae-a7db-54c3afc8f483.png") center / 420px auto;
  z-index: -1;
}

/* ---------- Monitoramento Aquanet ---------- */

.monitor-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.monitor-intro img {
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}

.monitor-text p {
  font-family: var(--font-alt);
  font-size: 1.06rem;
  text-align: justify;
  color: rgba(255, 255, 255, 0.92);
}

.monitor-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: clamp(30px, 5vw, 56px);
}

.monitor-cols p {
  font-family: var(--font-alt);
  font-size: 1.06rem;
  text-align: justify;
  color: rgba(255, 255, 255, 0.92);
}

.monitor-cols .photo-frame { text-align: center; }

.monitor-cols .photo-frame img { max-height: 360px; width: auto; }

.benefit-head {
  font-family: var(--font-alt);
  font-size: 1.15rem;
  text-align: center;
  max-width: 720px;
  margin: clamp(36px, 6vw, 64px) auto 26px;
  color: var(--white);
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: clamp(18px, 3vw, 30px);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.benefit-card img { height: 86px; width: auto; margin-bottom: 14px; }

.benefit-card p {
  font-family: var(--font-alt);
  font-size: 1.05rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.benefit-card strong { color: var(--yellow); }

/* ---------- Vistoria eletrônica ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 26px);
  margin-top: clamp(28px, 4vw, 46px);
  counter-reset: passo;
}

.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 30px 22px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(255, 192, 11, 0.45);
}

.step img { height: 84px; width: auto; margin-bottom: 12px; }

.step p {
  font-family: var(--font-alt);
  margin: 0;
  color: var(--text);
}

.vistoria-deco {
  position: absolute;
  width: 110px;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.equip-note {
  font-family: var(--font-alt);
  text-align: justify;
  max-width: 860px;
}

.equip-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 8px;
  padding: 0;
  list-style: none;
}

.equip-chips li {
  font-family: var(--font-alt);
  font-weight: 700;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(71, 138, 201, 0.3);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow-soft);
}

.equip-chips li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  margin-right: 10px;
}

/* Testes de estanqueidade */

.tests-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  color: var(--white);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 56px);
  margin-top: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.tests-panel h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
  font-weight: 500;
}

.tests-panel .eyebrow { color: var(--yellow); }

.tests-splash {
  position: absolute;
  right: -40px;
  top: -30px;
  width: 320px;
  opacity: 0.28;
  pointer-events: none;
}

.tests-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 36px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.tests-list li {
  font-family: var(--font-alt);
  font-size: 1.02rem;
  padding-left: 28px;
  position: relative;
}

.tests-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--amber);
}

.tests-footnote {
  position: relative;
  font-family: var(--font-alt);
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.92);
  text-align: justify;
}

/* ---------- Parceiros / Mapa ---------- */

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.map-svg {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  margin-inline: auto;
}

.map-svg path {
  fill: var(--map-blue);
  stroke: #fff;
  stroke-width: 1.04;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.2s;
}
.map-svg path.circle { stroke: none; }
.map-svg text {
  fill: #fff;
  font: 700 12px Arial, sans-serif;
  pointer-events: none;
}
.map-svg path.circle { fill: var(--sky); }

.map-svg .uf-partner { cursor: pointer; outline: none; }
.map-svg .uf-partner path { fill: var(--blue-deep); }
.map-svg .uf-partner path.circle { fill: #6ec6ff; }
.map-svg .uf-partner:hover path,
.map-svg .uf-partner:focus-visible path { fill: var(--map-hover); }

.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 14px;
  font-family: var(--font-alt);
  font-size: 0.95rem;
  color: var(--muted);
}

.map-legend span { display: inline-flex; align-items: center; gap: 8px; }

.map-legend i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.map-legend .lg-yes { background: var(--blue-deep); }
.map-legend .lg-no { background: var(--map-blue); }

.partner-cta {
  margin-top: 28px;
  padding: 22px 26px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 5px solid var(--yellow);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.partner-cta h3 { margin: 0; font-size: 1.25rem; font-weight: 500; }

/* ---------- Aplicativo ---------- */

.app-section {
  background: var(--white) url("images/a2492df0-1af9-4813-858d-6845da8f8ea5.png") bottom center / cover no-repeat;
}

.app-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark) 55%, var(--blue));
  border-radius: 28px;
  padding: clamp(30px, 5vw, 60px);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-card h2 {
  color: var(--yellow);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 500;
  text-transform: uppercase;
}

.app-card .app-sub {
  font-family: var(--font-alt);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 26px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badges img {
  height: 60px;
  width: auto;
  transition: transform 0.2s;
}

.store-badges a:hover img { transform: scale(1.05); }

.app-phone { text-align: center; }

.app-phone img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

/* ---------- Depoimentos ---------- */

.t-slider {
  position: relative;
  max-width: 860px;
  margin: clamp(28px, 4vw, 44px) auto 0;
}

.t-viewport { overflow: hidden; border-radius: 24px; }

.t-track {
  display: flex;
  transition: transform 0.5s ease;
}

.t-slide {
  flex: 0 0 100%;
  min-width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 5vw, 52px) clamp(22px, 6vw, 70px);
  text-align: center;
}

.t-slide .t-quote-icon {
  height: 44px;
  width: auto;
  opacity: 0.85;
  margin-bottom: 14px;
}

.t-slide blockquote {
  margin: 0 0 22px;
  font-family: var(--font-alt);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text);
}

.t-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 3px solid var(--yellow);
  width: fit-content;
  margin: 0 auto;
  padding-top: 14px;
}

.t-author img { height: 42px; width: auto; }

.t-author strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--blue-dark);
  line-height: 1.2;
}

.t-author small { color: var(--muted); font-family: var(--font-alt); }

.t-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
  z-index: 2;
}

.t-btn:hover { background: var(--yellow); color: var(--ink); }

.t-btn svg { width: 18px; height: 18px; fill: currentColor; }

.t-prev { left: -10px; }
.t-next { right: -10px; }

.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.t-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(3, 90, 166, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s, transform 0.2s;
}

.t-dots button.active { background: var(--amber); transform: scale(1.25); }

/* ---------- FAQ ---------- */

.faq-groups {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
  margin-top: clamp(26px, 4vw, 40px);
}

.faq-group h3 {
  color: var(--yellow);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.acc-item {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  color: var(--white);
  font-family: var(--font-alt);
  font-size: 1.06rem;
  font-weight: 700;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  transition: color 0.2s;
}

.acc-btn:hover { color: var(--yellow); }

.acc-btn .acc-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.3s;
}

.acc-item.open .acc-icon { transform: rotate(45deg); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.acc-item.open .acc-panel { grid-template-rows: 1fr; }

.acc-panel-inner { overflow: hidden; }

.acc-content {
  padding: 0 20px 20px;
  font-family: var(--font-alt);
  color: rgba(255, 255, 255, 0.92);
  text-align: justify;
}

.acc-content ul { margin: 8px 0; padding-left: 22px; }
.acc-content li { margin-bottom: 6px; }

/* ---------- Rodapé ---------- */

.site-footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.92);
  padding: clamp(44px, 7vw, 72px) 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-brand .logo-chip {
  display: inline-block;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  margin-bottom: 16px;
}

.footer-brand .logo-chip img { height: 84px; width: auto; display: block; }

.footer-brand p { font-family: var(--font-alt); max-width: 360px; }

.footer-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-alt);
  font-size: 1rem;
}

.footer-contacts .ico {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contacts .ico img { width: 30px; height: 30px; }

.footer-contacts a { color: var(--white); text-decoration: none; }
.footer-contacts a:hover { color: var(--yellow); }

.footer-lgpd {
  text-align: center;
  margin: 24px 0 14px;
}

.footer-lgpd a {
  color: var(--yellow);
  font-family: var(--font-alt);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 192, 11, 0.6);
}

.footer-lgpd a:hover { border-bottom-style: solid; }

.footer-copy {
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  text-align: justify;
}

/* ---------- Modais ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 30, 60, 0.65);
}

.modal-card {
  position: relative;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  width: min(900px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.modal-card.narrow { width: min(420px, 100%); }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: var(--bg-light);
  color: var(--blue-dark);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s;
}

.modal-close:hover { background: var(--yellow); color: var(--ink); }

.modal-card h3 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 4px;
  padding-right: 40px;
}

.modal-card .modal-sub {
  font-family: var(--font-alt);
  color: var(--muted);
  margin-bottom: 18px;
}

/* Login */

.login-form .form-group { margin-bottom: 14px; }

.login-form label {
  display: block;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue-dark);
  margin-bottom: 5px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  border: 2px solid rgba(71, 138, 201, 0.35);
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.login-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(71, 138, 201, 0.15);
}

.login-form .btn { width: 100%; margin-top: 6px; }

/* Tabs de estados (parceiros) */

.state-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.state-tab {
  border: 2px solid rgba(71, 138, 201, 0.35);
  background: var(--white);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 7px 18px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.state-tab:hover { border-color: var(--yellow); }

.state-tab.active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

.state-panel { display: none; }
.state-panel.active { display: block; }

.partner-table-wrap { overflow-x: auto; }

.partner-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-alt);
  font-size: 0.98rem;
}

.partner-table th {
  background: var(--blue-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  text-align: left;
  padding: 12px 14px;
}

.partner-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(71, 138, 201, 0.18);
  vertical-align: top;
}

.partner-table tbody tr:nth-child(even) { background: var(--bg-light); }

/* ---------- Flutuantes ---------- */

.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.float-wa:hover { transform: scale(1.08); }

.float-wa img { width: 100%; height: 100%; border-radius: 50%; }

.to-top {
  position: fixed;
  right: 27px;
  bottom: 94px;
  z-index: 70;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.to-top.show { opacity: 1; visibility: visible; transform: none; }

.to-top img { width: 22px; height: 22px; }

/* ---------- Animações de entrada ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .t-track { transition: none; }
}

/* ============================================================
   Responsividade
   ============================================================ */

@media (max-width: 1100px) {
  .site-nav a { padding: 10px 8px; font-size: 0.8rem; }
}

@media (max-width: 991px) {
  :root { --header-h: 110px; }
  .brand img { height: 100px; }

  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 18px 30px rgba(3, 90, 166, 0.15);
    display: none;
    padding: 10px 4vw 18px;
  }

  .site-nav.open { display: block; }

  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }

  .site-nav a {
    font-size: 1rem;
    padding: 13px 10px;
    border-bottom: 1px solid rgba(71, 138, 201, 0.12);
    border-radius: 0;
  }

  .header-cta { display: none; }
  .site-nav .nav-cta-item { display: block; padding: 16px 10px 4px; }
  .site-nav .nav-cta-item .btn { width: 100%; text-align: center; }

  .about-grid,
  .services-grid,
  .monitor-intro,
  .monitor-cols,
  .partners-grid,
  .app-card { grid-template-columns: 1fr; }

  .about-photo { order: -1; max-width: 560px; margin-inline: auto; }
  .services-photo { max-width: 360px; margin-inline: auto; }

  .cards-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 34px; }

  .footer-grid { grid-template-columns: 1fr; }

  .vistoria-deco { display: none; }
  .app-phone img { max-height: 340px; }
}

@media (min-width: 992px) {
  .site-nav .nav-cta-item { display: none; }
}

@media (max-width: 600px) {
  :root { --header-h: 84px; }
  .brand img { height: 70px; }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tests-list { grid-template-columns: 1fr; }
  .benefit-cards { grid-template-columns: 1fr; }
  .footer-contacts { grid-template-columns: 1fr; }
  .t-prev { left: 4px; }
  .t-next { right: 4px; }
  .t-slide { padding-inline: 18px; }
  .hero-actions .btn { width: 100%; }
  .partner-cta { flex-direction: column; align-items: stretch; text-align: center; }
}
