:root {
  --blue-900: #003568;
  --blue-800: #004080;
  --blue-600: #2f66b1;
  --blue-100: #dce8f6;
  --ink: #101827;
  --muted: #5d6775;
  --line: #dfe4ea;
  --surface: #f6f8fa;
  --white: #ffffff;
  --green: #1da851;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 22px 60px rgba(0, 43, 86, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #7cb8ff;
  outline-offset: 3px;
}

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

.section {
  padding: 108px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-800);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #9bc2f1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 750px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--blue-800);
  border-radius: 999px;
  background: var(--blue-800);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  background: var(--blue-900);
  box-shadow: 0 12px 25px rgba(0, 64, 128, 0.22);
  transform: translateY(-2px);
}

.button--compact {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.78rem;
}

.button--outline {
  background: transparent;
  color: var(--blue-800);
}

.button--outline:hover {
  color: var(--white);
}

.button--whatsapp {
  border-color: var(--green);
  background: var(--green);
}

.button--whatsapp:hover {
  background: #168b42;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue-800);
}

.button--light:hover {
  background: #edf5ff;
  color: var(--blue-900);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
  color: var(--white);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button--full {
  width: 100%;
}

.topbar {
  background: var(--blue-900);
  color: var(--white);
  font-size: 0.72rem;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a {
  opacity: 0.85;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(0, 64, 128, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 126px;
  height: 66px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #334052;
  font-size: 0.76rem;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--blue-800);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  overflow: hidden;
  padding: 74px 0 90px;
  background:
    radial-gradient(circle at 7% 15%, rgba(47, 102, 177, 0.12), transparent 28%),
    linear-gradient(125deg, #f6f9fc 0%, #fff 60%);
}

.hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 70px;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero__actions,
.prescription__actions,
.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  display: grid;
  max-width: 680px;
  margin: 52px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.hero__proof li {
  padding-right: 20px;
}

.hero__proof li + li {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  margin-bottom: 4px;
  color: var(--blue-800);
  font-size: 1rem;
}

.hero__proof span {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.hero__visual {
  position: relative;
  min-height: 600px;
}

.hero__image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image--main {
  top: 0;
  right: 0;
  width: 76%;
  height: 510px;
}

.hero__image--detail {
  bottom: 0;
  left: 0;
  width: 47%;
  height: 260px;
  border: 8px solid var(--white);
}

.hero__seal {
  position: absolute;
  right: -15px;
  bottom: 45px;
  width: 122px;
  height: 122px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.hero__seal span {
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__seal strong {
  font-size: 1.55rem;
  line-height: 1.2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading > p:last-child,
.section-heading--split > p {
  color: var(--muted);
}

.section-heading--split {
  max-width: none;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
}

.section-heading--split h2,
.section-heading--with-controls h2 {
  margin-bottom: 0;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--with-controls {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading--with-controls > div:first-child {
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 290px;
  display: flex;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: #b9cee7;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-card__number {
  margin-bottom: auto;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card h3 {
  margin: 42px 0 12px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.prescription {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(47, 102, 177, 0.5), transparent 30%),
    var(--blue-900);
}

.prescription__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.82fr;
  gap: 90px;
}

.prescription__content > p:not(.eyebrow) {
  color: #d7e4f1;
}

.prescription__content small {
  max-width: 680px;
  display: block;
  margin-top: 28px;
  color: #aabdd1;
  font-size: 0.68rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 54px 1fr;
  gap: 18px;
}

.steps li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.steps li > span {
  width: 44px;
  height: 44px;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #b9d7f7;
  font-weight: 700;
  place-items: center;
}

.steps strong {
  display: block;
  margin-bottom: 5px;
}

.steps p {
  margin: 0;
  color: #b8c9da;
  font-size: 0.8rem;
}

.lenses {
  background: var(--surface);
}

.lens-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 16px;
}

.lens-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease,
    transform 200ms ease;
  will-change: transform;
}

.lens-card > span {
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 800;
}

.lens-card h3 {
  margin-top: 80px;
}

.lens-card p {
  color: var(--muted);
  font-size: 0.82rem;
}

.lens-card--featured {
  background: var(--white);
}

.lens-card--featured a {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue-800);
  font-size: 0.75rem;
  font-weight: 700;
}

.lens-card:hover,
.lens-card:focus-within {
  z-index: 2;
  color: var(--white);
  border-color: var(--blue-800);
  background: var(--blue-800);
  box-shadow: 0 24px 56px rgba(0, 64, 128, 0.22);
  transform: translateY(-8px) scale(1.035);
}

.lens-card:hover > span,
.lens-card:focus-within > span,
.lens-card:hover p,
.lens-card:focus-within p,
.lens-card:hover a,
.lens-card:focus-within a {
  color: #d7e8fb;
}

.brand-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 7vw, 90px);
  margin-top: 62px;
  color: #667789;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.frames__grid,
.story__grid,
.quote__grid,
.location__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.frames__gallery {
  position: relative;
  min-height: 650px;
}

.frames__gallery img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
}

.frames__image--large {
  inset: 0 22% 0 0;
  width: 78%;
  height: 100%;
}

.frames__image--small {
  right: 0;
  bottom: 45px;
  width: 46%;
  height: 240px;
  border: 7px solid var(--white);
  box-shadow: var(--shadow);
}

.frames__content > p:not(.eyebrow),
.story__content > p:not(.eyebrow),
.quote__intro > p:not(.eyebrow),
.location__content > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 35px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 4px;
  width: 17px;
  height: 17px;
  display: grid;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-800);
  content: "✓";
  font-size: 0.62rem;
  font-weight: 800;
  place-items: center;
}

.catalog {
  overflow: hidden;
  background: var(--surface);
}

.carousel-controls {
  display: flex;
  gap: 9px;
}

.carousel-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-800);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.carousel-controls button:hover {
  background: var(--blue-800);
  color: var(--white);
}

.product-track,
.content-track {
  display: grid;
  overflow-x: auto;
  padding: 4px 2px 24px;
  grid-auto-flow: column;
  scrollbar-color: #afc1d2 transparent;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
}

.product-track {
  grid-auto-columns: minmax(250px, 1fr);
  gap: 16px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  scroll-snap-align: start;
}

.product-card__image {
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  background: #ece9e4;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-card__body {
  padding: 22px;
}

.product-card__brand {
  color: var(--blue-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 44px;
  margin: 10px 0;
  font-size: 1rem;
}

.product-card__type,
.product-card__availability {
  display: block;
  color: var(--muted);
  font-size: 0.69rem;
}

.product-card .button {
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  padding: 10px 14px;
  font-size: 0.74rem;
}

.catalog__note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.content-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(47, 102, 177, 0.4), transparent 28%),
    #071a2c;
}

.section-heading--dark > div > p:last-child {
  color: #a9b9c9;
}

.carousel-controls--light button {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
}

.carousel-controls--light button:hover {
  background: var(--white);
  color: var(--blue-900);
}

.content-section__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.content-track {
  grid-auto-columns: minmax(260px, 0.75fr);
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 32px;
}

.content-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 9 / 14;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: #10263b;
  color: var(--white);
  scroll-snap-align: start;
  transform-origin: center bottom;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease,
    transform 220ms ease;
}

.content-card > img,
.content-card__media,
.content-card__media video,
.content-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 340ms ease;
}

.content-card:hover,
.content-card:focus-visible {
  border-color: rgba(124, 184, 255, 0.62);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
  filter: saturate(1.06);
  transform: translateY(-8px) scale(1.025);
}

.content-card:hover > img,
.content-card:focus-visible > img,
.content-card:hover .content-card__media img,
.content-card:focus-visible .content-card__media img {
  transform: scale(1.045);
}

.content-card::before {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 64, 128, 0.78);
  color: var(--white);
  content: "Instagram →";
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.content-card:hover::before,
.content-card:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.content-card::after {
  position: absolute;
  inset: 35% 0 0;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(1, 13, 24, 0.94));
  content: "";
}

.content-card__body {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.content-card__body span {
  color: #a9cdf4;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-card__body h3 {
  margin: 7px 0 0;
}

.content-card--video::after,
.content-card--video .content-card__body {
  pointer-events: none;
}

.story__image {
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.story__image img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.story__content blockquote {
  margin: 34px 0;
  padding: 20px 0 20px 28px;
  border-left: 3px solid var(--blue-600);
  color: var(--blue-800);
  font-size: 1.25rem;
  font-weight: 600;
}

.story__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.story__facts div {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.story__facts strong,
.story__facts span {
  display: block;
}

.story__facts strong {
  color: var(--blue-800);
  font-size: 1.45rem;
}

.story__facts span {
  color: var(--muted);
  font-size: 0.7rem;
}

.quote-section {
  background: #edf3f8;
}

.quote__grid {
  align-items: start;
}

.quote__intro {
  position: sticky;
  top: 120px;
}

.quote__contact {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #ccd9e5;
}

.quote__contact span,
.quote__contact a {
  display: block;
}

.quote__contact span {
  color: var(--muted);
  font-size: 0.72rem;
}

.quote__contact a {
  margin-top: 5px;
  color: var(--blue-800);
  font-size: 1.3rem;
  font-weight: 700;
}

.lead-form {
  display: grid;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: grid;
  color: #344256;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 8px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #ccd5df;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 400;
}

.lead-form textarea {
  resize: vertical;
}

.file-field small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 400;
}

.consent {
  display: grid !important;
  align-items: start;
  grid-template-columns: 20px 1fr;
  font-weight: 400 !important;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--blue-800);
  font-size: 0.72rem;
  text-align: center;
}

.professional {
  padding: 78px 0;
}

.professional__inner {
  display: grid;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: 90px 1fr 0.65fr;
  gap: 38px;
}

.professional__icon {
  width: 74px;
  height: 74px;
  display: grid;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 2.2rem;
  place-items: center;
}

.professional h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.professional p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.professional ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.professional li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: #455368;
  font-size: 0.75rem;
}

.location {
  background: var(--surface);
}

.location address {
  margin: 28px 0;
  color: #26354a;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 600;
}

.location address span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.location__info {
  display: grid;
  margin-bottom: 32px;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.location__info div {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.location__info span,
.location__info strong {
  display: block;
}

.location__info span {
  color: var(--muted);
  font-size: 0.65rem;
}

.location__info strong {
  margin-top: 4px;
  font-size: 0.78rem;
}

.location__map {
  height: 570px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  padding: 75px 0 25px;
  background: var(--blue-800);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 58px;
}

.footer__brand img {
  width: 150px;
  height: 106px;
  object-fit: contain;
  object-position: left center;
}

.footer__brand p,
.footer__grid > div > p {
  color: #afc4d8;
  font-size: 0.75rem;
}

.footer h2 {
  margin: 20px 0 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__grid > div:not(.footer__brand) a {
  display: block;
  margin: 10px 0;
  color: #c5d3df;
  font-size: 0.72rem;
}

.footer__grid a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__bottom p {
  max-width: 700px;
  margin: 0;
  color: #8fa8bf;
  font-size: 0.58rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  place-items: center;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: scale(1.07);
}

.floating-whatsapp svg {
  width: 30px;
  fill: var(--white);
}

.privacy-page {
  background: var(--surface);
}

.privacy {
  max-width: 820px;
  margin: 70px auto;
  padding: 50px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.privacy h2 {
  margin-top: 42px;
  font-size: 1.35rem;
}

.privacy p,
.privacy li {
  color: var(--muted);
}

@media (min-width: 1180px) {
  .product-track {
    grid-auto-columns: calc((100% - 48px) / 4);
  }

  .content-track {
    grid-auto-columns: calc((100% - 54px) / 3.35);
  }
}

@media (max-width: 1080px) {
  .header__cta {
    display: none;
  }

  .main-nav {
    gap: 18px;
  }

  .hero__grid,
  .prescription__grid,
  .frames__grid,
  .story__grid,
  .quote__grid,
  .location__grid {
    gap: 55px;
  }

  .feature-grid,
  .lens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .professional__inner {
    grid-template-columns: 70px 1fr;
  }

  .professional__inner ul {
    grid-column: 2;
  }
}

@media (max-width: 850px) {
  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 68px;
  }

  .brand img {
    width: 112px;
    height: 58px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    inset: 68px 0 0;
    display: flex;
    padding: 35px 20px;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__grid,
  .prescription__grid,
  .frames__grid,
  .story__grid,
  .quote__grid,
  .location__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 540px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .frames__content,
  .story__content {
    order: -1;
  }

  .quote__intro {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer__grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 55px 0 70px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero__actions .button,
  .prescription__actions .button,
  .location__actions .button {
    width: 100%;
  }

  .hero__proof {
    gap: 13px;
  }

  .hero__proof li,
  .hero__proof li + li {
    padding: 0;
    border: 0;
  }

  .hero__proof strong {
    font-size: 0.86rem;
  }

  .hero__visual {
    min-height: 440px;
  }

  .hero__image--main {
    width: 84%;
    height: 385px;
  }

  .hero__image--detail {
    width: 48%;
    height: 190px;
  }

  .hero__seal {
    right: -4px;
    bottom: 20px;
    width: 98px;
    height: 98px;
  }

  .feature-grid,
  .lens-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 230px;
  }

  .lens-card {
    min-height: 270px;
  }

  .lens-card h3 {
    margin-top: 55px;
  }

  .brand-line {
    flex-wrap: wrap;
  }

  .frames__gallery {
    min-height: 480px;
  }

  .section-heading--with-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-section__actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .product-track {
    grid-auto-columns: 82%;
  }

  .content-track {
    grid-auto-columns: 78%;
  }

  .story__image,
  .story__image img {
    height: 430px;
    min-height: 430px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 25px 20px;
  }

  .professional__inner {
    padding: 28px 24px;
    grid-template-columns: 1fr;
  }

  .professional__inner ul {
    grid-column: auto;
  }

  .location__info {
    grid-template-columns: 1fr;
  }

  .location__map {
    height: 420px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__grid > div:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .privacy {
    margin: 30px auto;
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
