:root {
  --purple-950: #16091f;
  --purple-900: #24103d;
  --purple-800: #341154;
  --purple-700: #4d176b;
  --purple-600: #74257c;
  --gold: #f6cb3b;
  --gold-dark: #dda900;
  --green: #20b967;
  --green-dark: #159250;
  --ink: #1e1d26;
  --muted: #66616c;
  --line: #ded9e1;
  --soft: #f4f1f5;
  --white: #fff;
  --container: 1180px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 14px 40px rgba(32, 15, 44, 0.08);
  --shadow-lg: 0 24px 70px rgba(20, 6, 31, 0.2);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4.5vw, 4.15rem);
  font-weight: 780;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--purple-950);
  background: var(--gold);
  transform: translateY(-160%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--purple-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 31px;
  height: 2px;
  background: var(--gold-dark);
}

.eyebrow-light {
  color: var(--gold);
}

.eyebrow-light > span {
  background: var(--gold);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(246, 203, 59, 0.75);
  outline-offset: 3px;
}

.button-primary {
  color: var(--purple-950);
  background: var(--gold);
  box-shadow: 0 11px 28px rgba(246, 203, 59, 0.23);
}

.button-primary:hover {
  background: #ffda52;
  box-shadow: 0 15px 34px rgba(246, 203, 59, 0.3);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.button-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.17);
}

.button-dark {
  color: var(--white);
  background: var(--purple-900);
}

.button-dark:hover {
  background: var(--purple-700);
}

.button-outline {
  border-color: var(--purple-900);
  color: var(--purple-900);
  background: transparent;
}

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

.button-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 25px rgba(32, 185, 103, 0.22);
}

.button-whatsapp:hover {
  background: var(--green-dark);
}

.button-support {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button-support:hover {
  border-color: rgba(246, 203, 59, 0.55);
  background: rgba(255, 255, 255, 0.14);
}

.button-large {
  min-height: 62px;
  padding-inline: 30px;
  font-size: 1rem;
}

.button-full {
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 7, 27, 0.82), rgba(18, 7, 27, 0));
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(25, 9, 38, 0.96);
  box-shadow: 0 9px 30px rgba(10, 4, 17, 0.22);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(246, 203, 59, 0.45);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.7vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  padding-block: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

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

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

.nav-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 46px;
  gap: 8px;
  padding: 11px 19px;
  font-size: 0.84rem;
}

.menu-toggle {
  display: none;
  width: 47px;
  height: 47px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 28%, rgba(116, 37, 124, 0.5), transparent 34%),
    radial-gradient(circle at 10% 88%, rgba(246, 203, 59, 0.08), transparent 28%),
    linear-gradient(135deg, #16091f 0%, #2b0b42 58%, #471252 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(150deg, transparent 20%, rgba(246, 203, 59, 0.1));
  content: "";
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.5px, transparent 0.5px);
  background-size: 7px 7px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
  padding-top: 130px;
  padding-bottom: 95px;
}

.hero-copy {
  max-width: 810px;
}

.hero h1 {
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
}

.hero h1 em {
  position: relative;
  color: var(--gold);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

.hero-product {
  position: relative;
  margin: 0;
}

.hero-product::before {
  position: absolute;
  inset: 7% -8% -5% 9%;
  border: 1px solid rgba(246, 203, 59, 0.25);
  border-radius: 42% 42% 20% 20%;
  content: "";
  transform: rotate(4deg);
}

.hero-product-frame {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 38%, rgba(246, 203, 59, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 80px rgba(8, 2, 13, 0.42);
  backdrop-filter: blur(8px);
}

.hero-product-frame img {
  width: 100%;
  height: 610px;
  padding: 22px;
  object-fit: contain;
}

.hero-product figcaption {
  position: absolute;
  right: -14px;
  bottom: 24px;
  display: flex;
  max-width: 300px;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(22, 9, 31, 0.9);
  box-shadow: var(--shadow-lg);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero-product figcaption i {
  color: var(--gold);
  font-size: 1.35rem;
}

.hero-product figcaption strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
}

.hero-lead {
  max-width: 675px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 46px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-trust span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 0 4px rgba(246, 203, 59, 0.13);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 32px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

.machines {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  padding-bottom: 9px;
  color: var(--muted);
  font-size: 0.98rem;
}

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

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.product-card-featured {
  border-color: rgba(246, 203, 59, 0.75);
}

.product-image {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 37%, rgba(246, 203, 59, 0.16), transparent 35%),
    var(--purple-950);
}

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

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

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--purple-950);
  background: var(--gold);
  font-size: 0.69rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.product-badge-muted {
  color: var(--white);
  background: var(--purple-700);
}

.product-content {
  display: flex;
  flex-direction: column;
  padding: 34px 28px 28px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--purple-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 13px;
  font-size: 1.8rem;
}

.product-description {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.personalization-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  padding: 15px 16px;
  border: 1px solid rgba(77, 23, 107, 0.16);
  border-radius: 14px;
  color: var(--purple-900);
  background: linear-gradient(135deg, rgba(246, 203, 59, 0.12), rgba(116, 37, 124, 0.06));
}

.personalization-note i {
  flex: 0 0 auto;
  color: var(--purple-700);
  font-size: 1.4rem;
}

.personalization-note span {
  display: grid;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.personalization-note strong {
  color: var(--purple-900);
  font-size: 0.81rem;
}

.spec-list {
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.spec-list li {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list strong {
  font-size: 0.82rem;
}

.spec-list span {
  color: var(--muted);
  font-size: 0.76rem;
}

.availability {
  margin-top: auto;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spec-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.machine-showcase {
  margin-top: 78px;
  padding-top: 68px;
  border-top: 1px solid var(--line);
}

.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 28px;
}

.showcase-heading h3 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

.rail-tools {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
}

.rail-tools > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
}

.rail-buttons {
  display: flex;
  gap: 7px;
}

.rail-buttons button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple-900);
  background: var(--white);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.rail-buttons button:hover {
  color: var(--white);
  background: var(--purple-900);
  transform: translateY(-2px);
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
  gap: 20px;
}

.showcase-featured,
.machine-slide {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(77, 23, 107, 0.16);
  border-radius: 22px;
  color: var(--white);
  background: var(--purple-950);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  scroll-snap-align: start;
  text-align: left;
}

.showcase-featured img,
.machine-slide img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 40%, rgba(116, 37, 124, 0.38), transparent 52%),
    var(--purple-950);
}

.showcase-featured > span,
.machine-slide > span {
  display: grid;
  gap: 2px;
  min-height: 72px;
  align-content: center;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.showcase-featured strong,
.machine-slide strong {
  color: var(--gold);
  font-size: 0.91rem;
}

.machine-rail {
  display: flex;
  gap: 16px;
  padding: 0 4px 13px 0;
  overflow-x: auto;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--purple-700) rgba(77, 23, 107, 0.08);
  scrollbar-width: thin;
  touch-action: pan-x;
}

.machine-rail:focus-visible {
  border-radius: 22px;
  outline: 3px solid rgba(246, 203, 59, 0.75);
  outline-offset: 4px;
}

.machine-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.machine-slide {
  flex: 0 0 300px;
}

.machine-slide-wide {
  flex-basis: 390px;
}

.services {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 100%, rgba(116, 37, 124, 0.62), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(246, 203, 59, 0.1), transparent 30%),
    var(--purple-950);
}

.services::after {
  position: absolute;
  right: -170px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.02), 0 0 0 110px rgba(255, 255, 255, 0.015);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.65);
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(246, 203, 59, 0.42);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.service-card-main {
  color: var(--purple-950);
  border-color: var(--gold);
  background: var(--gold);
}

.service-card-main:hover {
  background: #ffda51;
}

.service-index {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card-main .service-index {
  color: rgba(36, 16, 61, 0.44);
}

.service-icon {
  display: grid;
  width: 61px;
  height: 61px;
  margin-bottom: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card-main .service-icon {
  border-color: rgba(36, 16, 61, 0.25);
  color: var(--purple-900);
}

.service-card p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.service-card-main p {
  color: rgba(36, 16, 61, 0.74);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.text-link i {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.maintenance-detail {
  background:
    radial-gradient(circle at 8% 10%, rgba(246, 203, 59, 0.13), transparent 27%),
    var(--white);
}

.maintenance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 7vw, 92px);
}

.maintenance-intro {
  position: sticky;
  top: 118px;
}

.maintenance-intro h2 {
  font-size: clamp(2.15rem, 4vw, 3.8rem);
}

.maintenance-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.maintenance-intro small {
  display: block;
  max-width: 420px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.maintenance-list article {
  display: flex;
  min-height: 180px;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.maintenance-list article > i {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
  color: var(--purple-900);
  background: rgba(246, 203, 59, 0.45);
  font-size: 1.2rem;
}

.maintenance-list h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.maintenance-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.parts {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

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

.part-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.part-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.part-image {
  display: grid;
  min-height: 280px;
  padding: 18px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(246, 203, 59, 0.18), transparent 52%),
    #eee9f0;
}

.part-image img {
  width: 100%;
  height: 245px;
  object-fit: contain;
}

.part-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.part-tag {
  width: fit-content;
  margin-bottom: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--purple-800);
  background: rgba(246, 203, 59, 0.34);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.part-content h3 {
  font-size: 1.3rem;
}

.part-content p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.8rem;
}

.part-content small {
  color: var(--purple-700);
  font-size: 0.7rem;
  font-weight: 700;
}

.parts-contact,
.delivery-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 25px 28px;
  border-radius: 20px;
}

.parts-contact {
  border: 1px solid rgba(77, 23, 107, 0.16);
  background: var(--white);
}

.parts-contact > div,
.delivery-strip {
  display: flex;
  align-items: center;
}

.parts-contact > div {
  gap: 18px;
}

.parts-contact > div > i,
.delivery-strip > i {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  font-size: 1.4rem;
}

.parts-contact > div > i {
  color: var(--gold);
  background: var(--purple-900);
}

.parts-contact strong,
.delivery-strip strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1rem;
}

.parts-contact p,
.delivery-strip p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.delivery-strip {
  color: var(--white);
  background: linear-gradient(120deg, var(--purple-950), var(--purple-700));
}

.delivery-strip > i {
  color: var(--purple-950);
  background: var(--gold);
}

.delivery-strip p {
  color: rgba(255, 255, 255, 0.67);
}

.delivery-strip .button {
  flex: 0 0 auto;
  margin-left: auto;
}

.crediario {
  background: var(--white);
}

.crediario-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.6fr);
  align-items: center;
  gap: 48px;
  padding: clamp(42px, 6vw, 74px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(246, 203, 59, 0.2), transparent 28%),
    linear-gradient(128deg, var(--purple-900), var(--purple-600));
  box-shadow: var(--shadow-lg);
}

.crediario-card::before {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.18) 38.2%, transparent 38.5%);
  content: "";
}

.crediario-copy,
.crediario-mark {
  position: relative;
  z-index: 1;
}

.crediario-copy h2 {
  max-width: 700px;
}

.crediario-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.payment-list span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 700;
}

.crediario-copy small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

.crediario-mark {
  display: grid;
  justify-items: end;
  text-align: right;
  transform: rotate(-4deg);
}

.crediario-mark::before {
  position: absolute;
  top: -70px;
  right: -80px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(246, 203, 59, 0.42);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 80px rgba(246, 203, 59, 0.06);
}

.crediario-mark span {
  color: rgba(255, 255, 255, 0.6);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-style: italic;
}

.crediario-mark strong {
  position: relative;
  color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.9;
}

.clients {
  padding-top: 62px;
}

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

.gallery-item {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gallery-item:hover {
  border-color: rgba(77, 23, 107, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.gallery-item::after {
  display: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #eee9f0;
  transition: transform 500ms ease;
}

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

.gallery-item span {
  position: static;
  padding: 17px 20px;
  border-top: 1px solid var(--line);
  color: var(--purple-900);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: left;
}

.differences {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(116, 37, 124, 0.48), transparent 32%),
    var(--purple-900);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(46px, 7vw, 90px);
  margin-bottom: 52px;
}

.about-intro h2 {
  margin-bottom: 0;
}

.about-intro-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
}

.about-intro-copy p:last-child {
  margin-bottom: 0;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.difference-grid article {
  min-height: 205px;
  padding: 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease;
}

.difference-grid article:hover {
  background: rgba(255, 255, 255, 0.055);
}

.difference-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}

.difference-grid h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.difference-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.quote-cta {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(98deg, rgba(19, 6, 28, 0.97), rgba(62, 17, 78, 0.89)),
    url("../images/maquinas/maquina-premium-3-bicos.webp") center 51% / cover no-repeat;
}

.quote-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.quote-inner h2 {
  margin-bottom: 12px;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
}

.quote-inner p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.69);
}

.quote-inner .button {
  flex: 0 0 auto;
}

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

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.location-info {
  padding: clamp(30px, 5vw, 56px);
}

.location-block {
  margin-bottom: 26px;
}

.location-block > span {
  display: block;
  margin-bottom: 7px;
  color: var(--purple-700);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-block strong {
  display: block;
  max-width: 480px;
  font-size: 1.02rem;
}

.location-block p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-number {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.contact-number i {
  color: var(--green-dark);
}

.contact-number-support i {
  color: var(--gold-dark);
}

.location-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.map-wrap {
  min-height: 540px;
  background: #ddd7df;
}

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

.site-footer {
  padding-top: 76px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--purple-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(130px, 0.65fr));
  gap: clamp(34px, 6vw, 80px);
  padding-bottom: 62px;
}

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

.footer-brand > p {
  max-width: 380px;
  font-size: 0.86rem;
}

.footer-grid h2 {
  margin-bottom: 19px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-grid li {
  margin-bottom: 9px;
}

.footer-grid a:not(.brand):not(.button) {
  display: block;
  width: fit-content;
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-grid address,
.footer-grid p {
  font-size: 0.78rem;
  font-style: normal;
}

.pending-link {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.73rem;
}

.footer-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.74);
}

.social-link i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.055);
  font-size: 1rem;
}

.social-link span {
  font-size: 0.78rem;
}

.social-link-pending {
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  font-size: 0.71rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 13px 36px rgba(13, 89, 49, 0.35);
  cursor: pointer;
  animation: whatsappFloat 3s ease-in-out infinite;
}

.floating-whatsapp > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  font-size: 1.15rem;
}

.floating-whatsapp strong {
  font-size: 0.78rem;
}

@keyframes whatsappFloat {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

dialog {
  max-width: calc(100% - 32px);
  border: 0;
  padding: 0;
}

dialog::backdrop {
  background: rgba(12, 5, 18, 0.76);
  backdrop-filter: blur(4px);
}

.contact-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 37px;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-dialog h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.contact-dialog > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
}

.dialog-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--purple-900);
  background: var(--soft);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.whatsapp-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 70px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.whatsapp-option:hover {
  border-color: var(--green);
  background: rgba(32, 185, 103, 0.055);
  transform: translateY(-2px);
}

.whatsapp-option span {
  display: grid;
}

.whatsapp-option strong {
  font-size: 0.9rem;
}

.whatsapp-option small {
  color: var(--muted);
}

.whatsapp-option b {
  color: var(--green-dark);
  font-size: 1.25rem;
}

.lightbox {
  position: relative;
  width: min(920px, calc(100% - 24px));
  max-height: 92svh;
  overflow: hidden;
  border-radius: 20px;
  color: var(--white);
  background: var(--purple-950);
  box-shadow: var(--shadow-lg);
}

.lightbox-media {
  display: grid;
  min-height: 0;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(116, 37, 124, 0.2), transparent 56%),
    #12081a;
}

.lightbox img {
  width: 100%;
  height: min(76svh, 760px);
  padding: 12px;
  object-fit: contain;
}

.lightbox p {
  margin: 0;
  padding: 16px 20px 19px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.lightbox-close {
  z-index: 2;
  color: var(--white);
  background: rgba(20, 8, 31, 0.7);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-cta {
    display: none;
  }

  .product-grid {
    gap: 16px;
  }

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

  .product-image {
    min-height: 0;
  }

  .product-image img {
    object-position: center 43%;
  }
}

@media (max-width: 1180px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    z-index: 101;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 0;
    padding: 13px 20px 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(25, 9, 38, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .nav-list a {
    display: block;
    padding: 14px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
  }

  .nav-list li:last-child a {
    border-bottom: 0;
  }

  .nav-list a::after {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section-heading,
  .about-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p {
    max-width: 650px;
  }

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

  .service-card {
    min-height: 315px;
  }

  .service-icon {
    margin-bottom: 38px;
  }

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

  .maintenance-intro {
    position: static;
    max-width: 760px;
  }

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

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

  .crediario-mark {
    display: none;
  }

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

  .quote-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 410px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, minmax(120px, 0.7fr));
    gap: 35px;
  }
}

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

  .section {
    padding: 74px 0;
  }

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

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand small {
    font-size: 0.65rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 115px;
    padding-bottom: 72px;
  }

  .hero h1 {
    max-width: 610px;
  }

  .hero-product {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .hero-product-frame {
    min-height: 560px;
  }

  .hero-product-frame img {
    height: 560px;
  }

  .scroll-cue {
    display: none;
  }

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

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

  .product-image {
    min-height: 0;
  }

  .showcase-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .showcase-featured {
    width: min(100%, 560px);
  }

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

  .gallery-item {
    grid-column: auto;
  }

  .gallery-item-wide {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    z-index: 1;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 13px 20px;
    margin-top: 35px;
  }

  .machine-showcase {
    margin-top: 58px;
    padding-top: 50px;
  }

  .rail-tools {
    width: 100%;
    justify-content: space-between;
  }

  .showcase-featured img,
  .machine-slide img {
    height: 460px;
  }

  .machine-slide,
  .machine-slide-wide {
    flex-basis: min(82vw, 330px);
  }

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

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

  .part-image {
    min-height: 230px;
  }

  .part-image img {
    height: 205px;
  }

  .parts-contact,
  .delivery-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .parts-contact .button,
  .delivery-strip .button {
    width: 100%;
    margin-left: 0;
  }

  .hero-product-frame {
    min-height: 500px;
  }

  .hero-product-frame img {
    height: 500px;
    padding: 14px;
  }

  .hero-product figcaption {
    right: 10px;
    bottom: 12px;
    left: 10px;
    max-width: none;
  }

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

  .product-image {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .product-content {
    padding: 29px 23px 23px;
  }

  .crediario-card {
    width: min(calc(100% - 24px), var(--container));
    padding: 36px 24px;
    border-radius: 24px;
  }

  .payment-list {
    gap: 6px;
  }

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

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .lightbox img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 72svh;
    padding: 6px;
  }

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

  .difference-grid article {
    min-height: 175px;
  }

  .location-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .location-actions {
    display: grid;
  }

  .location-actions .button {
    width: 100%;
  }

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

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

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .header-inner {
    gap: 10px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-trust span {
    font-size: 0.63rem;
  }

  .product-image {
    min-height: 0;
  }

  .service-card {
    min-height: 330px;
    padding: 28px;
  }

  .showcase-featured img,
  .machine-slide img {
    height: 400px;
  }

  .rail-tools > span {
    font-size: 0.69rem;
  }

  .parts-contact > div,
  .delivery-strip {
    align-items: flex-start;
  }

  .parts-contact > div > i,
  .delivery-strip > i {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .quote-cta {
    padding: 60px 0;
  }

  .quote-inner .button {
    width: 100%;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 340px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-width: 56px;
    padding-right: 8px;
  }

  .floating-whatsapp strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .contact-dialog {
    padding: 32px 20px 22px;
  }
}

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

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