:root {
  --black: #050507;
  --graphite: #15161b;
  --ink: #202129;
  --muted: #666a76;
  --line: #d9dce4;
  --paper: #ffffff;
  --soft: #f4f5f8;
  --cyan: #00a9e8;
  --magenta: #e53888;
  --yellow: #ffd233;
  --green: #24d06c;
  --shadow: 0 22px 54px rgba(5, 5, 7, 0.16);
  --soft-shadow: 0 12px 28px rgba(5, 5, 7, 0.08);
  --sans: "Sora", Arial, sans-serif;
  --display: "Archivo Black", Impact, sans-serif;
  --ease: 220ms ease;
  --site-max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--soft);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: 5.35rem;
}

h2 {
  margin-bottom: 0.85rem;
  color: var(--black);
  font-size: 3.7rem;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--black);
  font-size: 1.1rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 1rem max(1rem, calc((100vw - var(--site-max)) / 2 + 1rem));
  transition: padding var(--ease), background var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  background: rgba(5, 5, 7, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 4.3rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 10, 14, 0.86);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 900;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  padding: 0.72rem 0.86rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background var(--ease), color var(--ease);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-links .nav-cta {
  margin-left: 0.28rem;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--yellow), var(--yellow)) padding-box,
    linear-gradient(90deg, var(--yellow), var(--magenta), var(--cyan)) border-box;
  color: #111;
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.14rem;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

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

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

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 7rem max(1rem, calc((100vw - var(--site-max)) / 2 + 1rem)) 4rem;
  color: #fff;
  display: grid;
  align-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.96), rgba(5, 5, 7, 0.82) 43%, rgba(5, 5, 7, 0.18)),
    linear-gradient(180deg, rgba(5, 5, 7, 0.25), rgba(5, 5, 7, 0.72));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 0.68rem;
  background:
    linear-gradient(90deg,
      var(--cyan) 0 25%,
      var(--magenta) 25% 50%,
      var(--yellow) 50% 75%,
      var(--black) 75% 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.82rem;
  color: var(--magenta);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero-lede {
  max-width: 39rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  min-height: 3.1rem;
  padding: 0.9rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1.05;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--yellow), var(--yellow)) padding-box,
    linear-gradient(90deg, var(--yellow), var(--magenta), var(--cyan)) border-box;
  color: #121212;
  box-shadow: 0 16px 32px rgba(255, 210, 51, 0.22);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-dark {
  background: #101116;
  color: #fff;
}

.hero-ribbon {
  position: relative;
  z-index: 3;
  width: min(100%, var(--site-max));
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-ribbon span {
  min-height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.hero-ribbon span:nth-child(1) {
  border-top: 4px solid var(--cyan);
}

.hero-ribbon span:nth-child(2) {
  border-top: 4px solid var(--magenta);
}

.hero-ribbon span:nth-child(3) {
  border-top: 4px solid var(--yellow);
}

.hero-ribbon span:nth-child(4) {
  border-top: 4px solid #fff;
}

.signal-band {
  width: min(calc(100% - 2rem), var(--site-max));
  margin: -1.5rem auto 0;
  position: relative;
  z-index: 5;
  border-radius: 8px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-band div {
  padding: 1.35rem;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 0.18rem;
}

.signal-band div:first-child {
  border-left: 0;
}

.signal-band strong {
  color: var(--black);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.signal-band span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: 4rem 1rem;
}

.cmyk-separator {
  width: min(calc(100% - 2rem), var(--site-max));
  height: 0.42rem;
  margin: 1.2rem auto;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      var(--cyan) 0 25%,
      var(--magenta) 25% 50%,
      var(--yellow) 50% 75%,
      var(--black) 75% 100%);
  box-shadow: 0 10px 22px rgba(5, 5, 7, 0.08);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

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

.section-heading.wide {
  max-width: 66rem;
}

.services-section .section-heading {
  max-width: none;
}

#servicios-title {
  white-space: nowrap;
}

.section-heading p,
.strip-copy p,
.location-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.feature-card,
.mini-card {
  border: 1px solid rgba(5, 5, 7, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.feature-card {
  grid-column: 1 / -1;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow), var(--black)) border-box;
  display: grid;
  grid-template-columns: minmax(13rem, 0.56fr) minmax(0, 1.44fr);
  align-items: stretch;
}

.feature-card img,
.mini-card img {
  width: 100%;
  object-fit: cover;
  background: #e9ebef;
}

.feature-card img {
  height: 100%;
  min-height: 14.8rem;
}

.feature-card > div {
  padding: 0.95rem;
  display: grid;
  align-items: center;
}

.card-kicker {
  margin-bottom: 0.46rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h3 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.check-list li {
  padding: 0.58rem 0.74rem 0.58rem 2rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #343743;
  font-size: 0.94rem;
  font-weight: 700;
  position: relative;
}

.benefits-banner {
  width: min(calc(100% - 2rem), var(--site-max));
  margin: 0 auto;
  border-radius: 8px;
  background: #071024;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.benefits-banner article {
  min-height: 10rem;
  padding: 1.3rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-top: 0.45rem solid var(--cyan);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.65rem;
  text-align: center;
}

.benefits-banner article:nth-child(2) {
  border-top-color: var(--magenta);
}

.benefits-banner article:nth-child(3) {
  border-top-color: var(--yellow);
}

.benefits-banner article:nth-child(4) {
  border-right: 0;
  border-top-color: #111;
  box-shadow: inset 0 0.15rem 0 rgba(255, 255, 255, 0.20);
}

.benefit-icon {
  width: 3.7rem;
  height: 3.7rem;
  color: #fff;
}

.benefit-icon * {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits-banner h3 {
  max-width: 11rem;
  margin: 0;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 50%;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
}

.check-list li:nth-child(1)::before,
.check-list li:nth-child(5)::before {
  background: var(--cyan);
}

.check-list li:nth-child(2)::before,
.check-list li:nth-child(6)::before {
  background: var(--magenta);
}

.check-list li:nth-child(3)::before {
  background: var(--yellow);
}

.check-list li:nth-child(4)::before {
  background: var(--black);
}

.mini-card {
  min-height: 19rem;
  padding: 0.7rem;
  display: grid;
  align-content: start;
}

.mini-card img {
  height: 11.4rem;
  margin-bottom: 0.9rem;
  border-radius: 6px;
}

.mini-card h3,
.mini-card p {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.mini-card p {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-card.cyan {
  border-top: 5px solid var(--cyan);
}

.mini-card.magenta {
  border-top: 5px solid var(--magenta);
}

.mini-card.yellow {
  border-top: 5px solid var(--yellow);
}

.mini-card.black {
  border-top: 5px solid var(--black);
}

.product-strip {
  width: min(calc(100% - 2rem), var(--site-max));
  padding: 2rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 169, 232, 0.14), rgba(229, 56, 136, 0.12)),
    #fff;
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 1.4rem;
  align-items: center;
  box-shadow: var(--soft-shadow);
}

.product-strip h2 {
  margin-bottom: 0;
  font-size: 2.65rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-grid span {
  padding: 0.68rem 0.8rem;
  border: 1px solid rgba(5, 5, 7, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
  color: #202129;
  font-size: 0.9rem;
  font-weight: 800;
}

.brands-section {
  overflow: hidden;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.4rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  width: max-content;
  display: flex;
  gap: 0.8rem;
  animation: marquee 28s linear infinite;
}

.brand-marquee:hover .brand-track,
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.brand-logo {
  width: 11rem;
  height: 5.7rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(5, 5, 7, 0.08);
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(5, 5, 7, 0.06);
}

.brand-logo img {
  width: 100%;
  max-height: 3.15rem;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.02);
}

.reviews-section {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.reviews-heading {
  width: min(100%, var(--site-max));
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.stars {
  color: var(--yellow);
  font-size: 1.45rem;
  white-space: nowrap;
  text-shadow:
    1px 0 0 var(--magenta),
    -1px 0 0 var(--cyan);
}

.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  width: max-content;
  display: flex;
  gap: 0.9rem;
  animation: marquee 44s linear infinite;
}

.reviews-track article {
  width: 21rem;
  min-height: 10rem;
  padding: 1.15rem;
  border: 1px solid rgba(5, 5, 7, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.reviews-track p {
  min-height: 4.9em;
  margin-bottom: 0.85rem;
  color: #393c46;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.reviews-track strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--black);
}

.reviews-track strong::after {
  content: "\2605\2605\2605\2605\2605";
  color: var(--magenta);
  font-size: 0.82rem;
  white-space: nowrap;
}

.instagram-banner {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 2rem), var(--site-max));
  margin: 0 auto;
  padding: 2rem;
  border-radius: 8px;
  background: #101116;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.instagram-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(180deg,
      var(--cyan) 0 25%,
      var(--magenta) 25% 50%,
      var(--yellow) 50% 75%,
      #000 75% 100%);
}

.instagram-banner::after {
  content: none;
}

.instagram-banner .eyebrow,
.instagram-banner h2 {
  color: #fff;
}

.instagram-banner h2 {
  max-width: 19ch;
  margin-bottom: 0;
  font-size: 2.55rem;
}

.instagram-banner .btn-dark {
  border: 2px solid transparent;
  background:
    linear-gradient(#101116, #101116) padding-box,
    linear-gradient(90deg, var(--yellow), var(--magenta), var(--cyan)) border-box;
  color: #fff;
}

.location-card {
  position: relative;
  border: 1px solid rgba(5, 5, 7, 0.08);
  border-radius: 8px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 1fr);
  gap: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.42rem;
  background:
    linear-gradient(90deg,
      var(--cyan) 0 25%,
      var(--magenta) 25% 50%,
      var(--yellow) 50% 75%,
      var(--black) 75% 100%);
}

.location-copy {
  padding: 2.35rem 2rem 2rem;
}

.info-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.2rem;
}

.info-list span {
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  display: grid;
  gap: 0.12rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.info-list span:nth-child(1) {
  border-left: 4px solid var(--cyan);
}

.info-list span:nth-child(2) {
  border-left: 4px solid var(--magenta);
}

.info-list span:nth-child(3) {
  border-left: 4px solid var(--yellow);
}

.info-list strong {
  color: var(--black);
}

.info-list a {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.map-wrap {
  min-height: 31rem;
  background: #dde1e8;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.footer {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: 2rem 1rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  color: var(--black);
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  width: 3.65rem;
  height: 3.65rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34);
  transition: transform var(--ease), box-shadow var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .service-layout {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card {
    grid-template-columns: 0.92fr 1fr;
    grid-template-rows: auto;
  }

  .feature-card img {
    height: 100%;
    min-height: 16rem;
  }

  .product-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-shell {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.62rem);
    left: 0;
    right: 0;
    padding: 0.55rem;
    border-radius: 8px;
    background: #0d0e13;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-links .nav-cta {
    margin: 0.2rem 0 0;
  }

  .hero {
    min-height: auto;
    padding-top: 7.6rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 7, 0.9), rgba(5, 5, 7, 0.72)),
      linear-gradient(90deg, rgba(5, 5, 7, 0.88), rgba(5, 5, 7, 0.22));
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-ribbon,
  .signal-band {
    grid-template-columns: 1fr 1fr;
  }

  .signal-band div:nth-child(3) {
    grid-column: span 2;
    border-top: 1px solid var(--line);
  }

  .feature-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: 18rem;
    min-height: 0;
  }

  .service-layout,
  .location-card {
    grid-template-columns: 1fr;
  }

  .benefits-banner {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-banner article:nth-child(2) {
    border-right: 0;
  }

  .instagram-banner,
  .reviews-heading,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-heading {
    align-items: center;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2,
  .product-strip h2,
  .instagram-banner h2 {
    font-size: 2rem;
  }

  #servicios-title {
    white-space: normal;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .instagram-banner .btn {
    width: 100%;
  }

  .hero-ribbon,
  .signal-band {
    grid-template-columns: 1fr;
  }

  .signal-band div,
  .signal-band div:nth-child(3) {
    grid-column: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .signal-band div:first-child {
    border-top: 0;
  }

  .section {
    padding-top: 3.3rem;
    padding-bottom: 3.3rem;
  }

  .product-strip,
  .instagram-banner,
  .location-copy {
    padding: 1.2rem;
  }

  .benefits-banner {
    grid-template-columns: 1fr;
  }

  .benefits-banner article {
    min-height: 8.75rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .benefits-banner article:last-child {
    border-bottom: 0;
  }

  .mini-card {
    min-height: auto;
  }

  .mini-card img {
    height: 10.5rem;
  }

  .brand-logo {
    width: 9.5rem;
  }

  .reviews-track article {
    width: 18rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
