:root {
  --ink: #050914;
  --navy: #07111f;
  --navy-2: #0b1d34;
  --paper: #f7f9fc;
  --white: #ffffff;
  --muted: #6d7786;
  --line: rgba(8, 18, 32, .12);
  --cyan: #13c8f4;
  --blue: #0b84ff;
  --green: #8ce600;
  --gold: #d9b66d;
  --shadow: 0 22px 60px rgba(1, 8, 20, .18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 9, 20, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  min-height: 94px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  min-width: 270px;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 8px;
  padding: 4px;
  background: #02050c;
  border: 1px solid rgba(19, 200, 244, .32);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .32), 0 0 0 4px rgba(255, 255, 255, .04);
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.menu a {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 11px;
  border-radius: 6px;
}

.menu a:hover,
.menu a.active {
  color: var(--white);
  background: rgba(19, 200, 244, .12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #06d66b, #049b48);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(4, 155, 72, .28);
}

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

.btn-outline {
  border-color: rgba(255, 255, 255, .28);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.hero {
  position: relative;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .98) 0%, rgba(5, 9, 20, .82) 38%, rgba(5, 9, 20, .22) 72%),
    url("assets/hero-fazano.png?v=clean-1") center right / cover no-repeat;
}

body[data-page="Fazano Localiza"] .hero::before {
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .98) 0%, rgba(5, 9, 20, .82) 38%, rgba(5, 9, 20, .22) 72%),
    url("assets/hero-localiza.png?v=clean-1") center right / cover no-repeat;
}

body[data-page="Fazano Desentope"] .hero::before {
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .98) 0%, rgba(5, 9, 20, .83) 38%, rgba(5, 9, 20, .20) 72%),
    url("assets/hero-desentope.png?v=clean-1") center right / cover no-repeat;
}

body[data-page="Fazano Hidráulica"] .hero::before {
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .98) 0%, rgba(5, 9, 20, .82) 38%, rgba(5, 9, 20, .22) 72%),
    url("assets/hero-hidraulica.png?v=clean-1") center right / cover no-repeat;
}

body[data-page="Fazano Higieniza"] .hero::before {
  background:
    linear-gradient(90deg, rgba(5, 9, 20, .98) 0%, rgba(5, 9, 20, .80) 38%, rgba(5, 9, 20, .18) 72%),
    url("assets/hero-higieniza.png?v=clean-1") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--green), var(--gold));
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 74px 22px 92px;
  display: grid;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  margin-top: 42px;
  max-width: 860px;
}

.trust-row div {
  padding: 16px;
  background: rgba(5, 9, 20, .58);
}

.trust-row strong {
  display: block;
  font-size: 20px;
}

.trust-row span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: 78px 22px;
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

.section.white {
  background: var(--white);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  max-width: 430px;
  color: var(--muted);
  line-height: 1.6;
}

.dark .section-head p,
.dark .card p,
.dark .area-list li {
  color: rgba(255, 255, 255, .70);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(6, 16, 30, .06);
}

.dark .card {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  margin-bottom: 18px;
  background: rgba(19, 200, 244, .12);
  color: var(--cyan);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.service-link {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
}

.service-link img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 6px;
  padding: 4px;
  background: #02050c;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.logo-panel {
  background: linear-gradient(145deg, #020816, #0a1d34);
  padding: 24px;
}

.logo-panel img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 6px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(19, 200, 244, .12);
}

.accent-green .list li::before,
.accent-green .card .icon {
  background: rgba(140, 230, 0, .14);
  color: var(--green);
}

.accent-green .list li::before {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(140, 230, 0, .13);
}

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

.area-list {
  columns: 2;
  margin: 0;
  padding-left: 18px;
  line-height: 1.95;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.proof-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #07111f;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(6, 16, 30, .10);
}

.proof-item.large {
  min-height: 460px;
  grid-row: span 2;
}

.proof-item img,
.proof-item video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.proof-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 7, 17, .72));
  pointer-events: none;
}

.proof-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-weight: 800;
  line-height: 1.25;
}

.proof-item video + .proof-caption {
  bottom: 48px;
}

.cta-band {
  background: linear-gradient(135deg, #061222, #0a2441);
  color: var(--white);
  padding: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 40px);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
}

.footer {
  background: #030711;
  color: rgba(255, 255, 255, .70);
  padding: 34px 22px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-width: 178px;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    justify-content: flex-start;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 58px;
  }

  .trust-row,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .split,
  .areas,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item.large {
    min-height: 360px;
  }

  .section-head,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand span {
    font-size: 11px;
  }

  .menu a {
    padding: 9px 8px;
    font-size: 12px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 9, 20, .98) 0%, rgba(5, 9, 20, .86) 62%, rgba(5, 9, 20, .68) 100%),
      url("assets/hero-fazano.png?v=clean-1") center / cover no-repeat;
  }

  body[data-page="Fazano Localiza"] .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 9, 20, .98) 0%, rgba(5, 9, 20, .86) 62%, rgba(5, 9, 20, .68) 100%),
      url("assets/hero-localiza.png?v=clean-1") center / cover no-repeat;
  }

  body[data-page="Fazano Desentope"] .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 9, 20, .98) 0%, rgba(5, 9, 20, .86) 62%, rgba(5, 9, 20, .68) 100%),
      url("assets/hero-desentope.png?v=clean-1") center / cover no-repeat;
  }

  body[data-page="Fazano Hidráulica"] .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 9, 20, .98) 0%, rgba(5, 9, 20, .86) 62%, rgba(5, 9, 20, .68) 100%),
      url("assets/hero-hidraulica.png?v=clean-1") center / cover no-repeat;
  }

  body[data-page="Fazano Higieniza"] .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 9, 20, .98) 0%, rgba(5, 9, 20, .86) 62%, rgba(5, 9, 20, .68) 100%),
      url("assets/hero-higieniza.png?v=clean-1") center / cover no-repeat;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-row,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .service-link {
    grid-template-columns: 64px 1fr;
  }

  .service-link img {
    width: 64px;
    height: 64px;
  }

  .area-list {
    columns: 1;
  }

  .section {
    padding: 56px 18px;
  }

  .cta-band {
    padding: 26px;
  }

  .float-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
