:root {
  color-scheme: light;
  --bg: #f7faff;
  --bg-alt: #eef5fc;
  --surface: rgba(255,255,255,.88);
  --surface-solid: #ffffff;
  --surface-soft: #f1f6fc;
  --text: #0b1628;
  --muted: #52637b;
  --line: rgba(14,54,94,.12);
  --line-strong: rgba(14,54,94,.19);
  --brand: #0c4c8e;
  --brand-2: #207ac8;
  --brand-soft: #e6f1fb;
  --green: #18a94c;
  --shadow-sm: 0 8px 25px rgba(20,53,84,.08);
  --shadow-md: 0 22px 60px rgba(20,53,84,.14);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1280px;
  --header-h: 84px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07111f;
  --bg-alt: #0a1727;
  --surface: rgba(14,31,49,.82);
  --surface-solid: #0d1c2d;
  --surface-soft: #102238;
  --text: #f5f8fc;
  --muted: #a9b8ca;
  --line: rgba(150,191,230,.14);
  --line-strong: rgba(150,191,230,.24);
  --brand: #66aef0;
  --brand-2: #2d88d6;
  --brand-soft: #102c49;
  --shadow-sm: 0 8px 30px rgba(0,0,0,.24);
  --shadow-md: 0 24px 70px rgba(0,0,0,.4);
}

html[data-theme="dark"] .site-header .brand img {
  filter: brightness(0) invert(1);
  opacity: .94;
}
html[data-theme="dark"] .hygiene-badge {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.48);
  color: #0a497f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 92px 0; }
.section-pad-sm { padding: 42px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -60px; left: 20px; z-index: 9999; padding: 12px 16px; border-radius: 10px; background: var(--brand); color: #fff; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-h); background: color-mix(in srgb, var(--bg) 86%, transparent); border-bottom: 1px solid transparent; backdrop-filter: saturate(160%) blur(20px); -webkit-backdrop-filter: saturate(160%) blur(20px); transition: border-color .25s, box-shadow .25s, background .25s; }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px rgba(17,43,68,.06); }
.header-inner { height: 100%; display: grid; grid-template-columns: 235px 1fr auto; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; width: 215px; }
.brand img { width: 100%; height: 68px; object-fit: contain; object-position: left center; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(22px, 2.4vw, 40px); }
.desktop-nav a { position: relative; padding: 31px 0 27px; color: var(--muted); font-size: 14px; font-weight: 650; transition: color .2s; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 18px; height: 2px; border-radius: 2px; background: var(--brand); transition: left .22s, right .22s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { left: 0; right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle { display: inline-flex; align-items: center; gap: 9px; height: 46px; padding: 5px 12px 5px 6px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow-sm); cursor: pointer; }
.theme-toggle-track { position: relative; width: 58px; height: 34px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; justify-items: center; border-radius: 999px; background: var(--surface-soft); border: 1px solid var(--line); }
.theme-toggle-track svg { z-index: 2; width: 15px; height: 15px; color: var(--muted); transition: color .2s; }
.theme-toggle-track .moon { stroke-width: 2; }
.theme-knob { position: absolute; z-index: 1; left: 3px; width: 26px; height: 26px; border-radius: 50%; background: var(--surface-solid); box-shadow: 0 3px 10px rgba(14,52,86,.2); transform: translateX(26px); transition: transform .28s cubic-bezier(.2,.8,.2,1), background .2s; }
html[data-theme="dark"] .theme-knob { transform: translateX(0); background: #1f6fb4; }
html[data-theme="dark"] .theme-toggle-track .moon { color: #fff; }
html[data-theme="light"] .theme-toggle-track .sun { color: var(--brand); }
.theme-label { min-width: 34px; color: var(--text); font-size: 12px; font-weight: 700; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 14px; font-size: 14px; font-weight: 750; transition: transform .2s, box-shadow .2s, border-color .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 21px; height: 21px; stroke-width: 1.9; }
.button-primary { background: linear-gradient(135deg, #0e5599, #083f77); color: #fff; box-shadow: 0 12px 24px rgba(10,74,135,.22); }
.button-primary svg, .button-whatsapp svg { fill: currentColor; stroke: none; }
.button-whatsapp { background: linear-gradient(135deg, #19b851, #129840); color: #fff; box-shadow: 0 13px 26px rgba(19,161,70,.22); }
.button-secondary { background: var(--surface); border-color: var(--line-strong); color: var(--text); box-shadow: var(--shadow-sm); }
.button-secondary span { display: grid; gap: 1px; line-height: 1.05; }
.button-secondary small { color: var(--muted); font-size: 11px; font-weight: 650; }
.header-whatsapp { min-height: 46px; padding-inline: 16px; border-radius: 14px; font-size: 12px; }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-button span { width: 20px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .2s, opacity .2s; }
.menu-button.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header-h) 0 auto; padding: 10px 0 22px; background: color-mix(in srgb, var(--bg) 96%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(20px); box-shadow: var(--shadow-md); }
.mobile-menu nav { display: grid; gap: 4px; }
.mobile-menu a { padding: 14px 16px; border-radius: 12px; font-weight: 700; }
.mobile-menu a:hover { background: var(--surface-soft); color: var(--brand); }

.hero { position: relative; min-height: 710px; display: flex; align-items: center; isolation: isolate; overflow: hidden; padding-top: 74px; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background: linear-gradient(135deg, color-mix(in srgb, var(--brand-soft) 60%, transparent) 0%, transparent 48%, color-mix(in srgb, var(--brand-soft) 38%, transparent) 100%); opacity: .66; }
.hero-glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(15px); pointer-events: none; }
.hero-glow-one { width: 560px; height: 560px; right: -140px; top: -150px; background: radial-gradient(circle, rgba(90,168,232,.26), transparent 66%); }
.hero-glow-two { width: 480px; height: 480px; left: 38%; bottom: -330px; background: radial-gradient(circle, rgba(161,212,247,.34), transparent 66%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr); gap: clamp(50px, 6vw, 90px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .085em; text-transform: uppercase; }
.eyebrow { padding: 9px 14px; border: 1px solid color-mix(in srgb, var(--brand) 16%, transparent); border-radius: 999px; background: var(--brand-soft); }
.eyebrow svg { width: 17px; height: 17px; }
.hero h1 { max-width: 650px; margin: 22px 0 18px; font-size: clamp(48px, 5.2vw, 78px); line-height: .98; letter-spacing: -.055em; font-weight: 780; }
.hero h1 span { color: var(--brand); }
.hero-lead { max-width: 610px; margin: 0; color: var(--muted); font-size: clamp(16px, 1.55vw, 20px); line-height: 1.65; }
.location-line { width: fit-content; display: flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--text); font-size: 15px; font-weight: 680; }
.location-line svg { width: 21px; height: 21px; color: var(--brand-2); fill: color-mix(in srgb, var(--brand-2) 12%, transparent); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-ctas .button { min-height: 58px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-chips span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 11px; font-weight: 650; box-shadow: var(--shadow-sm); }
.hero-chips svg { width: 15px; height: 15px; color: var(--brand); }
.hero-visual { position: relative; min-height: 530px; }
.visual-main, .visual-small { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.72); background: var(--surface); box-shadow: var(--shadow-md); }
.visual-main { top: 10px; right: 0; width: 78%; height: 285px; border-radius: 30px; transform: rotate(.7deg); }
.visual-main::after, .visual-small::after, .gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(255,255,255,.12), transparent 45%); pointer-events: none; }
.visual-main img, .visual-small img { width: 100%; height: 100%; object-fit: cover; }
.visual-small { bottom: 40px; width: 43%; height: 235px; border-radius: 26px; }
.visual-small-left { left: 5%; transform: rotate(-1.2deg); }
.visual-small-right { right: 2%; transform: rotate(1.2deg); }
.hygiene-badge { position: absolute; z-index: 4; right: -12px; top: 190px; width: 142px; height: 142px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 7px solid rgba(255,255,255,.7); border-radius: 50%; background: color-mix(in srgb, var(--surface-solid) 88%, transparent); color: #0a497f; box-shadow: var(--shadow-md); backdrop-filter: blur(15px); line-height: 1.2; }
.hygiene-badge strong { font-size: 29px; letter-spacing: -.04em; }
.hygiene-badge span { font-size: 10px; font-weight: 850; letter-spacing: .02em; }
.visual-wave { position: absolute; right: -110px; bottom: 0; width: 680px; height: 145px; border-top: 20px solid rgba(72,153,221,.21); border-radius: 50%; transform: rotate(-7deg); filter: blur(.2px); }

.services-rail { position: relative; z-index: 5; margin-top: -24px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-md); backdrop-filter: blur(20px); overflow: hidden; }
.service-card { min-height: 100px; display: grid; grid-template-columns: 52px 1fr 20px; align-items: center; gap: 15px; padding: 20px 22px; border-right: 1px solid var(--line); transition: background .2s, transform .2s; }
.service-card:last-child { border-right: 0; }
.service-card:hover { background: var(--brand-soft); }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #0d5aa4, #083a70); color: #fff; box-shadow: 0 10px 25px rgba(11,77,140,.2); }
.service-icon svg { width: 27px; height: 27px; }
.service-card > span:nth-child(2) { display: grid; gap: 5px; }
.service-card strong { font-size: 14px; }
.service-card small { color: var(--muted); font-size: 11px; }
.service-card .arrow { width: 18px; height: 18px; color: var(--muted); transition: transform .2s; }
.service-card:hover .arrow { transform: translateX(4px); color: var(--brand); }

.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading h2, .about-copy h2, .cta-card h2 { margin: 10px 0 13px; font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p, .about-copy > p, .cta-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.about { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg-alt) 75%, transparent), transparent); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 76px; align-items: center; }
.about-media { position: relative; min-height: 520px; }
.about-media > img { width: 90%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-media::before { content: ""; position: absolute; z-index: -1; left: -26px; bottom: -26px; width: 72%; height: 64%; border-radius: 38px; background: var(--brand-soft); }
.about-floating-card { position: absolute; right: 0; bottom: 50px; width: 240px; display: flex; align-items: center; gap: 12px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: color-mix(in srgb, var(--surface-solid) 87%, transparent); box-shadow: var(--shadow-md); backdrop-filter: blur(20px); }
.about-floating-card svg { width: 38px; height: 38px; color: var(--brand); }
.about-floating-card span { display: grid; gap: 3px; }
.about-floating-card strong { font-size: 14px; }
.about-floating-card small { color: var(--muted); font-size: 11px; }
.about-copy h2 { max-width: 660px; }
.about-points { display: grid; gap: 18px; margin-top: 34px; }
.about-points > div { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.about-points > div > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 850; }
.about-points p { display: grid; gap: 5px; margin: 0; color: var(--muted); line-height: 1.5; }
.about-points strong { color: var(--text); font-size: 15px; }

.process { position: relative; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.process-card { position: relative; min-height: 275px; padding: 28px 25px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-card::after { content: ""; position: absolute; top: 84px; left: calc(100% + 1px); width: 20px; border-top: 1px dashed var(--line-strong); }
.process-card:last-child::after { display: none; }
.step-number { position: absolute; top: 17px; left: 18px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-size: 12px; font-weight: 800; }
.process-icon { width: 78px; height: 78px; display: grid; place-items: center; margin: 10px auto 20px; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--surface-soft); color: var(--brand); }
.process-icon svg { width: 38px; height: 38px; }
.process-card h3 { margin: 0 0 10px; font-size: 18px; }
.process-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.service-details { background: var(--bg-alt); }
.detail-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.detail-card { min-height: 300px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-solid); box-shadow: var(--shadow-sm); }
.detail-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 18px; background: linear-gradient(145deg, var(--brand-soft), color-mix(in srgb, var(--brand-soft) 65%, var(--surface-solid))); color: var(--brand); }
.detail-icon svg { width: 30px; height: 30px; }
.detail-card h3 { margin: 0 0 11px; font-size: 19px; }
.detail-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.trust-panel { display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-md); overflow: hidden; }
.trust-item { min-height: 145px; display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 13px; padding: 25px 20px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 42px; height: 42px; color: var(--brand); }
.trust-item span { display: grid; gap: 5px; }
.trust-item strong { font-size: 13px; }
.trust-item small { color: var(--muted); font-size: 11px; line-height: 1.45; }

.gallery { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg-alt) 82%, transparent)); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 230px; gap: 18px; }
.gallery-item { position: relative; grid-column: span 4; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.gallery-item.gallery-wide { grid-column: span 6; }
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover img { transform: scale(1.04); }
.cta-card { min-height: 210px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 40px 48px; border-radius: var(--radius-lg); color: #fff; background: radial-gradient(circle at 86% 0%, rgba(106,190,255,.28), transparent 31%), linear-gradient(135deg, #082e58, #0c5595); box-shadow: 0 25px 70px rgba(8,65,116,.23); }
.cta-card .section-kicker, .cta-card p { color: rgba(255,255,255,.72); }
.cta-card h2 { font-size: clamp(30px, 3vw, 44px); }
.cta-card .button { flex: 0 0 auto; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-card { min-height: 148px; display: grid; grid-template-columns: 52px 1fr 18px; align-items: center; gap: 15px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s, border-color .22s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; background: var(--surface-soft); }
.contact-icon svg { width: 30px; height: 30px; }
.contact-card.whatsapp .contact-icon { color: #16a64b; background: rgba(22,166,75,.1); }
.contact-card.whatsapp .contact-icon svg { fill: currentColor; stroke: none; }
.contact-card.instagram .contact-icon { color: #e34075; background: rgba(227,64,117,.1); }
.contact-card.phone .contact-icon { color: #267ed0; background: rgba(38,126,208,.1); }
.contact-card.location .contact-icon { color: #7d4fd0; background: rgba(125,79,208,.1); }
.contact-card > span:nth-child(2) { min-width: 0; display: grid; gap: 5px; }
.contact-card small { color: var(--muted); font-size: 11px; }
.contact-card strong { overflow-wrap: anywhere; font-size: 14px; }
.contact-card em { color: var(--muted); font-size: 11px; font-style: normal; line-height: 1.4; }
.contact-arrow { width: 18px; height: 18px; color: var(--muted); }
.map-card { position: relative; min-height: 312px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-md); }
.map-card iframe { width: 100%; height: 100%; min-height: 312px; border: 0; filter: saturate(.88) contrast(.98); }
html[data-theme="dark"] .map-card iframe { filter: invert(.9) hue-rotate(180deg) saturate(.75) brightness(.82) contrast(.95); }
.map-overlay { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 16px; border: 1px solid rgba(255,255,255,.55); border-radius: 17px; background: color-mix(in srgb, var(--surface-solid) 86%, transparent); box-shadow: var(--shadow-md); backdrop-filter: blur(18px); }
.map-overlay span { display: grid; gap: 4px; }
.map-overlay strong { font-size: 13px; }
.map-overlay small { color: var(--muted); font-size: 10px; }
.map-overlay a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; padding: 10px 12px; border-radius: 11px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 750; }
.map-overlay a svg { width: 15px; height: 15px; }

.site-footer { padding: 62px 0 26px; color: #dce9f5; background: #082b50; }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr .75fr 1fr; gap: 52px; padding-bottom: 44px; }
.footer-brand img { width: 210px; height: 88px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p, .footer-links p { max-width: 350px; margin: 10px 0 0; color: rgba(220,233,245,.68); font-size: 13px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links strong { margin-bottom: 6px; color: #fff; font-size: 13px; }
.footer-links a { color: rgba(220,233,245,.72); font-size: 12px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(220,233,245,.62); font-size: 11px; }
.mobile-action-bar { display: none; }

.lightbox { width: min(1100px, calc(100% - 32px)); max-height: calc(100vh - 32px); padding: 0; border: 0; border-radius: 24px; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(3,11,20,.86); backdrop-filter: blur(9px); }
.lightbox img { width: 100%; max-height: calc(100vh - 32px); object-fit: contain; border-radius: 24px; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.lightbox-close { position: absolute; z-index: 3; top: -14px; right: -14px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(8,20,35,.85); color: #fff; font-size: 27px; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1120px) {
  :root { --header-h: 76px; }
  .header-inner { grid-template-columns: 195px 1fr auto; gap: 18px; }
  .brand { width: 185px; }
  .desktop-nav { gap: 20px; }
  .header-whatsapp span { display: none; }
  .header-whatsapp { width: 46px; padding: 0; }
  .theme-label { display: none; }
  .theme-toggle { padding-right: 6px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 38px; }
  .hero-visual { min-height: 470px; }
  .visual-main { height: 250px; }
  .visual-small { height: 205px; }
  .hygiene-badge { width: 125px; height: 125px; top: 165px; }
  .service-card { grid-template-columns: 46px 1fr 17px; gap: 12px; padding: 18px 15px; }
  .service-icon { width: 46px; height: 46px; }
  .trust-panel { grid-template-columns: repeat(3,1fr); }
  .trust-item:nth-child(3) { border-right: 0; }
  .trust-item:nth-child(n+4) { border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { grid-column: 1 / 2; }
  .trust-item:last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-button { display: flex; }
  .header-whatsapp { display: inline-flex; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 520px; }
  .visual-main { width: 75%; }
  .visual-small { width: 42%; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { min-height: 440px; }
  .about-media > img { height: 430px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card::after { display: none; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .map-card { min-height: 380px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
  :root { --header-h: 70px; --radius: 18px; --radius-lg: 24px; }
  html { scroll-padding-top: calc(var(--header-h) + 10px); }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 70px 0; }
  .section-pad-sm { padding: 30px 0; }
  .site-header { height: var(--header-h); }
  .header-inner { gap: 8px; }
  .brand { width: 145px; }
  .brand img { height: 54px; }
  .header-actions { gap: 7px; }
  .theme-toggle { height: 42px; padding: 4px; border-radius: 13px; }
  .theme-toggle-track { width: 54px; height: 32px; }
  .theme-knob { width: 24px; height: 24px; }
  html[data-theme="dark"] .theme-knob { transform: translateX(0); }
  html[data-theme="light"] .theme-knob { transform: translateX(24px); }
  .header-whatsapp { width: 42px; min-height: 42px; border-radius: 13px; }
  .header-whatsapp svg { width: 20px; height: 20px; }
  .menu-button { width: 42px; height: 42px; border-radius: 13px; }
  .mobile-menu { inset: var(--header-h) 0 auto; }
  .hero { padding: 44px 0 56px; }
  .hero-grid { gap: 34px; }
  .eyebrow { padding: 8px 10px; font-size: 9.5px; letter-spacing: .055em; }
  .hero h1 { margin-top: 18px; font-size: clamp(40px, 12vw, 56px); line-height: 1.02; }
  .hero-lead { font-size: 15px; line-height: 1.6; }
  .location-line { margin-top: 18px; font-size: 13px; }
  .hero-ctas { display: grid; grid-template-columns: 1fr; }
  .hero-ctas .button { width: 100%; min-height: 54px; }
  .hero-chips { gap: 7px; }
  .hero-chips span { padding: 7px 9px; font-size: 9.5px; }
  .hero-visual { min-height: 405px; }
  .visual-main { top: 0; width: 88%; height: 205px; border-radius: 22px; }
  .visual-small { bottom: 20px; width: 48%; height: 180px; border-radius: 20px; }
  .visual-small-left { left: 0; }
  .visual-small-right { right: 0; }
  .hygiene-badge { right: -5px; top: 145px; width: 100px; height: 100px; border-width: 5px; }
  .hygiene-badge strong { font-size: 22px; }
  .hygiene-badge span { font-size: 8px; }
  .visual-wave { display: none; }
  .services-rail { margin-top: -10px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 112px; grid-template-columns: 42px 1fr 13px; align-content: center; gap: 9px; padding: 14px 12px; }
  .service-icon { width: 42px; height: 42px; }
  .service-icon svg { width: 22px; height: 22px; }
  .service-card strong { font-size: 12px; }
  .service-card small { font-size: 9.5px; line-height: 1.35; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .about-copy h2, .cta-card h2 { font-size: 34px; }
  .section-heading p, .about-copy > p, .cta-card p { font-size: 14px; }
  .about-media { min-height: 345px; }
  .about-media > img { width: 94%; height: 330px; }
  .about-media::before { left: -12px; bottom: -12px; }
  .about-floating-card { right: 0; bottom: 16px; width: 210px; padding: 14px; }
  .about-points > div { grid-template-columns: 42px 1fr; gap: 13px; }
  .about-points > div > span { width: 42px; height: 42px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .process-card { min-height: 258px; padding: 22px 14px 18px; }
  .step-number { top: 12px; left: 12px; }
  .process-icon { width: 65px; height: 65px; margin-top: 15px; }
  .process-icon svg { width: 31px; height: 31px; }
  .process-card h3 { font-size: 15px; }
  .process-card p { font-size: 11px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { min-height: auto; padding: 25px; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(n) { grid-column: auto; min-height: 100px; border-right: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 165px; gap: 10px; }
  .gallery-item, .gallery-item.gallery-wide { grid-column: span 1; }
  .gallery-item:first-child, .gallery-item:last-child { grid-column: span 2; }
  .cta-card { min-height: auto; flex-direction: column; align-items: flex-start; padding: 30px 24px; }
  .cta-card .button { width: 100%; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { min-height: 120px; padding: 18px; }
  .map-card, .map-card iframe { min-height: 330px; }
  .map-overlay { left: 12px; right: 12px; bottom: 12px; padding: 12px; }
  .map-overlay a { padding: 9px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-action-bar { position: fixed; z-index: 999; left: 10px; right: 10px; bottom: max(9px, env(safe-area-inset-bottom)); height: 66px; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line-strong); border-radius: 20px; background: color-mix(in srgb, var(--surface-solid) 91%, transparent); box-shadow: 0 15px 50px rgba(0,0,0,.2); backdrop-filter: blur(22px); overflow: hidden; }
  .mobile-action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--brand-2); font-size: 9px; font-weight: 750; }
  .mobile-action-bar a + a { border-left: 1px solid var(--line); }
  .mobile-action-bar svg { width: 23px; height: 23px; }
  .mobile-action-bar .wa { color: #16a64b; }
  .mobile-action-bar .wa svg { fill: currentColor; stroke: none; }
  .mobile-action-bar .ig { color: #e34075; }
  .mobile-action-bar .loc { color: #8251d3; }
}

@media (max-width: 380px) {
  .brand { width: 125px; }
  .header-whatsapp { display: none; }
  .hero h1 { font-size: 39px; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .gallery-grid { display: block; }
  .gallery-item { width: 100%; height: 200px; margin-bottom: 10px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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