﻿:root {
  --ink: #17212b;
  --muted: #5c6a78;
  --line: #dce5ec;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --brand: #0879b8;
  --brand-dark: #075984;
  --accent: #14a66f;
  --accent-dark: #0b7d52;
  --warning: #f2b705;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(20, 36, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.92rem;
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.top-strip a {
  text-decoration: none;
  font-weight: 700;
}

.top-phones {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
}

.logo img {
  width: 210px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand);
  background: var(--soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(20, 166, 111, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: var(--brand);
  color: #fff;
}

.btn-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  background: #0d2233;
}

.hero picture,
.hero .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero .hero-media {
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 26, 40, 0.9), rgba(6, 26, 40, 0.66) 52%, rgba(6, 26, 40, 0.22));
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  align-items: start;
  gap: 44px;
  min-height: 610px;
  padding: 30px 0 50px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--warning);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.45vw, 4.05rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.18rem;
}

.lead {
  max-width: 680px;
  margin: 14px 0 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 720px;
}

.trust-item {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.trust-item strong {
  display: block;
  font-size: 1.02rem;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.quote-panel {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 8px 0 18px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.84rem;
}

.privacy-check input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.section {
  padding: 76px 0;
}

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

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

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.service-grid,
.review-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.review-card,
.benefit-card,
.faq-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div,
.review-card,
.benefit-card,
.contact-card {
  padding: 18px;
}

.service-card p,
.review-card p,
.benefit-card p,
.contact-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding: 20px;
  border-left: 4px solid var(--brand);
  background: #fff;
}

.step::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

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

.faq-item {
  padding: 18px 20px;
}

.faq-item summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

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

.cta-band {
  padding: 48px 0;
  color: #fff;
  background: var(--brand-dark);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-band .btn {
  min-height: 40px;
  padding: 9px 18px;
  white-space: nowrap;
}

.page-hero {
  padding: 76px 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(7, 89, 132, 0.96), rgba(20, 166, 111, 0.82)), url("images/limpeza-caixa-inspecao.webp") center/cover;
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.site-footer {
  padding: 44px 0 26px;
  color: #dbeaf3;
  background: #0d2233;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 24px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #dbeaf3;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.site-footer a {
  text-decoration: none;
}

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b8cbd7;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-width: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(20, 166, 111, 0.35);
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.consent {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 35;
  display: none;
  width: min(420px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.consent.is-visible {
  display: block;
}

.consent p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 960px) {
  .top-strip .container,
  .header-inner,
  .section-head,
  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    display: flex;
    min-height: auto;
    padding: 12px 0;
  }

  .logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero,
  .hero .container {
    min-height: auto;
  }

  .hero .container,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    max-width: 560px;
  }

  .service-grid,
  .review-grid,
  .benefit-grid,
  .steps,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .top-strip {
    display: none;
  }

  .hero .container {
    padding: 46px 0 54px;
  }

  .hero::after {
    background: rgba(6, 26, 40, 0.78);
  }

  .hero-ctas,
  .header-actions,
  .consent-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-grid,
  .review-grid,
  .benefit-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .logo img {
    width: 180px;
  }
}
