:root {
  --navy: #203a5c;
  --navy-deep: #0b1828;
  --navy-soft: #304b70;
  --gold: #f5c528;
  --gold-dark: #d8aa12;
  --cream: #f8f5ed;
  --white: #ffffff;
  --ink: #18202c;
  --muted: #687384;
  --line: #e7e9ed;
  --shadow: 0 22px 60px rgba(11, 24, 40, .13);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--white); 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 { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--gold); color: var(--navy-deep); padding: 10px 16px; border-radius: 10px; font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 16px; }

.topbar { background: var(--navy-deep); color: rgba(255,255,255,.85); font-size: 13px; letter-spacing: .02em; }
.topbar__content { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.topbar__divider { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(32,58,92,.08); transition: box-shadow .25s, background .25s; }
.header.is-scrolled { box-shadow: 0 10px 30px rgba(11,24,40,.08); background: rgba(255,255,255,.97); }
.header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; box-shadow: 0 6px 18px rgba(32,58,92,.16); }
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 19px; color: var(--navy); }
.brand small { margin-top: 4px; font-size: 11px; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.nav > a:not(.button) { position: relative; color: #3e4b5c; }
.nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--gold); transition: right .25s; }
.nav > a:not(.button):hover::after { right: 0; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--cream); padding: 11px; cursor: pointer; }
.menu-button span { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: transform .2s, opacity .2s; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; font-size: 15px; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: currentColor; }
.button--small { min-height: 44px; padding-inline: 18px; font-size: 13px; border-radius: 12px; }
.button--gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 12px 26px rgba(245,197,40,.25); }
.button--gold:hover { background: #ffd33f; box-shadow: 0 16px 34px rgba(245,197,40,.34); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.button--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); }
.button--navy { background: var(--navy); color: var(--white); }
.button--full { width: 100%; }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-deep), var(--navy) 56%, #2d4f79); color: var(--white); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.3) 1px, transparent 0); background-size: 28px 28px; mask-image: linear-gradient(to right, #000, transparent 72%); }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .35; }
.hero__glow--one { width: 430px; height: 430px; background: rgba(245,197,40,.22); right: 5%; top: -160px; }
.hero__glow--two { width: 320px; height: 320px; background: rgba(80,154,255,.18); left: 34%; bottom: -180px; }
.hero__grid { position: relative; min-height: 690px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 76px; align-items: center; padding-block: 74px 84px; }
.eyebrow { width: fit-content; display: flex; gap: 10px; align-items: center; padding: 8px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 13px; font-weight: 700; }
.stars { color: var(--gold); letter-spacing: 1px; }
.hero h1 { margin: 22px 0 22px; font-size: clamp(52px, 6.3vw, 82px); line-height: .98; letter-spacing: -.055em; }
.hero h1 span { color: var(--gold); }
.hero__copy > p { max-width: 600px; margin: 0; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero__facts { display: flex; gap: 36px; margin-top: 42px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.hero__facts div { display: grid; }
.hero__facts strong { font-size: 25px; line-height: 1; color: var(--white); }
.hero__facts span { margin-top: 7px; color: rgba(255,255,255,.58); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.hero__visual { position: relative; min-height: 520px; }
.hero__image-wrap { position: absolute; right: 0; top: 0; width: min(100%, 510px); aspect-ratio: 1/1; border-radius: 42% 12% 38% 12%; overflow: hidden; box-shadow: 0 35px 80px rgba(0,0,0,.35); border: 8px solid rgba(255,255,255,.08); transform: rotate(1.5deg); }
.hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__image-shine { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(255,255,255,.18), transparent 30%, transparent 70%, rgba(245,197,40,.12)); pointer-events: none; }
.floating-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 17px; color: var(--navy-deep); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); box-shadow: var(--shadow); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { margin-top: 2px; font-size: 11px; color: var(--muted); }
.floating-card--rating { left: -30px; top: 74px; }
.floating-card__icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--navy-deep); background: var(--gold); font-size: 20px; }
.floating-card--product { right: -22px; bottom: 26px; max-width: 285px; }
.floating-card--product img { width: 64px; height: 64px; border-radius: 13px; object-fit: cover; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip__grid { min-height: 78px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.trust-strip__grid div { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 16px; border-right: 1px solid var(--line); font-size: 13px; font-weight: 800; color: #415067; }
.trust-strip__grid div:first-child { border-left: 1px solid var(--line); }
.trust-strip__grid span { color: var(--gold-dark); }

.section { padding-block: 110px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 48px; margin-bottom: 45px; }
.section-heading > div { max-width: 650px; }
.section-heading h2, .benefits__content h2, .reviews h2, .contact-card h2 { margin: 8px 0 0; color: var(--navy-deep); font-size: clamp(34px, 4vw, 50px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted); }
.section-heading--center { display: block; text-align: center; }
.section-heading--center > div, .section-heading--center > p { max-width: 730px; margin-inline: auto; }
.section-heading--center > p { margin-top: 16px; }
.kicker { display: inline-block; color: var(--gold-dark); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }

.categories { background: var(--cream); }
.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.category-card { position: relative; min-height: 470px; overflow: hidden; border-radius: var(--radius); box-shadow: 0 18px 50px rgba(30,43,59,.09); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.75,.2,1); }
.category-card:hover img { transform: scale(1.055); }
.category-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,15,28,.88), rgba(5,15,28,.04) 62%); }
.category-card__content { position: absolute; left: 28px; right: 28px; bottom: 28px; color: var(--white); }
.category-card__content span { color: rgba(255,255,255,.68); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.category-card__content h3 { margin: 6px 0 10px; font-size: 28px; }
.category-card__content a { color: var(--gold); font-size: 13px; font-weight: 800; }

.gallery-section { background: var(--white); }
.gallery { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 250px; gap: 16px; }
.gallery__item { position: relative; min-width: 0; padding: 0; border: 0; overflow: hidden; border-radius: 18px; background: #e8ebef; cursor: zoom-in; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,15,26,.65), transparent 55%); opacity: .75; transition: opacity .3s; }
.gallery__item span { position: absolute; z-index: 1; left: 18px; bottom: 15px; color: var(--white); font-weight: 800; font-size: 14px; }
.gallery__item:hover img { transform: scale(1.05); filter: saturate(1.08); }
.gallery__item:hover::after { opacity: 1; }

.benefits { background: var(--cream); overflow: hidden; }
.benefits__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.benefits__visual { position: relative; min-height: 620px; }
.benefits__image-main { position: absolute; left: 0; top: 0; width: 78%; height: 520px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.benefits__image-main img, .benefits__image-small img { width: 100%; height: 100%; object-fit: cover; }
.benefits__image-small { position: absolute; right: 0; bottom: 0; width: 48%; height: 270px; border-radius: 22px; overflow: hidden; border: 9px solid var(--cream); box-shadow: var(--shadow); }
.benefits__badge { position: absolute; left: 42px; bottom: 44px; width: 120px; height: 120px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--gold); color: var(--navy-deep); box-shadow: 0 15px 40px rgba(245,197,40,.32); }
.benefits__badge strong { font-size: 34px; line-height: 1; }
.benefits__badge span { font-size: 12px; font-weight: 800; }
.benefits__content > p { margin: 22px 0 28px; color: var(--muted); font-size: 17px; }
.benefit-list { display: grid; gap: 8px; }
.benefit-item { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid #dfe2e6; }
.benefit-item__number { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--navy); background: rgba(32,58,92,.08); font-size: 12px; font-weight: 900; }
.benefit-item h3 { margin: 0 0 4px; font-size: 18px; color: var(--navy-deep); }
.benefit-item p { margin: 0; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--navy); font-weight: 900; }
.text-link span { color: var(--gold-dark); font-size: 20px; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.reviews { position: relative; overflow: hidden; background: var(--navy-deep); color: var(--white); }
.reviews::after { content: "“"; position: absolute; right: 4%; top: -110px; font-family: Georgia, serif; color: rgba(255,255,255,.035); font-size: 480px; line-height: 1; }
.reviews__top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 44px; }
.reviews h2 { color: var(--white); max-width: 600px; }
.kicker--light { color: var(--gold); }
.reviews__score { display: flex; align-items: center; gap: 18px; }
.reviews__score > strong { font-size: 62px; line-height: .85; }
.reviews__score div { display: grid; }
.reviews__score span { color: var(--gold); letter-spacing: 2px; }
.reviews__score small { color: rgba(255,255,255,.55); margin-top: 4px; }
.review-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { display: flex; flex-direction: column; min-height: 330px; padding: 28px; border: 1px solid rgba(255,255,255,.09); border-radius: 20px; background: rgba(255,255,255,.055); backdrop-filter: blur(8px); }
.review-card__stars { color: var(--gold); letter-spacing: 2px; }
.review-card blockquote { margin: 24px 0 28px; color: rgba(255,255,255,.86); font-size: 17px; line-height: 1.75; }
.review-card footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy-deep); font-weight: 900; }
.review-card footer div { display: grid; }
.review-card footer strong { font-size: 14px; }
.review-card footer small { color: rgba(255,255,255,.48); }

.contact-section { padding-block: 80px; background: linear-gradient(to bottom, var(--white), var(--cream)); }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; padding: 64px; border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.contact-card::before { content: ""; position: absolute; width: 300px; height: 300px; left: -150px; bottom: -160px; border-radius: 50%; background: rgba(245,197,40,.14); }
.contact-card__copy { position: relative; }
.contact-card__copy > p { color: var(--muted); max-width: 470px; margin: 20px 0 30px; }
.contact-card__info { display: grid; gap: 12px; }
.contact-card__info a { display: grid; width: fit-content; }
.contact-card__info span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.contact-card__info strong { color: var(--navy); font-size: 16px; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: #465265; font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #dfe3e8; border-radius: 12px; background: #fbfbfc; padding: 13px 14px; outline: none; color: var(--ink); transition: border .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--navy-soft); box-shadow: 0 0 0 4px rgba(32,58,92,.08); }
.contact-form > small { text-align: center; color: var(--muted); font-size: 11px; }

.location { background: var(--cream); }
.location__grid { display: grid; grid-template-columns: 1.4fr .6fr; min-height: 520px; border-radius: 26px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.location__map iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: saturate(.85) contrast(.96); }
.location__card { padding: 38px; }
.location__card > img { width: 86px; height: 86px; object-fit: cover; border-radius: 50%; box-shadow: 0 8px 24px rgba(32,58,92,.16); }
.location__card h3 { margin: 18px 0 22px; font-size: 25px; color: var(--navy-deep); }
.location__detail { padding: 15px 0; border-top: 1px solid var(--line); }
.location__detail span { color: var(--gold-dark); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.location__detail p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.location__detail a { color: var(--navy); font-weight: 800; }
.location__card .button { margin-top: 18px; }

.footer { color: rgba(255,255,255,.65); background: #07111e; }
.footer__top { min-height: 190px; display: grid; grid-template-columns: 1.2fr 1fr .6fr; align-items: center; gap: 40px; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 74px; height: 74px; object-fit: cover; border-radius: 50%; }
.footer__brand div { display: grid; }
.footer__brand strong { color: var(--white); font-size: 21px; }
.footer__brand span { font-size: 12px; }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; font-size: 13px; }
.footer__links a:hover, .footer__social a:hover { color: var(--gold); }
.footer__social { display: grid; gap: 10px; font-weight: 800; font-size: 13px; }
.footer__bottom { min-height: 66px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }

.whatsapp-float { position: fixed; z-index: 60; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: #20b85a; box-shadow: 0 14px 34px rgba(20,142,67,.35); transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 38px rgba(20,142,67,.45); }
.whatsapp-float svg { width: 29px; fill: currentColor; }

.lightbox { width: min(92vw, 980px); max-height: 92vh; padding: 0; border: 0; border-radius: 20px; overflow: visible; background: transparent; }
.lightbox::backdrop { background: rgba(3,9,17,.88); backdrop-filter: blur(5px); }
.lightbox img { max-width: 92vw; max-height: 88vh; margin: auto; border-radius: 18px; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.lightbox__close { position: absolute; z-index: 2; right: -12px; top: -16px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--white); color: var(--navy-deep); font-size: 28px; cursor: pointer; box-shadow: 0 8px 22px rgba(0,0,0,.25); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .22s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav { gap: 18px; }
  .nav > a:not(.button) { display: none; }
  .hero__grid { gap: 36px; }
  .floating-card--rating { left: -10px; }
  .floating-card--product { right: -5px; }
  .benefits__grid { gap: 50px; }
  .contact-card { padding: 48px; gap: 46px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__content { font-size: 11px; gap: 10px; }
  .header__inner { min-height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 17px; }
  .menu-button { display: block; }
  .nav { position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: grid; gap: 4px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s; }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.button) { display: block; padding: 11px 12px; border-radius: 10px; }
  .nav > a:not(.button):hover { background: var(--cream); }
  .nav > a:not(.button)::after { display: none; }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; padding-block: 58px 72px; }
  .hero__copy { text-align: center; }
  .eyebrow { margin-inline: auto; }
  .hero__copy > p { margin-inline: auto; }
  .hero__actions, .hero__facts { justify-content: center; }
  .hero__visual { min-height: 560px; max-width: 600px; width: 100%; margin-inline: auto; }
  .hero__image-wrap { left: 50%; right: auto; transform: translateX(-50%) rotate(1deg); }
  .floating-card--rating { left: 2%; }
  .floating-card--product { right: 2%; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid div { border-bottom: 1px solid var(--line); }
  .section { padding-block: 80px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 14px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 410px; }
  .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 220px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits__visual { max-width: 620px; width: 100%; margin-inline: auto; }
  .review-grid { grid-template-columns: 1fr; }
  .reviews__top { align-items: start; }
  .contact-card { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map iframe { min-height: 400px; }
  .footer__top { grid-template-columns: 1fr 1fr; padding-block: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .topbar__content span:last-child, .topbar__divider { display: none; }
  .brand small { display: none; }
  .header .button--small { width: 100%; }
  .hero h1 { font-size: 49px; }
  .hero__copy > p { font-size: 16px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__facts { gap: 20px; }
  .hero__facts strong { font-size: 21px; }
  .hero__visual { min-height: 430px; }
  .hero__image-wrap { width: 92%; }
  .floating-card--rating { top: 28px; left: -3px; }
  .floating-card--product { bottom: 4px; right: -3px; max-width: 235px; }
  .floating-card--product img { width: 52px; height: 52px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid div { justify-content: flex-start; border-left: 0!important; border-right: 0; padding-left: 12%; }
  .section-heading h2, .benefits__content h2, .reviews h2, .contact-card h2 { font-size: 36px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 10px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .benefits__visual { min-height: 470px; }
  .benefits__image-main { width: 88%; height: 390px; }
  .benefits__image-small { width: 48%; height: 190px; }
  .benefits__badge { left: 20px; bottom: 12px; width: 92px; height: 92px; }
  .benefits__badge strong { font-size: 27px; }
  .reviews__top { display: block; }
  .reviews__score { margin-top: 28px; }
  .reviews__score > strong { font-size: 52px; }
  .contact-card { padding: 30px 20px; border-radius: 22px; }
  .location__card { padding: 28px 22px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__links { max-width: 320px; }
  .footer__bottom { display: grid; justify-content: start; padding-block: 18px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

@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; }
}
