/* Hora da Faxina — site estático */
:root {
  --brand: #013739;
  --brand-2: #075253;
  --accent: #7ed958;
  --accent-dark: #56b939;
  --ink: #172727;
  --muted: #5f7070;
  --line: #dfe8df;
  --surface: #ffffff;
  --surface-soft: #f4f7f2;
  --surface-warm: #eef5ea;
  --danger: #a13c32;
  --shadow-sm: 0 8px 24px rgba(1,55,57,.08);
  --shadow-lg: 0 24px 70px rgba(1,55,57,.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(126,217,88,.8); outline-offset: 3px; }

.skip-link {
  position: fixed; left: 16px; top: -90px; z-index: 9999;
  background: var(--brand); color: #fff; padding: 12px 16px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { background: var(--brand); color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px;
  color: var(--brand); font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 10px; height: 10px; background: var(--accent); border-radius: 2px; }
.section-dark .eyebrow { color: #dff8d3; }
.section-title {
  margin: 0; max-width: 850px; font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.05; letter-spacing: -.045em; color: var(--brand);
}
.section-dark .section-title { color: #fff; }
.section-intro { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 1.15rem; }
.section-dark .section-intro { color: rgba(255,255,255,.75); }
.kicker { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.stack { display: grid; gap: 22px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px); border-bottom: 1px solid rgba(1,55,57,.08);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-lockup img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.brand-name { line-height: 1.05; }
.brand-name strong { display: block; color: var(--brand); font-size: 1.02rem; letter-spacing: -.02em; }
.brand-name span { color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { color: #385050; font-size: .94rem; font-weight: 650; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--brand); }
.nav-cta { padding: 12px 18px; background: var(--brand); color: #fff !important; border-radius: 999px; }
.nav-cta:hover { background: var(--brand-2); }
.menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; border-radius: 10px; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 24px; height: 2px; background: var(--brand); margin: 5px auto; transition: .25s ease; }

/* Hero */
.hero { position: relative; overflow: clip; background: linear-gradient(135deg,#f7faf4 0%,#eef5ea 100%); padding: 72px 0 56px; }
.hero::before { content: ""; position: absolute; width: 440px; height: 440px; right: -210px; top: -220px; background: var(--accent); border-radius: 50%; opacity: .26; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 58px; align-items: center; }
.hero-copy h1 { margin: 0; max-width: 690px; color: var(--brand); font-size: clamp(3rem, 6vw, 5.9rem); line-height: .94; letter-spacing: -.065em; }
.hero-copy .lead { max-width: 650px; margin: 26px 0 0; color: #496060; font-size: clamp(1.08rem,2vw,1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-2); }
.btn-accent { background: var(--accent); color: #123313; }
.btn-accent:hover { background: #90e772; }
.btn-secondary { border-color: #bfcfc3; background: rgba(255,255,255,.66); color: var(--brand); }
.btn-light { background: #fff; color: var(--brand); }
.btn-link { color: var(--brand); font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }
.hero-media { position: relative; min-height: 590px; }
.hero-media::before { content: ""; position: absolute; inset: 40px 40px -18px -18px; background: var(--brand); border-radius: var(--radius-lg); }
.hero-media img { position: relative; z-index: 1; width: 100%; height: 590px; object-fit: cover; object-position: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-badge { position: absolute; z-index: 2; left: -26px; bottom: 34px; max-width: 230px; background: #fff; padding: 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.hero-badge strong { display: block; color: var(--brand); font-size: 1.55rem; line-height: 1; }
.hero-badge span { display: block; margin-top: 7px; color: var(--muted); font-size: .9rem; }
.trust-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 58px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.trust-item { padding: 20px; background: #fff; }
.trust-item strong { display: block; color: var(--brand); font-size: 1rem; }
.trust-item span { color: var(--muted); font-size: .88rem; }

/* Cards */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 8px 28px rgba(1,55,57,.05); }
.card-body { padding: 26px; }
.service-card { display: flex; flex-direction: column; min-height: 100%; }
.service-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-card .card-body { flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin: 0; color: var(--brand); font-size: 1.45rem; letter-spacing: -.025em; }
.service-card p { color: var(--muted); }
.service-card .btn-link { margin-top: auto; }
.price-tag { display: inline-flex; width: fit-content; background: var(--surface-warm); color: var(--brand); padding: 7px 11px; border-radius: 999px; font-size: .82rem; font-weight: 800; margin-bottom: 16px; }

/* Price table */
.price-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; align-items: stretch; }
.price-card { padding: 28px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-md); }
.price-card.featured { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.price-card h3 { margin: 0; color: var(--brand); font-size: 1.45rem; }
.price-card.featured h3 { color: #fff; }
.price-card > p { color: var(--muted); }
.price-card.featured > p { color: rgba(255,255,255,.7); }
.price-list { list-style: none; padding: 0; margin: 24px 0; border-top: 1px solid var(--line); }
.price-card.featured .price-list { border-top-color: rgba(255,255,255,.2); }
.price-list li { display: flex; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.price-card.featured .price-list li { border-bottom-color: rgba(255,255,255,.2); }
.price-list span { color: var(--muted); }
.price-card.featured .price-list span { color: rgba(255,255,255,.72); }
.price-list strong { white-space: nowrap; }
.price-note { font-size: .82rem; color: var(--muted); }
.price-card.featured .price-note { color: rgba(255,255,255,.65); }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; background: var(--accent); color: var(--brand); border-radius: 50%; font-weight: 900; }
.step h3 { margin: 20px 0 8px; color: var(--brand); }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }

/* Story */
.story-media { position: relative; }
.story-media img { width: 100%; min-height: 560px; object-fit: cover; border-radius: var(--radius-lg); }
.story-quote { position: absolute; right: -24px; bottom: 28px; width: min(320px,80%); padding: 23px; background: var(--accent); color: #153915; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); font-weight: 800; }
.story-copy h2 { margin: 0; font-size: clamp(2.4rem,4.6vw,4.2rem); color: var(--brand); line-height: 1.02; letter-spacing: -.05em; }
.story-copy p { color: var(--muted); font-size: 1.03rem; }
.story-points { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 28px 0; }
.story-point { border-left: 4px solid var(--accent); padding: 8px 0 8px 14px; }
.story-point strong { display: block; color: var(--brand); }
.story-point span { color: var(--muted); font-size: .88rem; }

/* Gallery */
.gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 280px 280px; gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); }
.gallery figure:first-child { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery figure:hover img { transform: scale(1.025); }

/* FAQ */
.faq-list { max-width: 900px; margin-top: 38px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; border: 0; background: transparent; padding: 24px 4px; display: flex; justify-content: space-between; gap: 20px; text-align: left; color: var(--brand); font-weight: 800; }
.faq-question::after { content: "+"; font-size: 1.4rem; line-height: 1; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; padding: 0 4px 24px; color: var(--muted); }
.faq-answer.open { display: block; }

/* Forms */
.contact-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items: start; }
.contact-panel { background: var(--brand); color: #fff; padding: 34px; border-radius: var(--radius-lg); position: sticky; top: 110px; }
.contact-panel h2 { font-size: 2rem; line-height: 1.1; margin: 0; }
.contact-panel p { color: rgba(255,255,255,.72); }
.contact-facts { display: grid; gap: 16px; margin-top: 28px; }
.contact-fact { border-top: 1px solid rgba(255,255,255,.18); padding-top: 15px; }
.contact-fact strong { display: block; }
.contact-fact span { color: rgba(255,255,255,.72); font-size: .92rem; }
.quote-form { background: #fff; border: 1px solid var(--line); padding: 34px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--brand); font-size: .88rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #cfdcd2; background: #fbfcfa; min-height: 50px; border-radius: 12px; padding: 12px 14px; color: var(--ink); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(126,217,88,.2); outline: none; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--muted); }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; }
.estimate-box { display: none; padding: 18px; background: var(--surface-warm); border-left: 5px solid var(--accent); border-radius: 12px; }
.estimate-box.show { display: block; }
.estimate-box strong { color: var(--brand); font-size: 1.2rem; }
.form-status { min-height: 24px; color: var(--danger); font-size: .9rem; }

/* Internal page hero */
.page-hero { padding: 72px 0; background: var(--surface-soft); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.page-hero h1 { margin: 0; color: var(--brand); font-size: clamp(2.8rem,6vw,5.5rem); line-height: .96; letter-spacing: -.06em; }
.page-hero p { max-width: 680px; color: var(--muted); font-size: 1.18rem; }
.page-hero img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: .85rem; }
.breadcrumb a { color: var(--brand); font-weight: 700; }
.feature-list { display: grid; gap: 14px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 34px; color: var(--muted); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; display: grid; place-items: center; background: var(--accent); color: var(--brand); border-radius: 50%; font-weight: 900; }
.callout { padding: 28px; background: var(--surface-warm); border: 1px solid #d8e8d2; border-radius: var(--radius-md); }
.callout h3 { margin-top: 0; color: var(--brand); }
.content-prose { max-width: 820px; }
.content-prose h2, .content-prose h3 { color: var(--brand); line-height: 1.15; }
.content-prose h2 { font-size: 2rem; margin-top: 2.2em; }
.content-prose p, .content-prose li { color: var(--muted); }

/* CTA */
.cta-band { position: relative; overflow: hidden; background: var(--brand); color: #fff; border-radius: var(--radius-lg); padding: 50px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-band::after { content: ""; position: absolute; width: 240px; height: 240px; right: -80px; top: -120px; background: var(--accent); border-radius: 50%; opacity: .28; }
.cta-band h2 { position: relative; z-index: 1; margin: 0; max-width: 650px; font-size: clamp(2rem,4vw,3.6rem); line-height: 1.02; letter-spacing: -.045em; }
.cta-band .btn { position: relative; z-index: 1; white-space: nowrap; }

/* Footer */
.site-footer { background: #062c2d; color: #fff; padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 44px; }
.footer-brand p { max-width: 430px; color: rgba(255,255,255,.68); }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; }
.footer-logo strong { font-size: 1.2rem; }
.footer-col h3 { margin-top: 0; font-size: .9rem; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; }
.footer-col a, .footer-col span { display: block; margin: 9px 0; color: rgba(255,255,255,.72); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55); font-size: .82rem; }
.whatsapp-fab { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 12px 32px rgba(0,0,0,.22); font-size: 1.6rem; font-weight: 900; }
.whatsapp-fab:hover { transform: translateY(-2px); }

/* Testimonials remain hidden until real content is added */
.testimonials-placeholder { display: none; }

@media (max-width: 980px) {
  .site-nav { position: fixed; inset: 82px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 20px 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 6px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .menu-toggle { display: block; }
  .hero-grid, .page-hero-grid, .grid-2, .contact-shell { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; min-height: auto; }
  .hero-media img { height: 520px; }
  .hero-badge { left: 18px; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .grid-3, .price-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .contact-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .hero { padding-top: 48px; }
  .hero-copy h1 { font-size: clamp(2.75rem,14vw,4.2rem); }
  .hero-media img { height: 420px; object-position: 60% center; }
  .hero-media::before { inset: 20px 20px -12px -8px; }
  .hero-badge { position: relative; left: auto; bottom: auto; margin: -54px 18px 0; }
  .trust-strip, .grid-3, .price-grid, .steps, .story-points, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 200px 200px; }
  .gallery figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .story-media img { min-height: 430px; }
  .story-quote { right: 12px; bottom: 12px; }
  .quote-form, .contact-panel { padding: 24px; }
  .cta-band { padding: 34px 26px; flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Integração do formulário de orçamento */
.contact-hero img { object-position: center 34%; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.quote-form[aria-busy="true"] { opacity: .76; }
.quote-form button:disabled { cursor: wait; opacity: .7; transform: none; }
.form-status.error { color: var(--danger); }
.form-status.success { color: #236b2a; }
.quote-success { background: #fff; border: 1px solid var(--line); padding: clamp(28px,5vw,52px); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.quote-success[hidden] { display: none; }
.quote-success h2 { margin: 0; color: var(--brand); font-size: clamp(2rem,4vw,3.4rem); line-height: 1; letter-spacing: -.045em; }
.quote-success > p:not(.eyebrow):not(.price-note):not(.success-reference) { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.success-reference { display: inline-flex; gap: 6px; margin: 12px 0 0; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-soft); color: var(--brand); font-size: .9rem; }
