:root {
  --green-950: #082d20;
  --green-900: #123f2a;
  --green-700: #287045;
  --green-500: #55a64f;
  --orange: #e76825;
  --orange-dark: #bc4710;
  --ink: #18211e;
  --muted: #5f6965;
  --line: #dfe5e1;
  --surface: #f4f7f5;
  --white: #fff;
  --shadow: 0 24px 64px rgba(8, 45, 32, .14);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f5a35e; outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; transform: translateY(-150%); padding: 10px 16px; color: var(--white); background: var(--green-950); border-radius: 6px; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 10px; color: var(--orange-dark); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section { padding: 100px 0; }
.section-light { background: var(--surface); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: 48px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .faq-intro h2, .contact-heading h2 { margin: 0; color: var(--green-950); font-size: clamp(34px, 5vw, 58px); line-height: 1.05; letter-spacing: -.04em; }
.section-heading > p, .section-heading div + p { max-width: 530px; margin: 0; color: var(--muted); }
.section-heading.centered { display: block; max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-heading.centered p:last-child { margin: 18px auto 0; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.18); transition: background .25s, box-shadow .25s, color .25s; }
.site-header.scrolled, .site-header.menu-open { color: var(--ink); background: rgba(255,255,255,.97); box-shadow: 0 8px 30px rgba(8,45,32,.1); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 46px; height: 46px; border-radius: 12px 12px 12px 4px; object-fit: cover; }
.brand small { display: block; margin-top: -5px; color: var(--orange); font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.main-nav a:not(.nav-cta)::after { position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; content: ""; background: var(--orange); transition: right .2s; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav .nav-cta { padding: 11px 18px; color: var(--white); background: var(--orange); border-radius: 999px; }
.menu-toggle { display: none; align-items: center; gap: 8px; padding: 9px 12px; color: inherit; background: transparent; border: 1px solid currentColor; border-radius: 9px; cursor: pointer; }

.hero { position: relative; min-height: 760px; height: min(100vh, 940px); display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--green-950) url("../img/bg/home.webp") center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,45,32,.94) 0%, rgba(8,45,32,.72) 46%, rgba(8,45,32,.18) 100%); }
.hero::after { position: absolute; inset: auto -8% -38% 45%; height: 72%; content: ""; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; transform: rotate(-12deg); }
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.hero .eyebrow { color: #c8e7b5; }
.hero h1 { max-width: 830px; margin: 0; font-size: clamp(48px, 7.2vw, 92px); line-height: .94; letter-spacing: -.055em; text-wrap: balance; }
.hero-lead { max-width: 690px; margin: 28px 0 0; color: rgba(255,255,255,.84); font-size: clamp(18px, 2vw, 23px); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 22px; border: 0; border-radius: 10px; text-decoration: none; font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif; font-weight: 600; line-height: 1.25; text-rendering: geometricPrecision; -webkit-font-smoothing: antialiased; cursor: pointer; transition: box-shadow .2s, background .2s, border-color .2s; }
.button-primary { color: var(--white); background: var(--orange); box-shadow: 0 12px 28px rgba(188,71,16,.28); }
.button-primary:hover { background: var(--orange-dark); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.6); background: rgba(8,45,32,.42); }
.button-dark { color: var(--white); background: var(--green-950); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 24px; margin: 38px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.86); font-size: 14px; }
.hero-proof i { margin-right: 6px; color: #b8dc7e; }
.hero-scroll { position: absolute; z-index: 2; right: 38px; bottom: 38px; display: flex; gap: 12px; align-items: center; color: var(--white); text-decoration: none; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }

.solution-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.solution-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 38px rgba(8,45,32,.07); }
.solution-card.featured { border-color: rgba(231,104,37,.55); transform: translateY(-12px); }
.solution-card > img { width: 100%; aspect-ratio: 1.52; object-fit: cover; }
.card-badge { position: absolute; z-index: 1; top: 16px; right: 16px; padding: 7px 11px; color: var(--white); background: var(--orange); border-radius: 99px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.solution-card-body { padding: 28px; }
.card-kicker { margin: 0; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.solution-card h3 { margin: 7px 0 12px; color: var(--green-950); font-size: 26px; line-height: 1.1; }
.solution-card p { color: var(--muted); }
.solution-card ul { margin: 20px 0 24px; padding: 0; list-style: none; }
.solution-card li { position: relative; margin: 8px 0; padding-left: 22px; font-size: 14px; }
.solution-card li::before { position: absolute; left: 0; content: "✓"; color: var(--green-700); font-weight: 900; }
.solution-grid.five-services { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.five-services .solution-card { grid-column: span 2; }
.five-services .solution-card:nth-child(4) { grid-column: 2 / span 2; }
.card-actions { display: flex; justify-content: space-between; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.card-actions a { color: var(--green-900); font-size: 13px; font-weight: 700; text-decoration: none; }
.card-actions a:last-child { color: var(--orange-dark); }
.solution-assist { margin-top: 56px; padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--white); background: linear-gradient(110deg, var(--green-950), var(--green-700)); border-radius: var(--radius); }
.solution-assist .eyebrow { color: #c8e7b5; }
.solution-assist h3 { margin: 0; font-size: 28px; }
.solution-assist p:last-child { margin: 7px 0 0; color: rgba(255,255,255,.72); }
.solution-assist .button-dark { flex: 0 0 auto; color: var(--green-950); background: var(--white); }

.process-section { background: var(--white); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }
.process-grid::before { position: absolute; top: 51px; left: 16.66%; right: 16.66%; height: 1px; content: ""; background: var(--line); }
.process-grid li { position: relative; padding: 30px; text-align: center; }
.process-grid li > span { position: absolute; top: 0; right: 20px; color: #e8eee9; font-size: 48px; font-weight: 900; }
.process-grid i { position: relative; width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 24px; color: var(--white); background: var(--green-900); border: 8px solid var(--surface); border-radius: 50%; font-size: 25px; }
.process-grid h3 { margin: 0; color: var(--green-950); font-size: 22px; }
.process-grid p { max-width: 300px; margin: 10px auto 0; color: var(--muted); }

.projects-section { color: var(--white); background: var(--green-950); }
.projects-section .section-heading h2 { color: var(--white); }
.projects-section .section-heading > p { color: rgba(255,255,255,.66); }
.projects-section .eyebrow { color: #b8dc7e; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 14px; }
.gallery-item { position: relative; min-width: 0; overflow: hidden; padding: 0; color: var(--white); background: #0e271e; border: 0; border-radius: 12px; cursor: zoom-in; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery-item::after { position: absolute; inset: 42% 0 0; content: ""; background: linear-gradient(transparent, rgba(8,45,32,.9)); }
.gallery-item span { position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 17px; text-align: left; font-weight: 800; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-cta { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gallery-cta p { margin: 0; font-size: 22px; font-weight: 700; }

.about-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: 76px; }
.about-visual { position: relative; }
.about-visual > img { width: 100%; min-height: 620px; object-fit: cover; border-radius: 80px 18px 80px 18px; box-shadow: var(--shadow); }
.experience-card { position: absolute; right: -28px; bottom: 44px; width: 160px; height: 160px; display: flex; flex-direction: column; justify-content: center; padding: 22px; color: var(--white); background: var(--orange); border-radius: 50%; box-shadow: 0 20px 36px rgba(188,71,16,.28); }
.experience-card strong { font-size: 47px; line-height: 1; }
.experience-card span { font-size: 13px; font-weight: 700; }
.about-copy > p:not(.eyebrow) { color: var(--muted); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 30px 0; }
.trust-grid div { display: grid; grid-template-columns: 34px 1fr; padding: 17px; background: var(--surface); border-radius: 12px; }
.trust-grid i { grid-row: 1 / 3; color: var(--orange); font-size: 22px; }
.trust-grid strong { color: var(--green-950); }
.trust-grid span { color: var(--muted); font-size: 12px; }
.text-link { color: var(--green-900); font-weight: 800; text-decoration: none; }

.coverage-section { color: var(--white); background: linear-gradient(120deg, var(--green-950), #174d35); }
.coverage-layout { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: 80px; align-items: center; }
.coverage-copy .eyebrow { color: #b8dc7e; }
.coverage-copy h2 { max-width: 620px; margin: 0; color: var(--white); font-size: clamp(38px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -.045em; }
.coverage-copy > p:not(.eyebrow) { max-width: 600px; margin: 22px 0 30px; color: rgba(255,255,255,.72); font-size: 17px; }
.coverage-label { margin: 0 0 16px; color: #c8e7b5; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.municipality-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; margin: 0; padding: 0; list-style: none; }
.municipality-grid li { display: flex; gap: 11px; align-items: center; min-height: 54px; padding: 13px 16px; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; font-size: 14px; font-weight: 700; }
.municipality-grid i { color: var(--orange); }
.coverage-note { margin: 20px 0 0; padding: 18px 20px; color: rgba(255,255,255,.72); background: rgba(0,0,0,.14); border-radius: 10px; font-size: 13px; }
.coverage-note strong { color: var(--white); }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 90px; }
.faq-intro { align-self: start; position: sticky; top: 120px; }
.faq-intro > p:not(.eyebrow) { margin: 22px 0 28px; color: var(--muted); }
.faq-list { border-top: 1px solid #cad5ce; }
.faq-list details { border-bottom: 1px solid #cad5ce; }
.faq-list summary { position: relative; padding: 23px 48px 23px 0; color: var(--green-950); font-size: 19px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 8px; content: "+"; color: var(--orange); font-size: 28px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 44px 24px 0; color: var(--muted); }

.contact-section { position: relative; min-height: 880px; overflow: hidden; color: var(--white); background: var(--green-950); }
.contact-map, .contact-overlay { position: absolute; inset: 0; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.9); }
.contact-overlay { pointer-events: none; background: rgba(8,45,32,.82); }
.contact-content { position: relative; z-index: 1; padding-top: 88px; padding-bottom: 88px; }
.contact-heading { max-width: 780px; margin-bottom: 36px; }
.contact-heading h2 { color: var(--white); }
.contact-heading > p:last-child { max-width: 680px; color: rgba(255,255,255,.74); font-size: 18px; }
.contact-heading .eyebrow, .contact-info .eyebrow { color: #b8dc7e; }
.contact-card { display: grid; grid-template-columns: minmax(310px, .72fr) minmax(0, 1.28fr); overflow: hidden; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.contact-info { padding: 40px; background: #f0f4f1; }
.contact-info h3, .form-heading h3 { margin: 5px 0 12px; color: var(--green-950); font-size: 24px; line-height: 1.2; }
.contact-info > p:not(.eyebrow) { color: var(--muted); }
.direct-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 26px 0; }
.direct-actions a { min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 10px; color: var(--white); background: var(--green-900); border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600; text-rendering: geometricPrecision; -webkit-font-smoothing: antialiased; }
.direct-actions a:nth-child(2) { background: var(--orange); }
.direct-actions a:nth-child(3) { color: var(--ink); background: var(--white); border: 1px solid var(--line); }
.contact-info address { margin: 0; font-style: normal; }
.contact-info address p { display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: 8px; margin: 0; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-info address i { margin-top: 4px; color: var(--orange-dark); }
.contact-info address a { font-weight: 700; text-decoration: none; }
.contact-notes { display: grid; gap: 8px; margin: 25px 0 0; padding: 0; list-style: none; }
.contact-notes li { padding: 9px 12px; color: var(--green-950); background: rgba(40,112,69,.08); border-left: 3px solid var(--green-500); border-radius: 4px; font-size: 12px; }
.quote-form { padding: 40px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; color: var(--green-950); font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid #cbd5cf; border-radius: 8px; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-700); outline: 3px solid rgba(85,166,79,.17); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; color: var(--muted); font-size: 12px; }
.consent input { margin-top: 3px; }
.consent a { color: var(--green-900); font-weight: 700; }
.submit-button { width: 100%; }
.submit-button[disabled] { opacity: .65; cursor: wait; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: 13px; font-weight: 700; }
.form-status.success { color: var(--green-700); }
.form-status.error { color: #a92d21; }

.site-footer { padding: 60px 0 22px; color: rgba(255,255,255,.72); background: #071f17; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 70px; align-items: start; }
.footer-brand { color: var(--white); font-size: 24px; font-weight: 900; text-decoration: none; }
.footer-brand span { color: var(--orange); }
.footer-grid p { margin: 8px 0 0; }
.footer-grid nav, .footer-contact { display: grid; gap: 8px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }

.whatsapp-float { position: fixed; z-index: 95; right: 22px; bottom: 22px; min-height: 54px; display: flex; align-items: center; gap: 10px; padding: 14px 18px; color: var(--white); background: #168a4d; border-radius: 999px; box-shadow: 0 16px 35px rgba(0,0,0,.25); text-decoration: none; font-size: 13px; font-weight: 600; text-rendering: geometricPrecision; -webkit-font-smoothing: antialiased; }
.whatsapp-float i { font-size: 20px; }
.gallery-dialog { width: min(920px, calc(100% - 30px)); padding: 16px; color: var(--white); background: #071f17; border: 0; border-radius: 16px; box-shadow: var(--shadow); }
.gallery-dialog::backdrop { background: rgba(2,15,10,.84); backdrop-filter: blur(4px); }
.gallery-dialog img { width: 100%; max-height: 68vh; object-fit: contain; border-radius: 10px; }
.gallery-dialog p { margin: 14px 0; font-weight: 800; }
.dialog-close { position: absolute; z-index: 1; top: 25px; right: 25px; width: 42px; height: 42px; color: var(--white); background: rgba(0,0,0,.7); border: 0; border-radius: 50%; cursor: pointer; }

@media (max-width: 980px) {
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 11px; }
  .solution-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .solution-grid.five-services { grid-template-columns: 1fr; }
  .five-services .solution-card, .five-services .solution-card:nth-child(4) { grid-column: auto; }
  .solution-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .solution-card.featured { transform: none; }
  .solution-card > img { height: 100%; aspect-ratio: auto; }
  .process-grid li { padding-inline: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 42px; }
  .about-visual > img { min-height: 540px; }
  .faq-grid { gap: 50px; }
  .coverage-layout { gap: 42px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
  .contact-info .eyebrow, .contact-info h3, .contact-info > p, .direct-actions { grid-column: 1 / -1; }
  .footer-grid { gap: 30px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .site-header { background: rgba(8,45,32,.82); }
  .site-header.scrolled, .site-header.menu-open { background: rgba(255,255,255,.98); }
  .header-inner { min-height: 68px; }
  .brand img { width: 42px; height: 42px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { position: absolute; top: 68px; left: 0; right: 0; display: none; padding: 18px 20px 24px; color: var(--ink); background: rgba(255,255,255,.98); box-shadow: 0 18px 30px rgba(8,45,32,.14); }
  .site-header.menu-open .main-nav { display: grid; gap: 0; }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 13px; }
  .main-nav a::after { display: none; }
  .main-nav .nav-cta { margin-top: 12px; text-align: center; border: 0; }
  .hero { min-height: 720px; height: auto; padding: 120px 0 90px; background-position: 58% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8,45,32,.95), rgba(8,45,32,.7)); }
  .hero h1 { font-size: clamp(44px, 13vw, 64px); }
  .hero-scroll { display: none; }
  .hero-proof { display: grid; gap: 9px; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading > p, .section-heading div + p { margin-top: 18px; }
  .solution-card { display: block; }
  .solution-card > img { height: auto; aspect-ratio: 1.52; }
  .solution-assist { display: block; padding: 28px; }
  .solution-assist .button { width: 100%; margin-top: 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .process-grid li { padding: 16px 20px 30px; }
  .gallery-grid { grid-auto-rows: 210px; }
  .gallery-item.gallery-wide { grid-column: span 2; }
  .gallery-cta { align-items: stretch; flex-direction: column; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual > img { min-height: 430px; }
  .experience-card { right: 12px; bottom: -28px; width: 130px; height: 130px; }
  .about-copy { padding-top: 22px; }
  .coverage-layout { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .contact-info { display: block; padding: 30px 24px; }
  .quote-form { padding: 30px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 500px) {
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .card-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.gallery-wide { grid-column: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .municipality-grid { grid-template-columns: 1fr; }
  .direct-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { width: 54px; justify-content: center; padding: 14px; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

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