:root {
  --blue: #284099;
  --blue-dark: #14245a;
  --blue-ink: #0b2154;
  --red: #9e2c2e;
  --red-bright: #d81324;
  --ink: #242424;
  --muted: #6f7480;
  --line: #e7e9ee;
  --soft: #f5f6f8;
  --white: #fff;
  --shadow: 0 18px 50px rgba(12, 25, 70, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--blue-ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5.1rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

h3 {
  font-size: 1.15rem;
}

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

.section {
  padding: 88px 0;
}

.center {
  margin-top: 42px;
  text-align: center;
}

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

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

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
}

.topbar a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(16, 34, 85, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 225px;
  max-height: 60px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  padding: 32px 0 28px;
  color: #303541;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--blue);
}

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

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-ink);
  transition: 180ms ease;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(40, 64, 153, 0.22);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  color: var(--blue-ink);
  background: var(--white);
}

.text-link {
  display: inline-block;
  color: var(--blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--red);
}

.hero-home {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 13, 38, 0.88) 0%, rgba(10, 22, 61, 0.58) 47%, rgba(9, 17, 42, 0.18) 75%),
    url("assets/images/hero-home.jpg") center 44% / cover no-repeat;
}

.hero-home::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(34vw, 520px);
  height: 8px;
  background: var(--red);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 135px;
}

.hero-home .eyebrow {
  color: #fff;
  opacity: 0.8;
}

.hero-home h1 {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--white);
  font-size: clamp(2.9rem, 6vw, 5.25rem);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-showcase {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: -86px;
}

.image-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: var(--blue-ink);
  box-shadow: var(--shadow);
}

.image-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(4, 10, 31, 0.92));
  content: "";
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.image-card:hover img {
  transform: scale(1.045);
}

.image-card h2 {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.image-card h2::before {
  display: block;
  width: 38px;
  height: 3px;
  margin: 0 auto 12px;
  background: var(--red-bright);
  content: "";
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.products-section {
  padding-top: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-image {
  display: grid;
  height: 255px;
  padding: 22px;
  place-items: center;
  background: #f7f7f8;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

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

.product-copy {
  padding: 20px;
}

.product-copy > span {
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy h3 {
  min-height: 46px;
  margin: 5px 0 10px;
}

.client-band {
  padding: 58px 0;
  background: #161616;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 70px;
}

.client-logos img {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.55);
  opacity: 0.78;
}

.news-section {
  background: var(--white);
}

.news-grid.one-card {
  max-width: 760px;
  margin-inline: auto;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) 1.05fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(17, 30, 70, 0.08);
}

.news-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.news-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.news-card span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 10px 0 24px;
  font-size: 1.65rem;
}

.reviews-section {
  background: var(--soft);
}

.reviews-section .section-heading {
  margin-bottom: 0;
}

.reviews-section .button {
  margin-top: 28px;
}

.page-hero {
  position: relative;
  min-height: 310px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 16, 47, 0.9), rgba(14, 30, 78, 0.5)),
    url("assets/images/hero-interno.jpg") center / cover no-repeat;
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
  height: 6px;
  background: var(--red);
  content: "";
}

.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  color: #fff;
  opacity: 0.75;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.media-frame {
  position: relative;
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-frame::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: 30%;
  bottom: 38%;
  left: -18px;
  background: var(--blue);
  content: "";
}

.rich-copy h2 {
  margin-bottom: 22px;
}

.rich-copy h3 {
  margin-top: 30px;
  text-transform: uppercase;
}

.rich-copy p {
  color: #555d69;
}

.values-section {
  color: var(--white);
  background: var(--blue-ink);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.value-card {
  min-height: 290px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.value-card span {
  color: #93a6ef;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.value-card h2 {
  margin: 18px 0 14px;
  color: var(--white);
  font-size: 1.55rem;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  height: 210px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ddd;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 40px;
  place-items: center;
  background: rgba(3, 8, 24, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-detail-card {
  min-height: 310px;
  padding: 30px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.service-detail-card:nth-child(odd) {
  color: var(--white);
  border-color: var(--red-bright);
  background: var(--red-bright);
}

.service-detail-card:hover {
  transform: translateY(-6px);
}

.service-detail-card img,
.service-monogram {
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.service-monogram {
  display: grid;
  color: var(--red-bright);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  place-items: center;
}

.service-detail-card:nth-child(odd) img {
  filter: brightness(0) invert(1);
}

.service-detail-card:nth-child(odd) h2 {
  color: var(--white);
}

.service-detail-card h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  text-transform: uppercase;
}

.service-detail-card p {
  margin: 0;
  font-size: 0.94rem;
}

.process-section {
  background: var(--soft);
}

.process-layout h2 {
  margin-bottom: 34px;
}

.process-steps article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.process-steps b {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--red);
  font-family: "Montserrat", Arial, sans-serif;
  place-items: center;
}

.process-steps h3 {
  margin-bottom: 4px;
  text-transform: uppercase;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
}

.service-team {
  align-self: end;
}

.service-team img {
  max-height: 650px;
  margin-inline: auto;
  object-fit: contain;
}

.pitstop-layout {
  align-items: start;
}

.pitstop-preview {
  height: 710px;
  overflow: auto;
  border: 12px solid var(--white);
  box-shadow: var(--shadow);
}

.pitstop-preview img {
  width: 100%;
}

.benefits-section {
  background: var(--soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.benefit-grid article {
  padding: 38px;
  border-top: 5px solid var(--blue);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(20, 36, 90, 0.08);
}

.benefit-grid h3 {
  text-transform: uppercase;
}

.benefit-grid li,
.article-copy li {
  margin-bottom: 8px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-cards article {
  min-height: 230px;
  padding: 38px 28px;
  border: 1px solid var(--line);
  text-align: center;
}

.contact-cards article:nth-child(2) {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.contact-cards article:nth-child(2) h2 {
  color: var(--white);
}

.contact-cards img {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
}

.contact-cards article:nth-child(2) img {
  filter: brightness(0) invert(1);
}

.contact-cards h2 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  text-transform: uppercase;
}

.contact-cards p {
  margin: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.shop-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.shop-toolbar h2 {
  margin-bottom: 6px;
  text-transform: uppercase;
}

.shop-toolbar p {
  margin: 0;
  color: var(--muted);
}

.search-field input {
  width: min(340px, 75vw);
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #ccd0da;
  outline: none;
}

.search-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40, 64, 153, 0.12);
}

.empty-products {
  padding: 45px;
  background: var(--soft);
  text-align: center;
}

.links-cover {
  height: 330px;
  overflow: hidden;
  background: var(--blue-ink);
}

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

.links-section {
  background: var(--soft);
}

.links-card {
  max-width: 660px;
  margin-top: -160px;
  padding: 48px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.links-avatar {
  width: 128px;
  height: 128px;
  margin: -112px auto 30px;
  border: 8px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
}

.links-card h1 {
  margin-bottom: 34px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.seller-links {
  display: grid;
  gap: 12px;
}

.seller-link {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--white);
  background: var(--blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.seller-link:hover {
  background: var(--blue-dark);
  transform: translateX(4px);
}

.seller-link span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail {
  align-items: start;
}

.product-detail-image {
  display: grid;
  min-height: 560px;
  padding: 45px;
  border: 1px solid var(--line);
  background: #f7f7f8;
  place-items: center;
}

.product-detail-image img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.product-detail-copy {
  padding-top: 30px;
}

.product-detail-copy h1 {
  margin-bottom: 22px;
  color: var(--blue-ink);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.product-detail-copy p {
  max-width: 550px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.back-link {
  display: block;
  margin-top: 28px;
}

.article-layout {
  max-width: 880px;
}

.article-cover {
  width: 100%;
  max-height: 520px;
  margin-bottom: 50px;
  object-fit: cover;
}

.article-copy {
  max-width: 740px;
  margin-inline: auto;
  color: #4c5360;
  font-size: 1.06rem;
}

.article-copy .lead {
  color: var(--blue-ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.article-copy h2 {
  margin-top: 42px;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1.35fr 0.9fr 0.8fr;
  gap: 44px;
  padding: 68px 0;
}

.footer-grid h2 {
  margin-bottom: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 255px;
  margin-bottom: 20px;
}

.footer-brand p,
.contact-list,
.footer-links {
  color: var(--muted);
  font-size: 0.93rem;
}

.contact-list,
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li,
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover,
.contact-list a:hover {
  color: var(--blue);
}

.social-links {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.social-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--blue-ink);
  font-size: 0.82rem;
  text-align: center;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  z-index: 28;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 62px;
  height: 62px;
  overflow: hidden;
  color: transparent;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  place-items: center;
}

.whatsapp-float::before {
  color: var(--white);
  content: "W";
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

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

  .main-nav {
    position: fixed;
    z-index: 60;
    top: 128px;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 25px 30px;
    background: var(--white);
    box-shadow: -18px 20px 50px rgba(8, 18, 50, 0.2);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-link::after {
    bottom: 0;
  }

  .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);
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .section {
    padding: 64px 0;
  }

  .topbar-inner {
    min-height: 38px;
    font-size: 0.75rem;
  }

  .topbar-inner a:first-child {
    display: none;
  }

  .topbar-inner {
    justify-content: flex-end;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 178px;
  }

  .main-nav {
    top: 110px;
  }

  .hero-home {
    min-height: 600px;
    background-position: 60% center;
  }

  .hero-content {
    padding: 70px 0 130px;
  }

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

  .service-cards {
    grid-template-columns: 1fr;
    margin-top: -70px;
  }

  .image-card,
  .image-card img {
    min-height: 290px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-image {
    height: 210px;
  }

  .client-logos {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .client-logos img {
    max-height: 100px;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card > div {
    padding: 30px;
  }

  .page-hero {
    min-height: 255px;
  }

  .split,
  .values-grid,
  .benefit-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item {
    height: 170px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pitstop-preview {
    height: 520px;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-field input {
    width: 100%;
  }

  .links-cover {
    height: 260px;
  }

  .links-card {
    margin-top: -120px;
    padding: 35px 20px;
  }

  .links-avatar {
    margin-top: -100px;
  }

  .product-detail-image {
    min-height: 380px;
  }

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

@media (max-width: 480px) {
  .hero-actions .button {
    width: 100%;
  }

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

  .product-image {
    height: 275px;
  }

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

  .gallery-item {
    height: 240px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
