:root {
  --blue: #1769ff;
  --blue-dark: #0a2e87;
  --blue-soft: #eaf2ff;
  --red: #ff2d3f;
  --yellow: #ffd21f;
  --green: #35c85a;
  --purple: #7b38d8;
  --pink: #ff3c94;
  --ink: #14213d;
  --muted: #5b6680;
  --surface: #ffffff;
  --surface-soft: #f5f8ff;
  --line: #dfe7f6;
  --shadow: 0 22px 60px rgba(20, 33, 61, .14);
  --shadow-soft: 0 12px 36px rgba(20, 33, 61, .10);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 9999;
  padding: .75rem 1rem;
  border-radius: 10px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-heading { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-heading h2,
.services-copy h2,
.location-info h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.section-heading > p:last-child,
.services-copy > p,
.contact-copy > p { margin: 1rem auto 0; color: var(--muted); font-size: 1.05rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 84px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(223,231,246,.9);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .8rem; min-width: max-content; }
.brand img { width: 66px; height: 66px; object-fit: contain; border-radius: 17px; background: #fff; box-shadow: 0 7px 20px rgba(23,105,255,.12); }
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: 1.2rem; letter-spacing: -.02em; }
.brand small { margin-top: .28rem; color: var(--blue); font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 1.25rem; }
.main-nav a { font-size: .94rem; font-weight: 750; color: #33405d; transition: color .2s ease, transform .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav .nav-cta { padding: .85rem 1.15rem; color: #fff; background: linear-gradient(135deg, var(--blue), #6b42ef); border-radius: 999px; box-shadow: 0 10px 24px rgba(23,105,255,.25); }
.main-nav .nav-cta:hover { color: #fff; transform: translateY(-2px); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--blue-soft); }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--blue-dark); transition: transform .25s ease, opacity .25s ease; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  padding: 74px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,210,31,.28), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(255,45,63,.20), transparent 28%),
    linear-gradient(140deg, #f6fbff 0%, #eef3ff 45%, #fff7ef 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--pink);
  box-shadow: 90px 70px 0 var(--yellow), 190px -45px 0 var(--green), 300px 100px 0 var(--blue);
  transform: rotate(25deg);
  opacity: .5;
}
.hero::before { top: 90px; left: 5%; }
.hero::after { right: 4%; bottom: 120px; transform: rotate(-18deg); }
.hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); opacity: .65; }
.hero-orb-one { width: 380px; height: 380px; right: -160px; top: 110px; background: rgba(23,105,255,.12); }
.hero-orb-two { width: 250px; height: 250px; left: -130px; bottom: 50px; background: rgba(53,200,90,.13); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr); align-items: center; gap: clamp(2.5rem, 7vw, 6.5rem); }
.hero-copy h1 { margin: 0; max-width: 720px; font-size: clamp(3.1rem, 7vw, 6.2rem); line-height: .94; letter-spacing: -.065em; }
.hero-copy h1 span { display: block; color: transparent; background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink)); background-clip: text; -webkit-background-clip: text; }
.hero-lead { max-width: 680px; margin: 1.6rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 52px; padding: .9rem 1.3rem; border: 0; border-radius: 16px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-3px); }
.btn svg { width: 21px; height: 21px; fill: currentColor; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #5847eb); box-shadow: 0 14px 30px rgba(23,105,255,.28); }
.btn-secondary { color: var(--blue-dark); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.btn-waze { color: #10295a; background: #a7f3ff; }
.btn-full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.trust-row span { padding: .62rem .82rem; border: 1px solid rgba(23,105,255,.14); border-radius: 999px; background: rgba(255,255,255,.7); color: #4c5874; font-size: .84rem; }
.trust-row b { color: var(--ink); }
.hero-media { position: relative; display: grid; justify-items: center; }
.video-card { position: relative; width: min(100%, 390px); padding: 12px; border-radius: 36px; background: #fff; box-shadow: 0 35px 80px rgba(15, 44, 112, .25); transform: rotate(1.5deg); }
.video-card::before { content: ""; position: absolute; inset: 6% -9% auto auto; z-index: -1; width: 75%; height: 75%; border-radius: 40px; background: linear-gradient(135deg, var(--yellow), var(--red)); transform: rotate(7deg); opacity: .9; }
.video-card video { width: 100%; aspect-ratio: 478 / 850; object-fit: cover; border-radius: 27px; background: #111; }
.video-badge { position: absolute; left: 50%; bottom: 28px; display: flex; align-items: center; gap: .55rem; width: max-content; max-width: calc(100% - 38px); padding: .7rem .9rem; transform: translateX(-50%); border-radius: 999px; background: rgba(8,22,55,.84); color: #fff; font-size: .82rem; font-weight: 800; backdrop-filter: blur(12px); }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #5cff86; box-shadow: 0 0 0 6px rgba(92,255,134,.16); }
.hero-mini-card { position: absolute; right: -10px; bottom: 26px; width: 220px; padding: 1rem; border: 1px solid rgba(255,255,255,.65); border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); transform: rotate(-3deg); }
.hero-mini-card strong { display: block; font-size: .95rem; }
.hero-mini-card span { display: block; margin-top: .25rem; color: var(--muted); font-size: .8rem; line-height: 1.35; }

.quick-contact { position: relative; z-index: 4; margin-top: -34px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.quick-grid a { display: flex; align-items: center; gap: .85rem; min-height: 96px; padding: 1.2rem 1.5rem; border-right: 1px solid var(--line); }
.quick-grid a:last-child { border-right: 0; }
.quick-grid a:hover { background: var(--surface-soft); }
.quick-icon { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border-radius: 15px; background: var(--blue-soft); color: var(--blue); font-size: 1.4rem; font-weight: 900; }
.quick-grid small { display: block; color: var(--muted); font-size: .78rem; }
.quick-grid strong { display: block; font-size: .96rem; }

.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; }
.catalog-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 30px rgba(20,33,61,.07); transition: transform .25s ease, box-shadow .25s ease; }
.catalog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.catalog-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.catalog-card div { padding: 1.25rem 1.25rem 1.45rem; }
.catalog-card span { display: inline-block; margin-bottom: .55rem; color: var(--blue); font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.catalog-card h3 { margin: 0; font-size: 1.28rem; letter-spacing: -.02em; }
.catalog-card p { margin: .55rem 0 0; color: var(--muted); font-size: .94rem; }

.services-section { background: var(--surface-soft); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2.5rem, 7vw, 6rem); }
.services-photo { position: relative; }
.services-photo img { width: 100%; min-height: 560px; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.services-photo::after { content: ""; position: absolute; z-index: -1; left: -24px; bottom: -24px; width: 55%; height: 45%; border-radius: 32px; background: var(--yellow); }
.services-stamp { position: absolute; right: -20px; bottom: 34px; display: grid; place-items: center; width: 160px; height: 160px; padding: 1.2rem; border: 8px solid #fff; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--pink)); color: #fff; text-align: center; box-shadow: var(--shadow); transform: rotate(-8deg); }
.services-stamp strong { font-size: 1.8rem; line-height: 1; }
.services-stamp span { font-size: .78rem; font-weight: 800; line-height: 1.2; }
.service-list { display: grid; gap: .85rem; margin-top: 2rem; }
.service-list article { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; align-items: start; padding: 1rem; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.service-list article > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--blue-soft); color: var(--blue); font-weight: 950; }
.service-list h3 { margin: 0; font-size: 1.05rem; }
.service-list p { margin: .25rem 0 0; color: var(--muted); font-size: .9rem; }
.text-link { display: inline-flex; gap: .55rem; margin-top: 1.4rem; color: var(--blue); font-weight: 900; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.gallery-section { overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 220px; gap: .9rem; }
.gallery-item { position: relative; overflow: hidden; min-width: 0; padding: 0; border: 0; border-radius: 20px; background: #dfe7f6; box-shadow: 0 8px 24px rgba(20,33,61,.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: 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; right: 14px; bottom: 14px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--blue-dark); font-size: 1.5rem; font-weight: 900; opacity: 0; transform: scale(.75); transition: opacity .25s ease, transform .25s ease; }
.gallery-item:hover img { transform: scale(1.055); filter: saturate(1.05); }
.gallery-item:hover::after { opacity: 1; transform: scale(1); }

.location-section { background: linear-gradient(145deg, #0b2f87 0%, #1769ff 65%, #5f49e8 100%); color: #fff; }
.location-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch; gap: 2rem; }
.location-info { padding: 1rem 0; }
.location-info .eyebrow { color: #bfe0ff; }
.location-info .address { margin: 1.2rem 0 .5rem; color: #e9f1ff; font-size: 1.08rem; }
.copy-address { padding: 0; border: 0; background: none; color: var(--yellow); font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.hours-card { margin-top: 2rem; padding: 1.25rem; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.hours-card span { display: block; color: #bed6ff; font-size: .82rem; }
.hours-card strong { display: block; margin-top: .15rem; font-size: 1.35rem; }
.hours-card p { margin: .1rem 0 0; }
.map-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.location-section .btn-primary { background: #fff; color: var(--blue-dark); box-shadow: none; }
.map-frame { min-height: 520px; overflow: hidden; border: 8px solid rgba(255,255,255,.16); border-radius: 30px; box-shadow: 0 24px 65px rgba(2,18,61,.35); }
.map-frame iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }

.contact-section { background: #fff7f9; }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; margin-top: 2rem; }
.contact-cards a { padding: 1rem; border: 1px solid #f0dce4; border-radius: 18px; background: #fff; box-shadow: 0 8px 20px rgba(95,26,56,.07); }
.contact-cards small { display: block; color: var(--muted); }
.contact-cards strong { display: block; margin-top: .2rem; }
.quote-form { padding: clamp(1.2rem, 4vw, 2.2rem); border: 1px solid #f1dce3; border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-form label { display: grid; gap: .45rem; margin-bottom: 1rem; color: #303b56; font-size: .9rem; font-weight: 800; }
.quote-form input,
.quote-form select,
.quote-form textarea { width: 100%; border: 1px solid #dce4f2; border-radius: 14px; background: #fbfcff; color: var(--ink); outline: none; padding: .85rem .95rem; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(23,105,255,.12); }
.form-note { margin: .7rem 0 0; color: var(--muted); font-size: .78rem; text-align: center; }

.site-footer { padding: 70px 0 24px; background: #0e1730; color: #dce6ff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr 1fr; gap: 2rem; }
.footer-brand { display: flex; gap: 1rem; align-items: center; }
.footer-brand img { width: 82px; height: 82px; border-radius: 20px; object-fit: contain; background: #fff; }
.footer-brand strong { color: #fff; font-size: 1.2rem; }
.site-footer h3 { margin: 0 0 .8rem; color: #fff; font-size: .92rem; }
.site-footer p { margin: 0; color: #aebbd7; font-size: .9rem; }
.site-footer a { display: block; margin: .35rem 0; color: #dce6ff; font-size: .9rem; }
.site-footer a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); color: #9caac8; font-size: .82rem; }
.footer-bottom a { margin: 0; }

.floating-actions { position: fixed; z-index: 1100; right: 18px; bottom: 18px; display: flex; align-items: center; gap: .65rem; }
.floating-actions a { display: flex; align-items: center; justify-content: center; min-height: 54px; border-radius: 999px; color: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.25); transition: transform .2s ease; }
.floating-actions a:hover { transform: translateY(-3px); }
.floating-actions svg { width: 23px; height: 23px; fill: currentColor; }
.float-call { width: 54px; background: var(--blue); }
.float-whatsapp { gap: .55rem; padding: 0 1rem; background: #25d366; font-weight: 900; }

.lightbox { width: min(94vw, 1100px); max-height: 92vh; padding: 0; border: 0; border-radius: 24px; overflow: hidden; background: #071125; color: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.lightbox::backdrop { background: rgba(4,11,27,.86); backdrop-filter: blur(6px); }
.lightbox figure { margin: 0; display: grid; place-items: center; min-height: 70vh; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox figcaption { position: absolute; left: 50%; bottom: 10px; max-width: calc(100% - 160px); padding: .5rem .8rem; border-radius: 999px; background: rgba(0,0,0,.55); transform: translateX(-50%); font-size: .82rem; text-align: center; }
.lightbox-close,
.lightbox-nav { position: absolute; z-index: 2; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.88); color: #071125; box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.lightbox-close { top: 14px; right: 14px; width: 44px; height: 44px; font-size: 1.75rem; }
.lightbox-nav { top: 50%; width: 48px; height: 48px; font-size: 2rem; transform: translateY(-50%); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.toast { position: fixed; z-index: 1500; left: 50%; bottom: 24px; padding: .75rem 1rem; border-radius: 999px; background: #0e1730; color: #fff; font-size: .86rem; font-weight: 800; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: opacity .25s ease, transform .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1020px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: grid;
    gap: 0;
    padding: .75rem 1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 22px 38px rgba(20,33,61,.12);
    transform: translateY(-130%);
    transition: transform .28s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: .9rem 1rem; border-radius: 12px; }
  .main-nav .nav-cta { margin-top: .4rem; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr 380px; gap: 2.5rem; }
  .hero-copy h1 { font-size: clamp(3rem, 7vw, 5rem); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 700px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 780px) {
  .section { padding: 82px 0; }
  .hero { min-height: auto; padding: 50px 0 88px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-media { margin-top: 1rem; }
  .hero-mini-card { right: 0; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid a { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-grid a:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-photo img { min-height: 430px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery-item.wide { grid-column: span 2; }
  .map-frame, .map-frame iframe { min-height: 430px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 1.2rem), var(--container)); }
  .site-header, .nav-wrap { min-height: 76px; }
  .main-nav { inset: 76px 0 auto; }
  .brand img { width: 54px; height: 54px; border-radius: 14px; }
  .brand strong { font-size: 1.05rem; }
  .brand small { font-size: .72rem; }
  .hero-copy h1 { font-size: clamp(2.85rem, 14vw, 4.1rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; }
  .video-card { width: min(88vw, 360px); }
  .hero-mini-card { position: relative; right: auto; bottom: auto; margin-top: -22px; width: min(82vw, 270px); transform: rotate(-2deg); }
  .catalog-grid { grid-template-columns: 1fr; }
  .services-stamp { right: 10px; width: 130px; height: 130px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
  .location-info { text-align: center; }
  .map-actions { display: grid; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; text-align: center; }
  .floating-actions { right: 10px; bottom: 10px; }
  .float-whatsapp span { display: none; }
  .float-whatsapp { width: 54px; padding: 0; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox figcaption { max-width: calc(100% - 130px); }
}
