:root {
  --navy-950: #061724;
  --navy-900: #071e2e;
  --navy-800: #0d2c41;
  --blue-700: #0069b9;
  --blue-600: #007bcf;
  --blue-500: #1199e6;
  --blue-100: #e6f4fc;
  --sky-50: #f5fbff;
  --white: #ffffff;
  --text: #182532;
  --muted: #607080;
  --line: #dce7ee;
  --yellow: #ffc323;
  --green: #20b858;
  --shadow-sm: 0 10px 35px rgba(7, 30, 46, .09);
  --shadow-lg: 0 24px 70px rgba(7, 30, 46, .20);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body { margin: 0; color: var(--text); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: currentColor; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 10px 14px; border-radius: 8px; background: var(--white); color: var(--navy-950); box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 16px; }

.topbar { background: var(--navy-950); color: rgba(255,255,255,.78); font-size: .82rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { color: var(--blue-500); }
a.topbar__item:hover { color: var(--white); }

.header { position: relative; z-index: 1000; color: var(--white); background: linear-gradient(125deg, var(--navy-950), var(--navy-800)); }
.header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 176px; height: auto; }
.nav { display: flex; align-items: center; gap: 27px; font-weight: 700; font-size: .91rem; }
.nav > a:not(.btn) { position: relative; padding: 30px 0; }
.nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; background: var(--blue-500); transition: right .25s ease; }
.nav > a:not(.btn):hover::after { right: 0; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 10px; padding: 12px 22px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--white); background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); box-shadow: 0 12px 30px rgba(0, 123, 207, .27); }
.btn--primary:hover { box-shadow: 0 16px 35px rgba(0, 123, 207, .36); }
.btn--header { min-height: 44px; padding: 10px 18px; }
.btn--large { min-height: 56px; padding-inline: 26px; }
.btn--ghost { color: var(--white); border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.07); }
.btn--ghost:hover { background: rgba(255,255,255,.13); }
.btn--light { color: var(--navy-900); background: var(--white); box-shadow: var(--shadow-sm); }
.btn--whatsapp { width: 100%; color: var(--white); background: var(--green); box-shadow: 0 14px 30px rgba(32,184,88,.24); }
.menu-toggle { display: none; width: 45px; height: 45px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; background: rgba(255,255,255,.08); padding: 11px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--white); transition: .25s ease; }

.hero { position: relative; overflow: hidden; padding: 76px 0 82px; color: var(--white); background: radial-gradient(circle at 75% 15%, rgba(17,153,230,.23), transparent 30%), linear-gradient(125deg, var(--navy-950), var(--navy-800)); }
.hero::before { content: ""; position: absolute; width: 440px; height: 440px; left: -250px; bottom: -290px; border: 80px solid rgba(17,153,230,.09); border-radius: 50%; }
.hero__pattern { position: absolute; inset: 0 0 auto auto; width: 46%; height: 100%; opacity: .15; background-image: radial-gradient(circle, var(--white) 1.2px, transparent 1.3px); background-size: 25px 25px; mask-image: linear-gradient(to left, black, transparent); }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 68px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #bfe8ff; font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: var(--blue-500); }
.eyebrow--blue { color: var(--blue-700); }
.hero h1 { margin: 19px 0 22px; font-size: clamp(2.55rem, 5vw, 4.65rem); line-height: 1.03; letter-spacing: -.045em; }
.hero h1 strong { display: block; color: #70c9fa; font-weight: 900; }
.hero__content > p { max-width: 660px; margin: 0; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero__trust { display: flex; align-items: center; gap: 0; margin-top: 39px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__trust > div { min-width: 135px; padding-right: 28px; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.13); }
.hero__trust > div:last-child { border: 0; margin: 0; padding: 0; }
.hero__trust strong, .hero__trust span { display: block; }
.hero__trust strong { font-size: .92rem; }
.hero__trust span { color: rgba(255,255,255,.55); font-size: .78rem; }
.hero__visual { position: relative; min-height: 545px; }
.hero__photo { position: absolute; inset: 25px 0 20px 10%; overflow: hidden; border: 8px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,23,36,.72), transparent 58%); }
.hero__photo > img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-label { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: flex; align-items: center; gap: 9px; font-size: .78rem; font-weight: 700; }
.status-dot { width: 9px; height: 9px; flex: 0 0 auto; border: 2px solid rgba(255,255,255,.6); border-radius: 50%; background: #47da77; box-shadow: 0 0 0 5px rgba(71,218,119,.14); }
.hero__mascot { position: absolute; z-index: 3; width: min(69%, 390px); right: -34px; bottom: -78px; filter: drop-shadow(0 18px 20px rgba(0,0,0,.3)); }
.hero__badge { position: absolute; z-index: 4; left: -13px; top: 53px; width: 238px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; color: var(--navy-900); background: rgba(255,255,255,.96); border-radius: 13px; box-shadow: var(--shadow-lg); font-size: .76rem; line-height: 1.35; }
.hero__badge svg { width: 36px; height: 36px; flex: 0 0 auto; padding: 8px; border-radius: 9px; color: var(--white); background: var(--blue-600); }
.hero__badge strong { display: block; font-size: .85rem; }

.quick-contact { color: var(--white); background: var(--blue-700); }
.quick-contact__grid { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.quick-contact__text { display: flex; align-items: center; gap: 16px; }
.quick-contact__text strong, .quick-contact__text span { display: block; }
.quick-contact__text strong { font-size: 1.01rem; }
.quick-contact__text span { color: rgba(255,255,255,.7); font-size: .86rem; }
.icon-box { width: 48px; height: 48px; display: grid !important; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.09); }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; white-space: nowrap; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.text-link--blue { color: var(--blue-700); }

.section { padding: 102px 0; }
.section--soft { background: var(--sky-50); }
.section--dark { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.section--dark::after { content: ""; position: absolute; width: 520px; height: 520px; right: -320px; top: -230px; border: 95px solid rgba(17,153,230,.09); border-radius: 50%; }
.section-heading { margin-bottom: 46px; }
.section-heading--center { max-width: 730px; margin-inline: auto; text-align: center; }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.section-heading--split > p { max-width: 470px; }
.section-heading h2, .differentials h2, .faq h2, .quote-section h2, .contact h2 { margin: 13px 0 16px; color: var(--navy-900); font-size: clamp(2rem, 3.7vw, 3.25rem); line-height: 1.08; letter-spacing: -.035em; }
.section-heading p, .faq__intro > p, .contact__info > p { margin: 0; color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 26px rgba(7,30,46,.05); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); }
.service-card__image { height: 235px; overflow: hidden; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card__image img { transform: scale(1.045); }
.service-card__content { position: relative; padding: 27px 28px 30px; }
.service-card__number { position: absolute; right: 24px; top: 21px; color: var(--blue-100); font-size: 2.3rem; font-weight: 900; line-height: 1; }
.service-card h3 { position: relative; margin: 0 0 11px; color: var(--navy-900); font-size: 1.27rem; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: .91rem; }
.service-card__content > a { color: var(--blue-700); font-size: .86rem; font-weight: 900; }
.service-card__content > a span { margin-left: 7px; }
.service-card--cta { position: relative; color: var(--white); background: linear-gradient(135deg, var(--blue-600), #005a9d); border: 0; }
.service-card__cta-content { position: relative; z-index: 2; padding: 40px 34px; }
.service-card--cta h3 { margin-top: 15px; color: var(--white); font-size: 1.75rem; line-height: 1.14; }
.service-card--cta p { color: rgba(255,255,255,.72); }
.mini-label { display: inline-flex; padding: 6px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 99px; background: rgba(255,255,255,.09); font-size: .69rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.service-card__decor { position: absolute; width: 100%; height: 100%; right: -60px; bottom: -80px; fill: none; stroke: rgba(255,255,255,.1); stroke-width: 14px; }

.differentials { position: relative; z-index: 2; display: grid; grid-template-columns: .78fr 1.22fr; gap: 85px; align-items: center; }
.differentials__intro h2 { color: var(--white); }
.differentials__intro > p { margin: 0 0 28px; color: rgba(255,255,255,.62); }
.differentials__list { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.feature { display: flex; gap: 15px; padding: 23px; border: 1px solid rgba(255,255,255,.10); border-radius: 17px; background: rgba(255,255,255,.045); }
.feature__icon { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: #78d0ff; background: rgba(17,153,230,.14); }
.feature h3 { margin: 0 0 6px; font-size: 1.02rem; }
.feature p { margin: 0; color: rgba(255,255,255,.56); font-size: .82rem; }

.process { overflow: hidden; }
.process__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process__grid::before { content: ""; position: absolute; z-index: -1; left: 8%; right: 8%; top: 33px; border-top: 2px dashed #bed8e8; }
.process-step { text-align: center; }
.process-step > span { width: 67px; height: 67px; display: grid; place-items: center; margin: 0 auto 22px; border: 8px solid var(--white); border-radius: 50%; color: var(--white); background: var(--blue-600); box-shadow: 0 0 0 2px #bed8e8, var(--shadow-sm); font-weight: 900; }
.process-step h3 { margin: 0 0 7px; color: var(--navy-900); font-size: 1.05rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .86rem; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 16px; }
.gallery__item { position: relative; overflow: hidden; border: 0; border-radius: 18px; padding: 0; background: var(--navy-900); cursor: zoom-in; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, opacity .35s ease; }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,23,36,.8), transparent 58%); }
.gallery__item span { position: absolute; z-index: 2; left: 20px; bottom: 16px; color: var(--white); font-weight: 800; }
.gallery__item:hover img { transform: scale(1.055); opacity: .88; }

.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 34px rgba(7,30,46,.06); }
.stars { color: var(--yellow); letter-spacing: .12em; }
.testimonial blockquote { flex: 1; margin: 18px 0 25px; color: #344554; font-size: .93rem; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__author > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); font-size: .78rem; font-weight: 900; }
.testimonial__author strong, .testimonial__author small { display: block; }
.testimonial__author small { color: var(--muted); font-size: .73rem; }

.faq__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 75px; align-items: start; }
.faq__intro { position: sticky; top: 126px; }
.faq__intro .text-link { margin-top: 25px; }
.accordion { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.accordion__item + .accordion__item { border-top: 1px solid var(--line); }
.accordion__item button { width: 100%; min-height: 75px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 0; padding: 17px 24px; text-align: left; background: transparent; cursor: pointer; font-weight: 800; }
.accordion__item button svg { flex: 0 0 auto; color: var(--blue-700); transition: transform .25s ease; }
.accordion__item.is-open button svg { transform: rotate(180deg); }
.accordion__content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion__content > p { overflow: hidden; margin: 0; padding: 0 24px; color: var(--muted); font-size: .89rem; transition: padding .3s ease; }
.accordion__item.is-open .accordion__content { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__content > p { padding-bottom: 23px; }

.quote-section { position: relative; overflow: hidden; padding: 102px 0; color: var(--white); background: radial-gradient(circle at 10% 10%, rgba(17,153,230,.22), transparent 30%), var(--navy-900); }
.quote-section::after { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(45deg, transparent 48%, rgba(255,255,255,.08) 49%, rgba(255,255,255,.08) 51%, transparent 52%); background-size: 24px 24px; }
.quote-section__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .86fr 1.14fr; gap: 72px; align-items: center; }
.quote-section h2 { color: var(--white); }
.quote-section__content > p { color: rgba(255,255,255,.64); }
.check-list { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 700; }
.check-list svg { color: #65e48f; }
.quote-form { padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.98); box-shadow: var(--shadow-lg); color: var(--text); }
.quote-form label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--navy-900); font-size: .78rem; font-weight: 850; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #cfdde5; border-radius: 10px; padding: 13px 14px; outline: none; color: var(--text); background: var(--white); transition: border .2s ease, box-shadow .2s ease; }
.quote-form textarea { resize: vertical; min-height: 120px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(17,153,230,.11); }
.quote-form small { display: block; margin-top: 12px; color: var(--muted); font-size: .69rem; text-align: center; }

.contact__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 58px; align-items: stretch; }
.contact-card { display: flex; align-items: flex-start; gap: 15px; margin-top: 24px; }
.contact-card > span { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: var(--blue-700); background: var(--blue-100); }
.contact-card strong, .contact-card p { display: block; margin: 0; }
.contact-card p { margin-top: 3px; color: var(--muted); font-size: .87rem; }
.contact__info > .btn { margin-top: 28px; }
.map { min-height: 440px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; }

.footer { color: rgba(255,255,255,.68); background: var(--navy-950); }
.footer__top { display: grid; grid-template-columns: 1.3fr .75fr .75fr 1fr; gap: 50px; padding: 62px 0 45px; }
.footer__brand img { width: 180px; height: auto; }
.footer__brand p { max-width: 270px; font-size: .85rem; }
.footer__links, .footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: .83rem; }
.footer__links strong, .footer__contact strong { margin-bottom: 6px; color: var(--white); }
.footer a:hover { color: var(--white); }
.footer__contact .text-link { margin-top: 6px; color: #75d2ff; }
.footer__bottom { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: .76rem; }

.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; height: 57px; display: flex; align-items: center; gap: 10px; padding: 0 20px 0 16px; color: var(--white); background: var(--green); border-radius: 99px; box-shadow: 0 14px 35px rgba(13,84,39,.32); font-size: .83rem; font-weight: 900; transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 27px; height: 27px; }

.lightbox { position: fixed; z-index: 2000; inset: 0; display: grid; place-items: center; padding: 50px; background: rgba(3,15,23,.92); backdrop-filter: blur(7px); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: 16px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; right: 25px; top: 20px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.08); font-size: 2rem; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-sm { transition-delay: .08s; }
.reveal--delay-md { transition-delay: .16s; }
.reveal--delay { transition-delay: .12s; }

@media (max-width: 1050px) {
  .nav { position: absolute; inset: calc(100% - 2px) 20px auto; display: grid; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 0 0 16px 16px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.btn) { padding: 13px 12px; }
  .nav > a:not(.btn)::after { display: none; }
  .btn--header { margin-top: 8px; }
  .menu-toggle { display: block; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .hero__mascot { right: -50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .differentials { grid-template-columns: 1fr; gap: 45px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 42px 24px; }
  .process__grid::before { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 1; }
  .quote-section__grid { gap: 40px; }
  .footer__top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__contact { grid-column: 2 / -1; }
}

@media (max-width: 800px) {
  .topbar__inner { min-height: 34px; justify-content: center; }
  .topbar__item:first-child { display: none; }
  .header__inner { min-height: 72px; }
  .brand img { width: 147px; }
  .nav { inset: calc(100% - 2px) 14px auto; }
  .hero { padding: 64px 0 0; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 25px; }
  .hero__visual { min-height: 485px; }
  .hero__photo { inset: 20px 0 30px; }
  .hero__mascot { width: 325px; right: -20px; bottom: -65px; }
  .hero__badge { left: 15px; top: 48px; }
  .quick-contact__grid { min-height: 135px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 12px; padding: 24px 0; }
  .section { padding: 78px 0; }
  .section-heading--split { display: block; }
  .section-heading--split > p { margin-top: 15px; }
  .faq__layout, .quote-section__grid, .contact__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .quote-section { padding: 78px 0; }
  .contact__grid { gap: 38px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__contact { grid-column: auto; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero h1 { font-size: 2.65rem; }
  .hero__actions { display: grid; }
  .hero__trust { align-items: flex-start; }
  .hero__trust > div { min-width: 0; flex: 1; margin-right: 14px; padding-right: 14px; }
  .hero__visual { min-height: 390px; }
  .hero__photo { inset: 20px 0 25px; }
  .hero__photo-label { left: 16px; right: 16px; bottom: 15px; font-size: .68rem; }
  .hero__mascot { width: 255px; right: -32px; bottom: -57px; }
  .hero__badge { left: 10px; top: 37px; width: 203px; padding: 10px 12px; }
  .hero__badge svg { width: 31px; height: 31px; }
  .services-grid, .differentials__list, .process__grid { grid-template-columns: 1fr; }
  .service-card__image { height: 220px; }
  .process__grid { gap: 32px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 24px 18px; }
  .map, .map iframe { min-height: 340px; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__brand, .footer__contact { grid-column: auto; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 55px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .lightbox { padding: 22px; }
}

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