:root {
  --yellow: #ffd400;
  --yellow-2: #ffea70;
  --black: #020403;
  --black-2: #090b0a;
  --dark: #101211;
  --card: #141615;
  --line: rgba(255, 212, 0, .38);
  --white: #fffdf3;
  --muted: rgba(255, 255, 255, .72);
  --muted-2: rgba(255, 255, 255, .56);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 26px;
  --radius-sm: 16px;
  --container: 1180px;
  --section-title-size: clamp(1.85rem, 3.1vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--white);
  background: var(--black);
  min-width: 320px;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, select { font: inherit; }
::selection { background: var(--yellow); color: #000; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--yellow);
  color: #000;
  z-index: 9999;
  border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.section-dark { background: var(--black); }
.section-yellow { background: var(--yellow); color: #000; }
.overflow-hidden { overflow: hidden; }

a:focus-visible, button:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--yellow-2);
  outline-offset: 4px;
}

.topbar {
  background: #000;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 16px;
}
.topbar a { color: var(--yellow); font-weight: 800; white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0,0,0,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 16px 50px rgba(0,0,0,.32); }
.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; min-width: 134px; }
.brand img { width: 158px; height: auto; filter: brightness(0) invert(1); opacity: .98; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 12px 14px;
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  font-weight: 700;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: #000; background: var(--yellow); }
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  padding: 0;
}
.hero--banner {
  min-height: auto;
  display: block;
  isolation: auto;
}
.hero--banner .container {
  width: 100%;
  max-width: none;
  margin: 0;
}
.hero-banner-link {
  display: block;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 0;
  background: #000;
}
.hero-banner-link picture,
.hero-banner-link img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-banner-link img {
  object-fit: contain;
  object-position: center center;
}
.hero-banner-link:hover {
  transform: none;
}
.btn--disabled { opacity: .48; pointer-events: none; filter: grayscale(.2); }


.section-title h2,
.selector__content h2,
.instagram__intro h2,
.reviews__head h2,
.about__text h2,
.technology__content h2,
.brands h2,
.faq__intro h2,
.contact-card h2 {
  font-size: var(--section-title-size);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.benefits { padding: clamp(70px, 8vw, 118px) 0; }
.section-title { max-width: 690px; margin-bottom: clamp(24px, 3vw, 34px); }
.section-title h2 { color: #fff; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.benefit-card {
  min-height: 312px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  padding: clamp(22px, 2.5vw, 34px);
  border: 2px solid var(--yellow);
  border-radius: 18px;
  background: var(--card);
  color: var(--white);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.benefit-card:hover {
  background: var(--yellow);
  color: #000;
  transform: translateY(-8px);
}
.benefit-card--featured { background: var(--yellow); color: #000; }
.benefit-card--featured:hover { background: #050505; color: var(--yellow); }
.benefit-card__icon { color: var(--yellow); }
.benefit-card--featured .benefit-card__icon { color: #000; }
.benefit-card:hover .benefit-card__icon { color: #000; }
.benefit-card--featured:hover .benefit-card__icon { color: var(--yellow); }
.benefit-card svg { width: 46px; height: 46px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card p {
  margin: 0;
  color: rgba(255,255,255,.74);
  line-height: 1.72;
  font-size: .98rem;
  font-weight: 560;
}
.benefit-card:hover p { color: #000; }
.benefit-card--featured p { color: rgba(0,0,0,.78); }
.benefit-card--featured:hover p { color: var(--yellow); }

.selector {
  position: relative;
  padding: clamp(52px, 6vw, 86px) 0;
  overflow: hidden;
}
.selector::before {
  content: 'ótica\Aótica\Aótica';
  white-space: pre;
  position: absolute;
  right: -3vw;
  top: -12px;
  color: rgba(0,0,0,.12);
  font-size: clamp(5rem, 14vw, 15rem);
  line-height: .75;
  letter-spacing: -.08em;
  font-weight: 900;
  pointer-events: none;
}
.selector__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 520px);
  justify-content: center;
  align-items: center;
  gap: 0;
}
.selector__content p:not(.eyebrow) {
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 660px;
  font-weight: 650;
}
.selector__glasses {
  position: absolute;
  right: 3vw;
  bottom: -16px;
  width: min(430px, 40vw);
  pointer-events: none;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.32));
}
.smart-card {
  position: relative;
  z-index: 4;
  background: #080a09;
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
}
.smart-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 20px;
}
.smart-card__head strong { font-size: 1.25rem; line-height: 1; }
.smart-card__head span { color: var(--yellow); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.smart-card label {
  display: block;
  margin: 20px 0 10px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.smart-card select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: #111412;
  color: #fff;
  padding: 0 14px;
}
.smart-card .btn {
  width: 100%;
  margin-top: 28px;
  white-space: nowrap;
}
.smart-card [data-smart-button] {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border-radius: 16px;
  padding: 16px 20px;
  background: var(--yellow);
  color: #000;
  border: 1px solid var(--yellow);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  font-size: 1rem;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}
.smart-card [data-smart-button]:hover {
  background: #fff3a6;
  color: #000;
  border-color: #fff3a6;
}
.smart-card [data-smart-button].btn--disabled,
.smart-card [data-smart-button][aria-disabled="true"] {
  opacity: 1;
  pointer-events: none;
  background: rgba(255, 212, 0, .18);
  color: rgba(255,255,255,.9);
  border-color: rgba(255, 212, 0, .5);
  box-shadow: none;
}
.smart-card .btn img,
.smart-card [data-smart-button] img {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  max-width: 22px;
  flex: 0 0 22px;
  object-fit: contain;
  display: inline-block;
}
.smart-card__hint { margin: 16px 0 0; color: rgba(255,255,255,.72); font-size: .92rem; text-align: center; line-height: 1.45; }

.instagram { padding: clamp(70px, 8vw, 120px) 0; }
.instagram__intro {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 34px;
}
.instagram__intro div { max-width: 720px; }
.instagram__intro p:not(.eyebrow) { color: var(--muted); line-height: 1.7; font-weight: 600; }
.instagram-button {
  min-width: 266px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid rgba(255,212,0,.55);
  background: rgba(255,212,0,.08);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 12px;
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
  transition: background .2s ease, color .2s ease;
}
.instagram-button:hover { background: var(--yellow); color: #000; }
.instagram-button img { width: 24px; height: 24px; object-fit: contain; }
.instagram-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.instagram-track {
  width: max-content;
  display: flex;
  gap: 24px;
  animation: marquee 55s linear infinite;
  padding: 12px 0 26px;
  will-change: transform;
}
.instagram-track:hover { animation-play-state: paused; }
.instagram-track figure {
  width: clamp(240px, 23vw, 380px);
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.42);
}
.instagram-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}
@keyframes marquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.reviews { padding: clamp(70px, 8vw, 120px) 0; }
.reviews__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 300px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: #0c0d0c;
  border-radius: 20px;
}
.rating-summary img { width: 58px; height: 58px; border-radius: 12px; }
.rating-summary strong { display: block; font-size: 1rem; }
.rating-summary small { color: var(--muted-2); }
.stars { display: block; color: var(--yellow); letter-spacing: .04em; }
.reviews__slider { position: relative; }
.reviews__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 20px;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start;
  min-height: 280px;
  background: #0c0d0c;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 44px rgba(0,0,0,.26);
}
.review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-card__top strong { flex: 1; font-size: 1.05rem; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #6b4a3f;
  color: #fff;
  font-weight: 900;
}
.avatar--photo { background: linear-gradient(135deg, #e2c0a6, #6d4a3f); }
.google-g { color: #4285f4; font-weight: 900; }
.review-card p { color: rgba(255,255,255,.88); line-height: 1.62; font-weight: 650; }
.review-card small { color: var(--muted-2); }
.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}
.review-arrow:hover { background: var(--yellow); color: #000; }
.review-arrow--prev { left: -18px; }
.review-arrow--next { right: -18px; }

.about, .technology, .promotions, .faq, .contact { padding: clamp(70px, 8vw, 120px) 0; }
.about__grid,
.technology__grid,
.brands__grid,
.faq__grid,
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}
.about__text p:not(.eyebrow),
.technology__content p,
.brands__content p,
.faq__intro p,
.contact-card p {
  color: var(--muted);
  line-height: 1.76;
  font-weight: 560;
}
.about__photo { margin: 0; }
.about__photo img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.about__photo figcaption {
  margin-top: -74px;
  position: relative;
  display: inline-block;
  margin-left: 22px;
  background: #000;
  color: var(--yellow);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
}
.about-more {
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: #090909;
  border-radius: 16px;
}
.about-more summary {
  padding: 16px 18px;
  color: var(--yellow);
  font-weight: 800;
}
.about-more div {
  padding: 0 18px 18px;
}
.about-more p {
  margin-top: 0;
}
.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--yellow);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}
.technology__image { margin: 0; }
.technology__image img {
  border-radius: 16px;
  background: transparent;
  width: min(100%, 520px);
  box-shadow: none;
}
.technology__content .btn { margin-top: 20px; }

.promotions__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}
.promo-card {
  position: relative;
  display: block;
  overflow: visible;
  min-height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.promo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  transition: transform .25s ease;
}
.promo-card:hover img { transform: translateY(-4px); }
.promo-card span {
  display: inline-flex;
  margin-top: 14px;
  position: static;
  background: transparent;
  color: var(--yellow);
  padding: 0;
  border-radius: 0;
  font-weight: 800;
  text-transform: none;
  font-size: .95rem;
}

.brands {
  padding: clamp(70px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.brands h2 { color: #000; }
.brands__content p { color: rgba(0,0,0,.78); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: var(--yellow);
  font-size: .74rem;
}
.brands__logos {
  display: grid;
  gap: 18px;
}
.brands__logos img {
  border-radius: 22px;
  background: var(--yellow);
  box-shadow: 0 18px 55px rgba(0,0,0,.2);
}

.faq__grid { align-items: start; }
.faq__items { display: grid; gap: 10px; }
details {
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #080908;
  border-radius: 16px;
  overflow: hidden;
}
summary {
  cursor: pointer;
  list-style: none;
  color: var(--yellow);
  padding: 20px 22px;
  font-weight: 900;
}
summary::-webkit-details-marker { display: none; }
details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}
.faq__cta { margin-top: 16px; background: var(--yellow); color: #000; border-color: var(--yellow); }
.faq__cta:hover { background: #fff; }

.contact { background: #030504; }
.contact__grid {
  grid-template-columns: minmax(0, .82fr) minmax(0, .95fr) minmax(360px, 1.2fr);
  align-items: stretch;
  gap: 22px;
}
.contact-card,
.map-card {
  border: 1px solid rgba(255,255,255,.12);
  background: #0b0d0c;
  border-radius: 18px;
  padding: clamp(20px, 2.2vw, 28px);
  min-height: 300px;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 12px;
}
.hours-list span { color: var(--muted); }
.hours-list strong { color: var(--yellow); white-space: nowrap; }
.contact-card a { color: var(--yellow); font-weight: 900; }
.contact-card .btn { margin-top: 18px; width: auto; }
.map-card { padding: 0; overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(.08) contrast(1.02); }

.footer {
  background: #000;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  align-items: center;
  gap: 26px;
}
.footer__logo { width: 150px; }
.footer p { color: var(--muted-2); margin: 10px 0 0; }
.footer__links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__links a,
.footer__copy a { color: var(--yellow); font-weight: 800; }
.footer__copy { display: grid; justify-items: end; gap: 8px; color: var(--muted-2); }
.float-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 300;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
  transition: transform .2s ease;
}
.float-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.float-whatsapp img { width: 34px; height: 34px; object-fit: contain; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .topbar__inner { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
  .header__inner { min-height: 70px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 70px 0 0 0;
    height: calc(100svh - 70px);
    background: rgba(0,0,0,.96);
    backdrop-filter: blur(18px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
    font-size: 1.1rem;
  }
  .hero { padding: 0; }
  .hero__grid,
  .selector__grid,
  .about__grid,
  .technology__grid,
  .brands__grid,
  .faq__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .instagram__intro,
  .reviews__head { align-items: flex-start; flex-direction: column; }
  .reviews__track { grid-auto-columns: min(86vw, 380px); }
  .promotions__grid { grid-template-columns: 1fr; }
  .promotions__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; justify-items: start; }
  .footer__copy { justify-items: start; }
  .selector__glasses { opacity: .25; width: 62vw; }
}


@media (max-width: 620px) {
  .container { width: min(100% - 20px, var(--container)); }
  .hero--banner .container { width: 100%; }
  .brand img { width: 132px; }
  h1 { font-size: clamp(2.25rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(1.9rem, 10vw, 3.15rem); }
  .instagram-button { width: 100%; min-width: 0; clip-path: none; border-radius: 16px; }
  .benefits, .instagram, .reviews, .about, .technology, .promotions, .faq, .contact, .brands { padding-top: 56px; padding-bottom: 56px; }
  .instagram-track { gap: 14px; }
  .instagram-track figure { width: 76vw; }
  .rating-summary { width: 100%; min-width: 0; }
  .reviews__slider { padding-inline: 28px; }
  .review-arrow {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    font-size: 1.75rem;
    background: rgba(0,0,0,.84);
  }
  .review-arrow--prev { left: -2px; }
  .review-arrow--next { right: -2px; }

  .about__photo figcaption { margin-left: 12px; font-size: .9rem; }
  .smart-card { padding: 24px 18px; }
  .smart-card [data-smart-button] {
    min-height: 56px;
    font-size: .94rem;
    padding: 14px 16px;
    gap: 8px;
  }
  .smart-card .btn img,
  .smart-card [data-smart-button] img {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    max-width: 20px;
    flex: 0 0 20px;
  }
  .float-whatsapp { width: 56px; height: 56px; }
  .float-whatsapp img { width: 30px; height: 30px; }
}

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

.footer__logo { filter: none !important; }
.contact-card p strong { color: #fff; }

@media (max-width: 760px) {
  .reviews__slider { padding-inline: 26px; }
  .review-arrow--prev { left: -2px; }
  .review-arrow--next { right: -2px; }
}
