/* Sandra's Cleaning Service — direção "Fresh Linen"
   Paleta e tipografia: ver docs/superpowers/specs/2026-07-27-site-sandra-design.md */

:root {
  --linen: #FBFBF8;
  --wash: #E7F0F4;
  --chambray: #A8C4D4;
  --slate: #2F4C57;
  --mid: #4A626D;
  --muted: #4A6B7C;
  --card-line: #DEE9EE;
  --shadow-soft: 0 2px 6px rgba(47, 76, 87, 0.05), 0 14px 34px rgba(47, 76, 87, 0.08);
  --shadow-lift: 0 4px 10px rgba(47, 76, 87, 0.07), 0 22px 48px rgba(47, 76, 87, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: Mulish, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--linen);
  color: var(--mid);
}

h1, h2, h3 {
  font-family: Marcellus, Georgia, serif;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.12;
  margin: 0 0 0.5em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--slate);
  outline-offset: 3px;
  border-radius: 4px;
}

.inner { max-width: 1000px; margin: 0 auto; }

.eyebrow {
  font-family: Mulish, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.btn-solid {
  background: var(--slate);
  color: var(--linen);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(47, 76, 87, 0.18), 0 10px 24px rgba(47, 76, 87, 0.16);
}
.btn-solid:hover { background: #24404a; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(47, 76, 87, 0.2), 0 16px 34px rgba(47, 76, 87, 0.22); }
.btn-outline { border: 1.5px solid var(--chambray); color: var(--slate); font-weight: 600; background: rgba(255, 255, 255, 0.5); }
.btn-outline:hover { border-color: var(--slate); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Barra fixa ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 248, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}
.topbar.scrolled { box-shadow: 0 1px 0 rgba(47, 76, 87, 0.08), 0 10px 30px rgba(47, 76, 87, 0.08); }

.nav {
  max-width: 1000px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.wordmark img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; font-size: 14px; font-weight: 600; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px;
  background: var(--slate);
  transition: right 0.25s ease;
}
.nav-links a:hover { color: var(--slate); }
.nav-links a:hover::after { right: 0; }
.nav-phone { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; color: var(--slate); }

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

.hero {
  position: relative;
  background:
    radial-gradient(90% 70% at 85% 0%, rgba(168, 196, 212, 0.28) 0%, rgba(168, 196, 212, 0) 60%),
    linear-gradient(175deg, var(--wash) 0%, var(--linen) 64%);
  padding: 96px 24px 128px;
}
.hero-inner { max-width: 1000px; margin: 0 auto; will-change: transform, opacity, filter; }
.hero h1 { font-size: clamp(42px, 7vw, 66px); max-width: 640px; margin-bottom: 22px; letter-spacing: -0.01em; }
.hero-sub { font-weight: 300; font-size: clamp(17px, 2.4vw, 20px); max-width: 500px; margin: 0 0 36px; }
.trust { font-size: 13px; letter-spacing: 0.06em; color: var(--muted); margin: 22px 0 0; }

.wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 26px; }
.wave path { stroke: var(--chambray); stroke-width: 1.5; fill: none; }

/* ---------- Serviços ---------- */

.services { padding: 104px 24px 96px; }
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card {
  background: #fff;
  border: 1px solid var(--card-line);
  border-radius: 18px;
  padding: 38px 34px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--chambray); }
.card h3 { font-size: 26px; margin-bottom: 12px; }
.card p { font-size: 15.5px; margin: 0 0 18px; }
.card-link { font-size: 14px; font-weight: 700; letter-spacing: 0.03em; color: var(--slate); }
.card-link:hover { color: #1f353e; }

/* ---------- Every visit includes ---------- */

.includes {
  background: linear-gradient(180deg, var(--wash) 0%, #eef4f7 100%);
  padding: 104px 24px;
}
.includes h2 { font-size: clamp(30px, 4vw, 38px); margin-bottom: 34px; }

.checks {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  max-width: 700px;
}
.check {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15.5px;
  color: #3A5560;
  padding: 10px 0;
  border-bottom: 1px solid rgba(168, 196, 212, 0.45);
}
.check svg {
  flex: none;
  width: 24px;
  height: 24px;
  padding: 5px;
  border: 1.5px solid var(--chambray);
  border-radius: 50%;
  background: rgba(251, 251, 248, 0.75);
}
.tick {
  stroke: var(--slate);
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 24;
  stroke-dashoffset: 0;
}
html.js .check .tick { stroke-dashoffset: 24; }
html.js .check.in-view .tick { stroke-dashoffset: 0; transition: stroke-dashoffset 0.5s ease; }
html.js .check.in-view:nth-child(2) .tick { transition-delay: 0.08s; }
html.js .check.in-view:nth-child(3) .tick { transition-delay: 0.16s; }
html.js .check.in-view:nth-child(4) .tick { transition-delay: 0.24s; }
html.js .check.in-view:nth-child(5) .tick { transition-delay: 0.32s; }
html.js .check.in-view:nth-child(6) .tick { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  html.js .check .tick,
  html.js .check.in-view .tick { stroke-dashoffset: 0; transition: none; }
}

.includes-note { font-size: 15px; margin: 0; }
.includes-note strong { color: var(--slate); }

/* ---------- About ---------- */

.about { padding: 104px 24px; }
.about .inner { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.about.has-photo .inner { grid-template-columns: 300px 1fr; }
.about-photo { margin: 0; }
.about-photo img { border-radius: 16px; }

.seal {
  float: right;
  width: 92px;
  height: 92px;
  margin-left: 18px;
  border: 1.5px solid var(--chambray);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.6);
}
.seal-year { font-family: Marcellus, Georgia, serif; font-size: 23px; }
.seal-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.about h2 { font-size: clamp(30px, 4vw, 38px); }
.about p { max-width: 560px; font-size: 16.5px; }

.badges { list-style: none; padding: 0; margin: 26px 0 0; display: flex; gap: 12px; flex-wrap: wrap; }
.badges li {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--card-line);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 1px 3px rgba(47, 76, 87, 0.06);
}

/* ---------- Her work ---------- */

.work { background: #fff; padding: 104px 24px; }
.work h2 { font-size: clamp(30px, 4vw, 38px); margin-bottom: 30px; }
.shots { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.shots img, .shots-row img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.shots img:hover, .shots-row img:hover { transform: scale(1.015); box-shadow: var(--shadow-soft); }
.shot-big { grid-row: 1 / 3; }
.shots-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }

/* ---------- Area ---------- */

.area {
  background: linear-gradient(180deg, var(--linen), var(--wash));
  padding: 112px 24px;
  text-align: center;
}
.area h2 { font-size: clamp(28px, 3.6vw, 34px); margin-bottom: 20px; }
.towns {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 2.3;
  max-width: 620px;
  margin: 0 auto 16px;
}
.area-note { font-size: 14.5px; margin: 0; }

/* ---------- Quotes (ativada junto com depoimentos reais) ---------- */

.quotes { padding: 104px 24px; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quote { margin: 0; background: #fff; border: 1px solid var(--card-line); border-radius: 18px; padding: 30px; }
.quote p { font-family: Marcellus, Georgia, serif; font-style: italic; font-size: 17px; margin: 0 0 14px; }
.quote cite {
  font-style: normal;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Contato ---------- */

.contact {
  background:
    radial-gradient(80% 90% at 15% 100%, rgba(168, 196, 212, 0.25) 0%, rgba(168, 196, 212, 0) 60%),
    var(--wash);
  padding: 128px 24px;
  text-align: center;
}
.contact h2 { font-size: clamp(32px, 5vw, 44px); }
.contact p { max-width: 480px; margin: 0 auto 32px; font-size: 16.5px; }
.contact .cta-row { justify-content: center; }

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

.footer { background: var(--slate); color: #C7D8E0; padding: 64px 24px 0; font-size: 14px; }
.footer a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(199, 216, 224, 0.4); }
.footer a:hover { color: var(--linen); text-decoration-color: var(--linen); }
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 14px; }
.footer-brand p { margin: 0; max-width: 300px; line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-h {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8FA6B4;
  margin-bottom: 4px;
}
.footer-base {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(199, 216, 224, 0.18);
  padding: 20px 0 26px;
  font-size: 12.5px;
  color: #8FA6B4;
}

/* ---------- Revelação ao rolar ---------- */

html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Mobile ---------- */

@media (max-width: 719px) {
  .card-grid, .checks, .quote-grid, .shots, .shots-row, .footer-inner { grid-template-columns: 1fr; }
  .shot-big { grid-row: auto; }
  .about.has-photo .inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .seal { float: none; margin: 0 0 20px; }
  .hero { padding: 64px 24px 96px; }
  .services, .includes, .about, .work, .quotes { padding-top: 72px; padding-bottom: 72px; }
  .area, .contact { padding-top: 88px; padding-bottom: 88px; }
}
