:root {
  color-scheme: light;
  --red: #d60012;
  --red-dark: #99000c;
  --black: #090b0f;
  --ink: #15171c;
  --muted: #667085;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --soft-2: #ebeef2;
  --whatsapp: #16a34a;
  --whatsapp-dark: #0f7c37;
  --shadow-sm: 0 10px 24px rgba(9, 11, 15, 0.08);
  --shadow-md: 0 18px 48px rgba(9, 11, 15, 0.14);
  --shadow-strong: 0 22px 60px rgba(9, 11, 15, 0.2);
  --radius: 8px;
  --header-height: 72px;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--black);
  font-weight: 800;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.98), rgba(18, 20, 26, 0.96)),
    #07090d;
  color: var(--paper);
  backdrop-filter: saturate(160%) blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
  min-height: var(--header-height);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(132px, 15vw, 172px);
  height: 54px;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 5px 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
}

.site-nav a,
.footer-links a {
  position: relative;
  text-decoration: none;
  font-weight: 800;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

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

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--paper);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn::after {
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  transform: skewX(-18deg) translateX(-120%);
  transition: transform 520ms ease;
}

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

.btn:hover::after {
  transform: skewX(-18deg) translateX(520%);
}

.btn-whatsapp {
  background: linear-gradient(180deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(15, 124, 55, 0.27);
  padding: 13px 18px;
}

.btn-primary {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  color: var(--paper);
  box-shadow: 0 16px 34px rgba(214, 0, 18, 0.28);
  padding: 14px 20px;
}

.btn-secondary {
  border: 1px solid rgba(9, 11, 15, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 13px 18px;
}

.btn-large {
  min-height: 58px;
  padding: 17px 24px;
  font-size: 1.05rem;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
}

.btn-icon svg,
.trust-icon svg,
.action-icon svg,
.slider-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  min-height: 610px;
  padding-top: var(--header-height);
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f3f6 100%);
}

.hero-slider,
.hero-slides {
  position: relative;
  min-height: 538px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide.is-active img {
  animation: heroDrift 8s ease-out both;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 35%, rgba(255, 255, 255, 0.58) 54%, rgba(255, 255, 255, 0.04) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(241, 243, 246, 0.95) 100%);
  content: "";
}

.hero-slide::before {
  position: absolute;
  right: -10vw;
  bottom: -28px;
  z-index: 1;
  width: 48vw;
  height: 112px;
  background: linear-gradient(90deg, rgba(214, 0, 18, 0), rgba(214, 0, 18, 0.78), rgba(153, 0, 12, 0.92));
  clip-path: polygon(11% 22%, 100% 0, 93% 100%, 0 82%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
  padding: clamp(42px, 6vw, 74px) 0 104px;
}

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

.hero h1 {
  margin: 0 0 18px;
  color: var(--black);
  max-width: 560px;
  font-size: clamp(2.35rem, 4.2vw, 3.9rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

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

.hero p {
  max-width: 560px;
  margin: 0;
  color: #3f4650;
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
  line-height: 1.45;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(214, 0, 18, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--red-dark);
  font-weight: 900;
  padding: 8px 12px;
}

.hero-badge::before {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--red);
  content: "";
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 92px;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  pointer-events: none;
}

.slider-btn,
.slider-dot {
  pointer-events: auto;
}

.slider-btn {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(9, 11, 15, 0.13);
  border-radius: var(--radius);
  background: rgba(9, 11, 15, 0.9);
  color: var(--paper);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 99px;
  background: rgba(9, 11, 15, 0.28);
  transition: width 180ms ease, background 180ms ease;
}

.slider-dot.is-active {
  width: 52px;
  background: var(--red);
}

.trust-strip {
  position: relative;
  z-index: 8;
  margin-top: -18px;
  padding-bottom: 36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(9, 11, 15, 0.08);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-strong);
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 96px;
  background: var(--paper);
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #ffffff, #fff8f8);
  box-shadow: 0 14px 28px rgba(214, 0, 18, 0.09);
}

.trust-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(214, 0, 18, 0.18);
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #fff4f5);
  color: var(--red);
  font-weight: 950;
  font-size: 0.92rem;
}

.trust-item strong {
  display: block;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.15;
}

.trust-item span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.25;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.section h2,
.cta-band h2 {
  margin: 10px 0 12px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: 0;
}

.section p,
.cta-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.products-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 0, 18, 0.06), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  padding-bottom: clamp(42px, 7vw, 72px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  overflow: hidden;
  border: 1px solid rgba(9, 11, 15, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.category-card img {
  width: 100%;
  height: clamp(190px, 16vw, 236px);
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(214, 0, 18, 0.08), rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, #f0f2f5, #ffffff);
  padding: 10px;
  transition: transform 220ms ease, filter 220ms ease;
}

.category-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.category-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.category-body h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.28rem;
  line-height: 1.1;
}

.category-body p {
  min-height: 3.1em;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.category-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--black), #171a21);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  padding: 12px 14px;
  transition: background 180ms ease;
}

.category-action:hover {
  background: var(--red);
}

.action-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
}

.more-parts {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: 34px;
  border: 1px solid rgba(9, 11, 15, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(9, 11, 15, 0.96), rgba(20, 24, 32, 0.92)),
    #0a0d13;
  color: var(--paper);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.more-parts::before {
  position: absolute;
  right: -8%;
  bottom: 0;
  left: 38%;
  height: 5px;
  background: linear-gradient(90deg, rgba(0, 91, 181, 0), rgba(0, 91, 181, 0.95), rgba(214, 0, 18, 0.95));
  box-shadow:
    0 0 24px rgba(0, 91, 181, 0.65),
    0 0 28px rgba(214, 0, 18, 0.7);
  content: "";
}

.more-parts h3 {
  margin: 8px 0 10px;
  color: var(--paper);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.more-parts p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.75);
}

.more-parts-side {
  display: grid;
  gap: 20px;
}

.more-parts-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.part-chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  padding: 9px 12px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.part-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 0, 18, 0.55);
  background: rgba(214, 0, 18, 0.16);
}

.quote-steps {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
  padding: clamp(48px, 7vw, 78px) 0;
}

.quote-steps-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
}

.quote-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quote-step {
  min-height: 190px;
  border: 1px solid rgba(9, 11, 15, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quote-step:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 0, 18, 0.18);
  box-shadow: var(--shadow-md);
}

.quote-step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-weight: 950;
}

.quote-step h3 {
  margin: 16px 0 8px;
  color: var(--black);
  font-size: 1.1rem;
}

.quote-step p {
  margin: 0;
  color: var(--muted);
}

.brand-section {
  background: var(--black);
  color: var(--paper);
}

.brand-section h2,
.brand-section p {
  color: var(--paper);
}

.brand-section p {
  color: rgba(255, 255, 255, 0.74);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.brand-pill {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  padding: 8px 12px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brand-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 0, 18, 0.58);
  background: rgba(214, 0, 18, 0.18);
}

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

.service-card {
  min-height: 144px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(214, 0, 18, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 0, 18, 0.42);
  background:
    linear-gradient(135deg, rgba(214, 0, 18, 0.3), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.service-card:first-child {
  grid-row: span 2;
  min-height: 302px;
}

.service-number {
  display: block;
  color: var(--paper);
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  font-weight: 950;
  line-height: 0.9;
}

.service-label {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.why-section {
  background: var(--paper);
}

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

.reason-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  border: 1px solid rgba(9, 11, 15, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 0, 18, 0.16);
  box-shadow: var(--shadow-md);
}

.reason-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-weight: 950;
}

.reason-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.08rem;
  line-height: 1.18;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.branches-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(214, 0, 18, 0.06), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

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

.branch-card {
  overflow: hidden;
  border: 1px solid rgba(9, 11, 15, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.branch-card:hover {
  transform: translateY(-7px);
  border-color: rgba(214, 0, 18, 0.2);
  box-shadow: var(--shadow-md);
}

.branch-media {
  position: relative;
  display: grid;
  min-height: 190px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(214, 0, 18, 0.16), rgba(0, 91, 181, 0.1)),
    #eef1f5;
  color: var(--red);
  text-decoration: none;
}

.branch-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.branch-card:hover .branch-media img {
  transform: scale(1.04);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.48) 1px, transparent 1px) 0 0 / 42px 42px,
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 10rem),
    linear-gradient(135deg, #e6ebf2, #cdd4df);
}

.map-grid::before,
.map-grid::after {
  position: absolute;
  right: -20%;
  left: -20%;
  height: 18px;
  border-radius: 999px;
  background: rgba(214, 0, 18, 0.45);
  content: "";
  transform: rotate(-17deg);
}

.map-grid::before {
  top: 32%;
}

.map-grid::after {
  top: 58%;
  background: rgba(0, 91, 181, 0.38);
  transform: rotate(12deg);
}

.map-pin {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 14px 28px rgba(214, 0, 18, 0.3);
  transition: transform 200ms ease;
}

.map-pin svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.branch-card:hover .map-pin {
  transform: translateY(-5px) scale(1.05);
}

.map-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(9, 11, 15, 0.88);
  color: var(--paper);
  font-weight: 900;
  padding: 8px 12px;
}

.branch-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.branch-body h3 {
  min-height: 2.5em;
  margin: 0;
  color: var(--black);
  font-size: 1.12rem;
  line-height: 1.18;
}

.branch-address {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.branch-address svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
  transform: translateY(2px);
}

.branch-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.branch-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  background: #eef1f5;
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
  padding: 10px 12px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.branch-link-map {
  background: var(--black);
  color: var(--paper);
}

.branch-link:hover {
  transform: translateY(-2px);
  background: var(--red);
  color: var(--paper);
}

.branch-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(3, 9, 18, 0.96), rgba(15, 20, 33, 0.9) 42%, rgba(80, 0, 10, 0.86)),
    radial-gradient(circle at 22% 40%, rgba(0, 90, 180, 0.58), transparent 24rem),
    radial-gradient(circle at 84% 38%, rgba(214, 0, 18, 0.88), transparent 22rem),
    #07090d;
  color: var(--paper);
  overflow: hidden;
  padding: clamp(46px, 7vw, 76px) 0;
}

.cta-band::before {
  display: block;
  height: 10px;
  margin-top: calc(clamp(46px, 7vw, 76px) * -1);
  margin-bottom: clamp(36px, 6vw, 58px);
  background:
    linear-gradient(90deg, rgba(0, 91, 181, 0), rgba(0, 91, 181, 0.9), rgba(214, 0, 18, 0.95), rgba(214, 0, 18, 0));
  box-shadow:
    0 0 26px rgba(0, 91, 181, 0.6),
    0 0 34px rgba(214, 0, 18, 0.68);
  content: "";
}

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

.cta-band h2 {
  color: var(--paper);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background:
    linear-gradient(180deg, #080a0f 0%, #05070b 100%);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer::before {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #005bb5, var(--red), #005bb5);
  content: "";
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 48px 0 34px;
}

.footer-brand img {
  width: min(190px, 100%);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 8px 10px;
}

.footer-brand p {
  max-width: 310px;
}

.footer-block h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 1rem;
}

.footer-block a {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-block a:hover {
  color: var(--paper);
}

.footer-links {
  display: grid;
  gap: 6px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font-weight: 950;
  text-decoration: none;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--paper);
  font-weight: 950;
  text-decoration: none;
  padding: 10px 16px 10px 10px;
  box-shadow: 0 16px 38px rgba(15, 124, 55, 0.36);
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.reveal-item {
  opacity: 0;
  translate: 0 22px;
  transition:
    opacity 520ms ease,
    translate 520ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes heroDrift {
  from {
    scale: 1.02;
  }

  to {
    scale: 1.06;
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 16px 38px rgba(15, 124, 55, 0.32);
  }

  50% {
    box-shadow: 0 18px 46px rgba(15, 124, 55, 0.55);
  }
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.fallback-box {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 90px 18px 36px;
  background: var(--soft);
}

.fallback-card {
  width: min(100%, 720px);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(24px, 5vw, 42px);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.fallback-card h1 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
}

.fallback-card p {
  margin: 0 auto 22px;
  max-width: 560px;
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid rgba(214, 0, 18, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    order: 3;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 6, 10, 0.98);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
  }

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

  .header-whatsapp {
    order: 2;
  }

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

  .more-parts,
  .quote-steps-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.35rem, 6.6vw, 4rem);
  }

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

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

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 62px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    grid-template-columns: auto auto;
    gap: 10px;
  }

  .brand-link {
    width: 104px;
    height: 44px;
    padding: 4px 7px;
  }

  .header-whatsapp {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-slider,
  .hero-slides {
    min-height: 498px;
  }

  .hero-slide {
    align-items: end;
  }

  .hero-slide img {
    object-position: 72% top;
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.78) 38%, rgba(255, 255, 255, 0.98) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2));
  }

  .hero-slide::before {
    right: -24vw;
    bottom: -18px;
    width: 78vw;
    height: 70px;
  }

  .hero-content {
    padding: 170px 0 78px;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 12px;
    font-size: clamp(1.92rem, 8.4vw, 2.55rem);
    line-height: 1.02;
  }

  .hero p {
    font-size: 0.96rem;
    line-height: 1.38;
  }

  .hero-badge {
    margin-bottom: 12px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-controls {
    display: none;
  }

  .trust-strip {
    margin-top: 0;
    padding: 14px 0 30px;
  }

  .category-grid,
  .branches-grid,
  .quote-step-grid,
  .reasons-grid,
  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .more-parts {
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding: 20px;
  }

  .more-parts .btn {
    width: 100%;
  }

  .quote-steps {
    padding: 44px 0;
  }

  .quote-step {
    min-height: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 24px, 1180px);
    border-radius: var(--radius);
  }

  .trust-item {
    min-height: 82px;
    gap: 10px;
    padding: 12px;
  }

  .trust-icon {
    width: 38px;
    height: 38px;
  }

  .trust-icon svg {
    width: 17px;
    height: 17px;
  }

  .trust-item strong {
    font-size: 0.86rem;
  }

  .trust-item span:last-child {
    font-size: 0.76rem;
  }

  .section-heading.centered {
    text-align: left;
  }

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

  .service-card:first-child {
    grid-row: auto;
    min-height: 138px;
  }

  .cta-inner,
  .footer-bottom {
    display: grid;
  }

  .floating-whatsapp {
    display: inline-flex;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp > span:last-child {
    display: none;
  }

  .site-footer {
    padding-bottom: 68px;
  }
}

@media (max-width: 420px) {
  .hero-content {
    padding-top: 158px;
  }

  .btn {
    padding-inline: 14px;
  }

  .section h2,
  .cta-band h2 {
    font-size: 1.86rem;
  }
}

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