/* ═══════════════════════════════════════════════════════════════
   Daniela Cleaning Services — identidade "quiet luxury"
   Paleta do BrandBook: navy #14243E / #2F4A6E, steel #94AECC,
   taupe #C2B0A2, cream #F4EBE1, ivory #FFFDF8.
   Tipografia: Prata (títulos, no lugar de "The Yougest") + Poppins.
   Assinaturas visuais: imagens em arco, selo circular girando,
   hairlines taupe, separador ✦, bandas navy alternadas.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink: #14243e;
  --navy: #2f4a6e;
  --steel: #94aecc;
  --taupe: #c2b0a2;
  --taupe-deep: #a8927f;
  --cream: #f4ebe1;
  --ivory: #fffdf8;
  --text: #2c3548;
  --muted: #6b7386;
  --line: rgba(20, 36, 62, 0.14);
  --line-light: rgba(255, 253, 248, 0.18);
  --serif: 'Prata', 'Georgia', serif;
  --sans: 'Poppins', 'Segoe UI', sans-serif;
  --arch: 999px 999px 14px 14px;
  --shadow: 0 24px 60px -30px rgba(20, 36, 62, 0.35);
  --wrap: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--ink); line-height: 1.18; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.22rem; }

a { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--taupe-deep); }

ul { list-style: none; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin-bottom: 14px;
}

.section { padding: 96px 24px; }
.section-inner { max-width: var(--wrap); margin: 0 auto; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 14px; color: var(--muted); }

.sparkle-divider {
  display: flex; align-items: center; gap: 18px; justify-content: center;
  color: var(--taupe); margin: 0 auto 18px; font-size: 0.85rem;
}
.sparkle-divider::before, .sparkle-divider::after {
  content: ''; height: 1px; width: 64px; background: var(--taupe);
  opacity: 0.55;
}

/* ── Botões ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary { background: var(--ink); color: var(--ivory); }
.btn-primary:hover { background: var(--taupe-deep); color: var(--ivory); transform: translateY(-2px); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--ivory); }
.btn-outline-light { border-color: rgba(255, 253, 248, 0.6); color: var(--ivory); background: transparent; }
.btn-outline-light:hover { background: var(--ivory); color: var(--ink); }
.btn-block { width: 100%; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(20, 36, 62, 0.25); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand img { height: 56px; width: auto; }

.main-nav > ul { display: flex; align-items: center; gap: 30px; }
.main-nav > ul > li > a,
.dropdown-toggle {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  background: none; border: none; cursor: pointer; padding: 8px 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.main-nav > ul > li > a:hover, .dropdown-toggle:hover { color: var(--taupe-deep); }
.chevron { font-size: 0.7rem; color: var(--taupe-deep); transition: transform 0.2s ease; }

.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--ivory); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); min-width: 250px; padding: 10px; z-index: 70;
}
.dropdown li a {
  display: block; padding: 11px 16px; border-radius: 9px;
  font-size: 0.85rem; letter-spacing: 0.04em; color: var(--ink);
}
.dropdown li a:hover { background: var(--cream); color: var(--ink); }
.has-dropdown.open .dropdown { display: block; }
.has-dropdown.open .chevron { transform: rotate(180deg); }
@media (min-width: 921px) {
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { display: block; }
  .has-dropdown:hover .chevron,
  .has-dropdown:focus-within .chevron { transform: rotate(180deg); }
  /* Ponte invisível entre o botão e o submenu para o hover não cair no vão */
  .has-dropdown::after {
    content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 12px;
  }
}

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.3; }
.header-phone-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--taupe-deep);
}
.header-phone-number { font-family: var(--serif); font-size: 1.02rem; color: var(--ink); }
.header-cta { padding: 13px 26px; font-size: 0.76rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  margin: 5px 0; transition: all 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Extras do menu mobile (CTA + telefone): só aparecem no menu aberto */
.nav-mobile-extras { display: none; }

/* ── Hero (home) ────────────────────────────────────────── */
.hero { background: var(--cream); overflow: hidden; }
.hero-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 84px 24px 72px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--taupe-deep); }
.hero-lede { font-size: 1.08rem; color: var(--muted); max-width: 500px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-media { position: relative; justify-self: center; }
.hero-media img.hero-photo {
  width: min(420px, 100%); height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--arch); box-shadow: var(--shadow);
}
.hero-seal {
  position: absolute; bottom: -8px; left: -64px; width: 148px; height: 148px;
  animation: seal-spin 26s linear infinite;
}
@keyframes seal-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero-seal { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar { border-top: 1px solid var(--line); background: var(--cream); }
.trust-bar ul {
  max-width: var(--wrap); margin: 0 auto; padding: 20px 24px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
}
.trust-bar li {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.trust-bar li::before { content: '✦'; color: var(--taupe); font-size: 0.7rem; }

/* ── Cards de serviço ───────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.service-card {
  background: var(--ivory); text-align: center;
  border: 1px solid var(--line); border-radius: var(--arch);
  padding: 18px 18px 34px; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover;
  border-radius: calc(999px) calc(999px) 8px 8px;
}
.service-card h3 { margin: 24px 0 10px; }
.service-card p { font-size: 0.94rem; color: var(--muted); padding: 0 12px; }
.service-card .learn-more {
  display: inline-block; margin-top: 18px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe-deep);
  border-bottom: 1px solid var(--taupe); padding-bottom: 4px;
}
.service-card .learn-more:hover { color: var(--ink); border-color: var(--ink); }

/* ── About snippet / página ─────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-media { position: relative; justify-self: center; }
.split-media img.arch-photo {
  width: min(420px, 100%); height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--arch); box-shadow: var(--shadow);
}
.split-media .detail-photo {
  position: absolute; right: -48px; bottom: -40px; width: 190px; height: 190px;
  object-fit: cover; border-radius: 50%; border: 8px solid var(--ivory);
  box-shadow: var(--shadow);
}
.split-copy .eyebrow { margin-bottom: 12px; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy p { color: var(--muted); margin-bottom: 16px; }
.split-copy .btn { margin-top: 12px; }

.signature-line {
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink); margin-top: 20px;
}
.signature-line span { display: block; font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--taupe-deep); margin-top: 4px; }

/* ── Stats ──────────────────────────────────────────────── */
.stats-band { background: var(--ink); color: var(--ivory); }
.stats-band .section-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 64px 24px; max-width: var(--wrap); margin: 0 auto; text-align: center;
}
.stat-number { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--taupe); }
.stat-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--steel); margin-top: 8px;
}

/* ── Why choose us ──────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 56px; max-width: 940px; margin: 0 auto; }
.why-item { display: flex; gap: 22px; align-items: flex-start; }
.why-num { font-family: var(--serif); font-size: 2rem; color: var(--taupe); line-height: 1; min-width: 52px; }
.why-item h3 { margin-bottom: 8px; font-size: 1.08rem; }
.why-item p { font-size: 0.94rem; color: var(--muted); }

.values-grid { grid-template-columns: repeat(3, 1fr); max-width: none; }

/* ── Guarantee band ─────────────────────────────────────── */
.guarantee-band { background: var(--navy); color: var(--ivory); text-align: center; }
.guarantee-band .section-inner { max-width: 780px; }
.guarantee-band img { width: 120px; margin: 0 auto 26px; }
.guarantee-band h2 { color: var(--ivory); margin-bottom: 18px; }
.guarantee-band p { color: var(--steel); font-size: 1.05rem; }
.guarantee-band .btn { margin-top: 30px; }

/* ── How it works ───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.step { text-align: center; padding: 0 8px; }
.step-num {
  font-family: var(--serif); font-size: 1.4rem; color: var(--taupe-deep);
  width: 64px; height: 64px; border: 1px solid var(--taupe); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  background: var(--ivory);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial {
  background: var(--ivory); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 30px; display: flex; flex-direction: column; gap: 16px;
}
.testimonial-stars { color: var(--taupe-deep); letter-spacing: 0.2em; font-size: 0.9rem; }
.testimonial blockquote { font-family: var(--serif); font-size: 1.02rem; color: var(--ink); line-height: 1.55; }
.testimonial figcaption { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ── Referral band ──────────────────────────────────────── */
.referral-band { background: var(--taupe); }
.referral-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 56px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.referral-inner h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--ink); }
.referral-inner p { color: rgba(20, 36, 62, 0.75); margin-top: 8px; max-width: 560px; }

/* ── Service area ───────────────────────────────────────── */
.area-section { background: var(--ink); color: var(--ivory); }
.area-section .section-head h2 { color: var(--ivory); }
.area-section .section-head p { color: var(--steel); }
.area-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; max-width: 860px; margin: 0 auto 26px;
}
.area-list li {
  border: 1px solid var(--line-light); border-radius: 999px; padding: 9px 22px;
  font-size: 0.85rem; letter-spacing: 0.08em; color: var(--cream);
}
.area-note { text-align: center; color: var(--steel); font-size: 0.9rem; }

/* ── CTA band ───────────────────────────────────────────── */
.cta-band {
  position: relative; text-align: center; color: var(--ivory);
  background: linear-gradient(rgba(20, 36, 62, 0.82), rgba(20, 36, 62, 0.82)),
    url('/images/cta-band.webp') center / cover no-repeat;
  padding: 110px 24px;
}
.cta-band h2 { color: var(--ivory); margin-bottom: 16px; }
.cta-band p { color: var(--steel); max-width: 520px; margin: 0 auto 32px; }

/* ── Estimate section ───────────────────────────────────── */
.estimate-section { background: var(--cream); padding: 96px 24px; }
.estimate-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start;
}
.estimate-intro h2 { margin-bottom: 18px; }
.estimate-lede { color: var(--muted); margin-bottom: 26px; }
.estimate-points li {
  padding-left: 26px; position: relative; margin-bottom: 12px; color: var(--text);
}
.estimate-points li::before { content: '✦'; position: absolute; left: 0; color: var(--taupe-deep); font-size: 0.8rem; }

.estimate-form {
  background: var(--ivory); border: 1px solid var(--line); border-radius: 22px;
  padding: 42px 38px; box-shadow: var(--shadow);
}
.form-row { margin-bottom: 20px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label {
  display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 8px;
}
.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 0.95rem; color: var(--text); background: var(--ivory);
}
.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus { outline: 2px solid var(--steel); border-color: var(--steel); }
.form-consent { margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.72rem; font-weight: 300; letter-spacing: normal;
  text-transform: none; color: var(--muted); line-height: 1.55;
}
.checkbox input { width: auto; margin-top: 4px; accent-color: var(--navy); }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--navy); text-align: center; }

/* ── Page hero (páginas internas) ───────────────────────── */
.page-hero { background: var(--cream); text-align: center; padding: 84px 24px 64px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { max-width: 820px; margin: 0 auto 18px; }
.page-hero p { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }
.breadcrumbs {
  display: flex; justify-content: center; gap: 10px; margin-bottom: 22px;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.breadcrumbs a { color: var(--taupe-deep); }

/* ── Página de serviço ──────────────────────────────────── */
.service-layout {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: start;
}
.service-photo { border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow); position: sticky; top: 120px; }
.service-photo img { width: 100%; height: auto; aspect-ratio: 4 / 4.4; object-fit: cover; }
.included-list li {
  padding: 14px 0 14px 30px; position: relative; border-bottom: 1px solid var(--line);
}
.included-list li::before { content: '✦'; position: absolute; left: 0; color: var(--taupe-deep); font-size: 0.8rem; }
.service-copy h2 { margin: 40px 0 20px; font-size: 1.5rem; }
.service-copy h2:first-child { margin-top: 0; }
.service-copy > p { color: var(--muted); margin-bottom: 14px; }

.benefits-grid { display: grid; gap: 18px; }
.benefit {
  border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; background: var(--ivory);
}
.benefit h3 { font-size: 1rem; margin-bottom: 6px; }
.benefit p { font-size: 0.92rem; color: var(--muted); }

.faq details {
  border-bottom: 1px solid var(--line); padding: 20px 0;
}
.faq summary {
  font-family: var(--serif); font-size: 1.08rem; color: var(--ink); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--sans); color: var(--taupe-deep); font-size: 1.3rem; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 12px; color: var(--muted); font-size: 0.95rem; }

/* ── Galeria ────────────────────────────────────────────── */
.gallery-masonry { columns: 3 300px; column-gap: 24px; max-width: var(--wrap); margin: 0 auto; }
.gallery-masonry figure { margin-bottom: 24px; break-inside: avoid; border-radius: 16px; overflow: hidden; }
.gallery-masonry img { width: 100%; transition: transform 0.4s ease; }
.gallery-masonry figure:hover img { transform: scale(1.04); }

/* ── Páginas legais ─────────────────────────────────────── */
.legal-content { max-width: 760px; margin: 0 auto; padding: 72px 24px 96px; }
.legal-content h2 { font-size: 1.35rem; margin: 40px 0 14px; }
.legal-content p, .legal-content li { color: var(--muted); margin-bottom: 12px; font-size: 0.97rem; }
.legal-content ul { list-style: disc; padding-left: 22px; }

/* ── 404 ────────────────────────────────────────────────── */
.not-found { text-align: center; padding: 140px 24px; }
.not-found .stat-number { font-size: 5rem; color: var(--taupe); }
.not-found h1 { margin: 10px 0 18px; }
.not-found p { color: var(--muted); margin-bottom: 30px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: var(--cream); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 80px 24px 36px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 0.9fr 1.1fr 1fr 1.3fr; gap: 44px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line-light);
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 20px; }
.footer-tagline { color: var(--steel); font-size: 0.92rem; max-width: 300px; }
.footer-social { display: flex; gap: 12px; align-items: center; margin-top: 22px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-light); color: var(--cream);
  transition: all 0.25s ease;
}
.footer-social a:hover { color: var(--ink); background: var(--taupe); border-color: var(--taupe); }
.footer-col h3 {
  color: var(--taupe); font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; color: var(--steel); }
.footer-col a { color: var(--cream); font-size: 0.9rem; }
.footer-col a:hover { color: var(--taupe); }
.footer-areas { columns: 2; }
.footer-radius { margin-top: 14px; font-size: 0.8rem; color: var(--steel); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 28px; font-size: 0.8rem; color: var(--steel);
}

/* ── Inside Bar ─────────────────────────────────────────── */
.inside-bar { background: #000; padding: 14px 0; }
.inside-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.inside-bar-logo img { display: block; height: 24px; width: auto; }
.inside-bar-links { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; }
.inside-bar-links a { color: rgba(255, 255, 255, 0.4); text-decoration: none; transition: color 0.2s; }
.inside-bar-links a:hover { color: rgba(255, 255, 255, 0.85); }
.inside-bar-sep { color: rgba(255, 255, 255, 0.2); }

/* ── Reveals ────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ── Responsivo ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .stats-band .section-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .header-phone { display: none; }
}

@media (max-width: 920px) {
  .hero-inner, .split, .estimate-inner, .service-layout { grid-template-columns: 1fr; gap: 52px; }
  .hero-media { order: -1; }
  .hero-seal { left: auto; right: -12px; width: 116px; height: 116px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .why-grid, .values-grid { grid-template-columns: 1fr; }
  .split-media .detail-photo { right: 0; }
  .service-photo { position: static; }

  .nav-toggle { display: block; margin-right: -8px; }
  .main-nav { margin-left: auto; }
  .header-actions { display: none; }
  .main-nav > ul {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 16px 24px 24px;
    box-shadow: var(--shadow);
  }
  .main-nav.open > ul { display: flex; }
  .main-nav > ul > li { border-bottom: 1px solid var(--line); }
  .main-nav > ul > li:last-child { border-bottom: none; }
  .main-nav > ul > li > a, .dropdown-toggle { display: flex; width: 100%; padding: 15px 0; justify-content: space-between; }
  .dropdown {
    position: static; transform: none; box-shadow: none; border: none;
    min-width: 0; padding: 0 0 12px 16px;
  }
  .header-cta { display: none; }

  .nav-mobile-extras { display: block; padding: 20px 0 4px; }
  /* A regra base do nav (background: none) vence .btn-primary; reafirma o CTA */
  .main-nav .nav-mobile-extras .btn {
    display: flex; justify-content: center; width: 100%;
    background: var(--ink); color: var(--ivory); padding: 16px 24px;
  }
  .nav-mobile-contact { margin-top: 16px; text-align: center; }
  .nav-mobile-label {
    display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--taupe-deep); margin-bottom: 4px;
  }
  .nav-mobile-phone { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
}

@media (max-width: 600px) {
  .section { padding: 68px 20px; }
  .hero-inner { padding: 56px 20px 48px; }

  /* Títulos centralizados e balanceados no mobile */
  h1, h2, h3 { text-wrap: balance; }
  h1, h2, .eyebrow, .sparkle-divider { text-align: center; }
  .hero-copy, .split-copy, .page-hero, .section-head, .estimate-intro { text-align: center; }
  .hero-lede, .split-copy p { margin-inline: auto; }
  .signature-line { text-align: center; }
  .estimate-points { text-align: left; }
  .service-copy h2 { text-align: center; }
  .faq summary, .included-list, .benefits-grid, .service-copy > p { text-align: left; }

  /* Botões ocupam toda a largura */
  .btn { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }

  /* Hero mais compacto: foto menor e mais baixa, selo proporcional */
  .hero-media img.hero-photo { width: min(280px, 78%); aspect-ratio: 4 / 4.3; margin-inline: auto; }
  .hero-seal { width: 92px; height: 92px; right: 6px; bottom: -14px; }
  .estimate-form { padding: 30px 22px; }
  .form-row-split { grid-template-columns: 1fr; }
  .referral-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .inside-bar-inner { flex-direction: column; text-align: center; gap: 10px; }
  .brand img { height: 46px; }
}
