/* =========================================================
   REDLINE — Taller Premium de Motos de Alto Cilindraje
   Tokens: blanco / naranja / negro — estética futurista neón
   ========================================================= */

:root {
  --white: #ffffff;
  --off-white: #f6f5f3;
  --black: #0a0a0a;
  --black-soft: #141414;
  --gray-900: #1c1c1c;
  --gray-600: #4a4a4a;
  --gray-300: #c9c9c9;

  --orange: #ff6a00;
  --orange-light: #ff9142;
  --orange-deep: #cc4e00;

  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;

  --neon-glow: 0 0 6px rgba(255, 106, 0, .85), 0 0 22px rgba(255, 106, 0, .55), 0 0 46px rgba(255, 106, 0, .3);
  --neon-glow-soft: 0 0 12px rgba(255, 106, 0, .35);
  --ease: cubic-bezier(.16, .84, .44, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 500;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--orange);
  color: var(--black);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--black);
  line-height: 1.05;
  letter-spacing: .5px;
}

.stroke {
  color: var(--orange);
  text-shadow: var(--neon-glow-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 14px;
}

.eyebrow i {
  font-size: .85em;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 0 24px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  font-weight: 500;
}

/* ============ SCROLL REVEAL & TRANSICIONES ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="zoom"] {
  transform: scale(0.88);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger para elementos agrupados */
.services-grid>[data-reveal]:nth-child(1) {
  transition-delay: 0.1s;
}

.services-grid>[data-reveal]:nth-child(2) {
  transition-delay: 0.2s;
}

.services-grid>[data-reveal]:nth-child(3) {
  transition-delay: 0.3s;
}

.services-grid>[data-reveal]:nth-child(4) {
  transition-delay: 0.4s;
}

.services-grid>[data-reveal]:nth-child(5) {
  transition-delay: 0.5s;
}

.services-grid>[data-reveal]:nth-child(6) {
  transition-delay: 0.6s;
}

/* ============ BUTTONS & SHINE EFFECT ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1px;
  padding: 16px 28px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease);
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(60deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  transition: all 0.65s var(--ease);
  pointer-events: none;
}

.btn:hover::after {
  left: 130%;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--neon-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--orange);
  box-shadow: inset 0 0 0 rgba(255, 106, 0, 0);
}

.btn-ghost:hover {
  background: var(--orange);
  color: var(--black);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--neon-glow);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1rem;
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-dial {
  position: relative;
  width: 120px;
  height: 120px;
}

.loader-dial svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.loader-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, .08);
  stroke-width: 8;
}

.loader-ring-fg {
  fill: none;
  stroke: var(--orange);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 540;
  stroke-dashoffset: 540;
  filter: drop-shadow(0 0 8px var(--orange));
  animation: dialFill 1.1s var(--ease) infinite;
}

@keyframes dialFill {
  0% {
    stroke-dashoffset: 540;
  }

  50% {
    stroke-dashoffset: 80;
  }

  100% {
    stroke-dashoffset: 540;
  }
}

.loader-rpm {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--orange);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: 2px;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 10, .86);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, .35);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-spin {
  display: inline-block;
  vertical-align: middle;
}

.brand-logo-img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  transition: height .3s var(--ease);
  animation: logoSpinUniversal 5s linear infinite !important;
  -webkit-animation: logoSpinUniversal 5s linear infinite !important;
}

.nav.scrolled .brand-logo-img {
  height: 30px;
}

@keyframes logoSpinUniversal {
  0% {
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
  }
}

@-webkit-keyframes logoSpinUniversal {
  0% {
    -webkit-transform: rotateY(0deg);
  }

  100% {
    -webkit-transform: rotateY(360deg);
  }
}

.brand-logo-img:hover {
  transform: scale(1.08);
}

.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  position: relative;
  padding: 6px 0;
}

.nav:not(.scrolled) .nav-links a {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  box-shadow: var(--neon-glow-soft);
  transition: width .3s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  background: var(--orange);
  color: var(--black);
  padding: 11px 20px;
  border-radius: 6px;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.nav-cta:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.nav-burger span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

.nav:not(.scrolled) .nav-burger span {
  background: var(--white);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 82vh;
  min-height: 560px;
  max-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--black);
  perspective: 1200px;
  padding-top: 50px;
}

.hero-media {
  position: absolute;
  inset: -5%;
  will-change: transform;
  transform-style: preserve-3d;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02) brightness(.95);
}

.hero-media.hero-fallback {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 106, 0, .35), transparent 55%),
    repeating-linear-gradient(115deg, #1a1a1a 0 2px, #0a0a0a 2px 42px),
    linear-gradient(160deg, #161616, #050505);
}

.hero-media.hero-fallback img {
  display: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .88) 0%, rgba(10, 10, 10, .65) 45%, rgba(10, 10, 10, .2) 80%, transparent 100%),
    linear-gradient(180deg, rgba(10, 10, 10, .4) 0%, transparent 40%, rgba(10, 10, 10, .6) 100%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 106, 0, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  opacity: 0.6;
}

.hero-dial {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(60vw, 640px);
  height: min(60vw, 640px);
  z-index: 1;
  opacity: .18;
  pointer-events: none;
}

.dial-track {
  fill: none;
  stroke: rgba(255, 255, 255, .08);
  stroke-width: 1.5;
}

.dial-redline {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px var(--orange));
}

.dial-needle-track {
  fill: none;
  stroke: rgba(255, 106, 0, .18);
  stroke-width: 1;
  stroke-dasharray: 2 10;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5% 0 7%;
  text-align: left;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(2.3rem, 5.8vw, 4.5rem);
  font-weight: 900;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
  margin-top: 6px;
  text-align: left;
  align-items: flex-start;
}

.hero-title em {
  font-style: normal;
  color: var(--white);
}

.hero-title .stroke {
  -webkit-text-stroke: 1.5px var(--orange);
  color: transparent;
  text-shadow: none;
}

.hero-sub {
  margin: 22px 0 0 0;
  max-width: 620px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #e0e0e0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  line-height: 1.5;
  text-align: left;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .3s var(--ease);
  text-decoration: none;
}

.hero-social-btn:hover {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  box-shadow: var(--neon-glow);
  transform: translateY(-3px) scale(1.1);
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 40px;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .5px;
  text-decoration: none;
  transition: all .3s var(--ease);
}

.hero-rating-badge:hover {
  background: rgba(255, 106, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.25);
  transform: translateY(-2px);
}

.rating-score {
  font-weight: 800;
  color: var(--white);
  font-size: .95rem;
}

.rating-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: .7rem;
}

.rating-text {
  color: var(--gray-300);
  font-size: .78rem;
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: 3px;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

/* ============ TRUST / MARQUEE ============ */
.trust {
  background: var(--black);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.trust-label {
  text-align: center;
  color: var(--gray-300);
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  opacity: 0.85;
}

.trust-label i {
  color: var(--orange);
  margin-right: 6px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: moveLeft 38s linear infinite !important;
}

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

@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 100px;
  padding: 0 8px;
  flex-shrink: 0;
}

.trust-brand-img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(1.8) contrast(1.05) opacity(0.85);
  transition: filter .3s var(--ease), transform .3s var(--ease);
}

.logo-item:hover .trust-brand-img {
  filter: brightness(1) opacity(1) drop-shadow(0 0 10px rgba(255, 106, 0, 0.85));
  transform: scale(1.1);
}

.logo-badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: 1.5px;
  color: var(--white);
  background: rgba(255, 106, 0, 0.08);
  border: 1.5px solid rgba(255, 106, 0, .4);
  padding: 10px 22px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  transition: all .3s var(--ease);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.logo-item:hover .logo-badge {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: var(--neon-glow);
  transform: scale(1.08);
}

/* ============ SEARCH SECTION / COMPATIBILIDAD ============ */
.search-section {
  padding: 110px 24px 100px;
  position: relative;
  overflow: hidden;
  background-image: url("img/banner2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.search-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 245, 245, 0.85) 100%);
  z-index: 0;
}

.search-section .section-head,
.search-section .search-box,
.search-section .search-bottom-accent {
  position: relative;
  z-index: 2;
}

.dark-title {
  color: #0f0f11 !important;
  font-size: clamp(2rem, 4.4vw, 3.2rem) !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
}

.dark-sub {
  color: #555558 !important;
  font-size: 1.05rem !important;
  max-width: 600px !important;
  margin: 14px auto 0 !important;
}

.search-box {
  max-width: 940px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.search-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.search-box .field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-box .field label {
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: 1.5px;
  color: #111114;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-box .field label i {
  color: var(--orange);
  font-size: .85rem;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper input {
  width: 100%;
  background: #fafafa;
  border: 1.5px solid #e2e2e6;
  color: #111114;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 44px 14px 16px;
  border-radius: 10px;
  outline: none;
  transition: all .25s var(--ease);
}

.input-wrapper input:focus {
  background: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.input-wrapper input::placeholder {
  color: #a0a0a5;
  font-weight: 500;
}

.input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: .9rem;
  pointer-events: none;
}

.search-box .search-btn {
  flex: 0 0 auto;
  height: 52px;
  background: var(--orange);
  color: #ffffff;
  border-radius: 10px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: 1px;
  box-shadow: 0 8px 22px rgba(255, 106, 0, 0.35);
  transition: all .25s var(--ease);
}

.search-box .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.5);
}

.search-features-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eeeeef;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.search-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: #222225;
}

.search-feat i {
  color: var(--orange);
  font-size: 1rem;
}

.feat-sep {
  color: #dddddf;
  font-size: .9rem;
}

.search-bottom-accent {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.accent-arrow {
  color: var(--orange);
  font-size: .95rem;
  animation: bob 2.2s ease-in-out infinite;
}

.accent-line-text {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
}

.acc-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.4), transparent);
}

.acc-text {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #444448;
}

.search-result {
  margin-top: 24px;
}

.result-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 12px;
  animation: fadeUp .5s var(--ease);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-card.ok {
  background: rgba(255, 106, 0, .08);
  border: 1.5px solid rgba(255, 106, 0, .4);
}

.result-card.ok i {
  color: var(--orange);
  font-size: 1.5rem;
}

.result-card.ok h4 {
  color: #111114;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.result-card.ok p {
  color: #444448;
  font-size: .92rem;
}

.result-card.no {
  background: rgba(0, 0, 0, .04);
  border: 1.5px solid rgba(0, 0, 0, .12);
}

.result-card.no i {
  color: #66666a;
  font-size: 1.5rem;
}

.result-card.no h4 {
  color: #111114;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.result-card.no p {
  color: #555558;
  font-size: .92rem;
}

/* ============ ABOUT / STICKY SCROLL PINNED ============ */
.about {
  position: relative;
  height: 380vh;
  /* Bloquea la pantalla durante el desplazamiento de las 5 tarjetas */
  background: var(--black-soft);
}

.about-pin-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.about-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 8px 0 20px;
  color: var(--white);
}

.about-copy p {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: 22px;
  line-height: 1.6;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.about-stat-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--orange);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about-stat-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--neon-glow-soft);
}

.about-stat-item .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
  text-shadow: var(--neon-glow-soft);
}

.about-stat-item .stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}

.about-list i {
  color: var(--orange);
  margin-top: 4px;
}

.about-cards-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-sticky-viewport {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card {
  position: absolute;
  inset: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.about-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.card-step {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: var(--neon-glow-soft);
}

.card-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.12);
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--neon-glow);
}

.card-icon img {
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(255, 106, 0, 0.6));
  transition: transform 0.3s var(--ease);
}

.about-card.active .card-icon img {
  transform: scale(1.1);
}

.about-card p {
  color: #ffffff !important;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  max-width: 440px;
  margin: 0 auto;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.about-card h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 14px;
  font-family: var(--font-display);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

/* ============ GALERÍA REEL DE MOTOS ============ */
.gallery-reel {
  padding: 80px 0 70px;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.gallery-reel .section-head {
  padding: 0 24px;
  margin-bottom: 32px;
}

.gallery-reel .eyebrow {
  color: var(--orange);
}

.gallery-reel .section-head h2 {
  color: var(--white);
}

.gallery-reel .section-sub {
  color: var(--gray-300);
}

.reel-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  padding: 24px 0;
}

.reel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: reelScroll 55s linear infinite !important;
}

.reel-marquee:hover .reel-track {
  animation-play-state: paused !important;
}

@keyframes reelScroll {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.reel-card {
  flex: none;
  width: 280px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1.5px solid rgba(255, 106, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.reel-card:hover {
  transform: scale(1.04) translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--neon-glow);
}

@media (max-width: 768px) {
  .gallery-reel {
    padding: 60px 0 50px;
  }

  .reel-track {
    gap: 14px;
  }

  .reel-card {
    width: 220px;
    height: 280px;
    border-radius: 14px;
  }
}

/* ============ LIGHTBOX MODAL ============ */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.gallery-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
}

.gallery-modal-content {
  position: relative;
  z-index: 2010;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.3s var(--ease);
}

.gallery-modal.open .gallery-modal-content {
  transform: scale(1);
}

.gallery-modal-content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 106, 0, 0.3);
}

.gallery-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.gallery-modal-close:hover {
  background: var(--orange);
  color: #000;
  transform: scale(1.1);
}

.cards-dots {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.cards-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  transition: all .3s var(--ease);
  cursor: pointer;
}

.cards-dots .dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 10px;
  box-shadow: var(--neon-glow-soft);
}

@media (max-width: 900px) {
  .about {
    height: 340vh;
  }

  .about-pin-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 40px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    max-width: 100%;
  }

  .about-copy {
    text-align: center;
  }

  .about-copy .eyebrow {
    justify-content: center;
    margin-bottom: 4px;
  }

  .about-copy h2 {
    font-size: clamp(1.4rem, 4.8vw, 1.9rem);
    margin: 4px 0 8px;
  }

  .about-copy p,
  .about-list {
    display: none;
  }

  .about-sticky-viewport {
    min-height: 280px;
    width: 100%;
    max-width: 100%;
  }

  .about-card {
    padding: 12px 14px;
  }

  .card-step {
    font-size: .78rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .about-card h3 {
    font-size: clamp(1.25rem, 4.8vw, 1.7rem);
    margin-bottom: 8px;
  }

  .about-card p {
    font-size: clamp(0.88rem, 3.4vw, 0.98rem);
    line-height: 1.5;
    max-width: 92vw;
  }

  .cards-dots {
    bottom: -26px;
  }
}

/* ============ SERVICES ============ */
.services {
  padding: 110px 24px;
  background: var(--off-white);
  position: relative;
}

.services .eyebrow {
  color: var(--orange);
}

.services .section-head h2 {
  color: #0f0f11;
}

.services .section-sub {
  color: #555558;
}

.specialties-grid {
  max-width: 1340px;
  margin: 0 auto 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.specialty-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  flex: 0 1 calc(25% - 12px);
  min-width: 260px;
}

.specialty-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.12);
}

.specialty-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.specialty-card span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #111114;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .specialty-card {
    flex: 0 1 calc(33.333% - 11px);
  }
}

@media (max-width: 768px) {
  .specialties-grid {
    gap: 12px;
    margin-bottom: 32px;
  }
  
  .specialty-card {
    padding: 12px 14px;
    border-radius: 12px;
    gap: 10px;
    flex: 0 1 calc(50% - 6px);
    min-width: 140px;
  }
  
  .specialty-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  
  .specialty-card span {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .specialties-grid {
    gap: 8px;
    margin-bottom: 24px;
  }

  .specialty-card {
    flex: 0 1 calc(50% - 4px);
    min-width: 130px;
    padding: 14px 10px;
    gap: 8px;
    border-radius: 12px;
    min-height: 80px;
  }

  .specialty-icon {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .specialty-card span {
    font-size: 0.85rem;
  }
}

.services-slider-container {
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card-full {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 26px 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  background-clip: padding-box;
}

.service-card-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  z-index: 2;
}

/* Destello reflectante metálico */
.service-card-full::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  transition: left 0.8s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.service-card-full:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 0, 0.45);
  background: linear-gradient(135deg, #ffffff 0%, #f3f3f6 50%, #e4e4eb 100%);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.12),
    inset 0 0 12px rgba(255, 255, 255, 0.65),
    0 0 24px rgba(255, 106, 0, 0.22);
}

.service-card-full:hover::after {
  left: 140%;
}

.card-header,
.card-body,
.card-footer {
  position: relative;
  z-index: 2;
}

.card-image-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
  /* Máscara de desvanecimiento hacia arriba */
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
}

.service-card-full:hover .card-image-bg {
  opacity: 1.0;
  transform: scale(1.05);
}

.card-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.service-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 106, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-count {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #77777c;
  background: #f0f0f2;
  padding: 4px 12px;
  border-radius: 20px;
}

.card-title-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1.5px dashed #e8e8ec;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--orange);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-title-box h3 {
  color: #111114;
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.25;
}

.card-body {
  flex-grow: 1;
  margin-bottom: 24px;
}

.service-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 6px;
}

/* Scrollbar personalizado estético */
.service-items-list::-webkit-scrollbar {
  width: 5px;
}

.service-items-list::-webkit-scrollbar-track {
  background: #f0f0f4;
  border-radius: 10px;
}

.service-items-list::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

.service-items-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111114;
  line-height: 1.45;
  text-shadow: 0 1px 3px #ffffff, 0 1px 6px #ffffff;
}

.service-items-list li i {
  color: var(--orange);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px #ffffff);
}

.card-footer {
  padding-top: 16px;
  border-top: 1px solid #f0f0f2;
}

.card-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ============ MEDIA QUERIES PARA MÓVIL (CARROUSEL HORIZONTAL) ============ */
@media (max-width: 1100px) {
  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 16px;
  }

  .services-slider-container {
    overflow-x: auto;
    width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
  }

  .services-slider-container::-webkit-scrollbar {
    height: 6px;
  }

  .services-slider-container::-webkit-scrollbar-track {
    background: #e5e5e8;
    border-radius: 10px;
  }

  .services-slider-container::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
  }

  .services-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content;
    padding: 0 4px;
  }

  .service-card-full {
    width: 86vw;
    max-width: 360px;
    min-width: 290px;
    scroll-snap-align: center;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .card-title-box h3 {
    font-size: 1.1rem;
  }

  .service-items-list {
    max-height: 320px;
  }

  .service-items-list li {
    font-size: 0.86rem;
  }
}

/* ============ BRANDS DETAIL ============ */
.brands {
  padding: 110px 24px;
  position: relative;
  overflow: hidden;
  background-image: url("img/banner3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.brands-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.72) 50%, rgba(10, 10, 10, 0.92) 100%);
  z-index: 0;
}

.brands .section-head,
.brands .brands-grid {
  position: relative;
  z-index: 2;
}

.brands .eyebrow,
.testimonials .eyebrow,
.cta-final .eyebrow {
  color: var(--orange);
}

.brands .section-head h2,
.testimonials .section-head h2 {
  color: var(--white);
}

.brands-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.brand-tile {
  width: 165px;
  height: 95px;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.brand-tile:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: var(--orange);
  background: rgba(26, 26, 26, 0.95);
  box-shadow: var(--neon-glow);
}

/* ============ GALERÍA MAGNETIC CAROUSEL ============ */
.gallery-magnetic {
  padding: 110px 24px;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.gallery-magnetic .eyebrow {
  color: var(--orange);
}

.gallery-magnetic .section-head h2 {
  color: var(--white);
}

.gallery-magnetic .section-sub {
  color: var(--gray-300);
}

.magnetic-carousel-wrapper {
  max-width: 1380px;
  margin: 0 auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* ============ TESTIMONIOS MARQUEE (FONDO BLANCO / MOVIMIENTO DERECHA) ============ */
.testimonials {
  padding: 110px 0;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.testimonials .section-head {
  padding: 0 24px;
}

.testimonials .eyebrow {
  color: var(--orange);
}

.testimonials .section-head h2 {
  color: #0f0f11;
}

.testimonials .section-sub {
  color: #555558;
}

.testi-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  padding: 24px 0;
}

.testi-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: moveRight 65s linear infinite !important;
}

.testi-marquee:hover .testi-marquee-track {
  animation-play-state: paused !important;
}

@keyframes moveRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.testi-card-item {
  width: 380px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testi-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 16px 36px rgba(255, 106, 0, 0.2);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #e64a00);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
}

.testi-author-info h4 {
  color: #0f0f11;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 4px;
}

.testi-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #ffb703;
  font-size: 0.8rem;
}

.testi-tag {
  margin-left: 8px;
  color: #66666a;
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.testi-tag i {
  color: #4285f4;
}

.testi-text {
  color: #444448;
  font-size: 0.93rem;
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
}

/* ============ CTA FINAL ============ */
.cta-final {
  position: relative;
  text-align: center;
  padding: 120px 24px;
  background: #ffffff;
  overflow: hidden;
  border-bottom: none;
}

.cta-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 106, 0, .15), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-final .eyebrow {
  position: relative;
  color: var(--orange);
}

.cta-final h2 {
  position: relative;
  color: #0f0f11;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-bottom: 16px;
}

.cta-final p {
  position: relative;
  color: #555558;
  max-width: 520px;
  margin: 0 auto 34px;
  font-size: 1.05rem;
  font-weight: 500;
}

.cta-final .btn {
  position: relative;
}

/* ============ FOOTER MINIMAL (GRADIENTE DE BLANCO A NARANJA) ============ */
.footer-minimal {
  background: linear-gradient(180deg, #ffffff 0%, #ffe0cc 35%, #ff6a00 80%, #d84700 100%);
  color: #000000;
  padding: 100px 36px 40px;
  position: relative;
  overflow: hidden;
  border-top: none;
}

.footer-minimal-container {
  max-width: 1380px;
  margin: 0 auto;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 2fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 60px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #555558;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-nav-col a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #000000;
  text-transform: uppercase;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-nav-col a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-social-inline {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-social-inline a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #000000;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}

.footer-social-inline a:hover {
  color: var(--orange);
}

.footer-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1.5px solid rgba(0, 0, 0, 0.16);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #000000;
  text-transform: uppercase;
}

.meta-right {
  display: flex;
  gap: 28px;
}

.footer-giant-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 8.8vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -3px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  margin-top: 40px;
  user-select: none;
  opacity: 0.98;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* ============ RESPONSIVE COMPLETO PARA MÓVIL Y TABLET ============ */
@media (max-width: 980px) {
  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .footer-social-inline {
    justify-content: flex-start;
    grid-column: span 2;
  }

  .brands-grid {
    gap: 14px;
  }

  .brand-tile {
    width: 145px;
    height: 85px;
    padding: 14px 16px;
  }

  .brand-tile img {
    height: 32px;
    max-width: 105px;
  }
}

@media (max-width: 760px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 24px 40px;
    gap: 24px;
    z-index: 450;
  }

  .nav-links.open a {
    color: var(--white);
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .hero {
    height: auto;
    min-height: 520px;
    padding: 110px 20px 60px;
  }

  .hero-media img {
    object-position: right center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.7rem);
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .buscar-compatibilidad {
    padding: 70px 16px 50px;
  }

  .search-box {
    padding: 24px 18px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  }

  .search-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .search-box .field {
    flex: 1 1 100%;
  }

  .input-wrapper input {
    font-size: 0.95rem;
    padding: 14px 40px 14px 14px;
    border-radius: 10px;
  }

  .search-box .search-btn {
    width: 100%;
    height: 52px;
    justify-content: center;
    padding: 0 20px;
    font-size: 0.9rem;
    margin-top: 4px;
  }

  .search-features-row {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    padding-top: 18px;
  }

  .search-feat {
    font-size: 0.8rem;
    text-align: center;
  }

  .feat-sep {
    display: none;
  }

  .result-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    border-radius: 14px;
  }

  .result-card i {
    font-size: 2rem;
    margin-top: 0;
  }

  .result-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 14px !important;
  }

  .services {
    padding: 80px 18px;
  }

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

  .service-card {
    padding: 26px 20px;
  }

  .testi-card-item {
    width: 310px;
    padding: 22px 18px;
  }

  .testi-text {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .cta-final {
    padding: 80px 20px;
  }

  .cta-final h2 {
    font-size: clamp(1.65rem, 6vw, 2.5rem);
  }

  .cta-final p {
    font-size: 0.95rem;
  }

  .cta-final .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .footer-minimal {
    padding: 70px 20px 30px;
  }

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

  .footer-social-inline {
    grid-column: span 1;
    justify-content: flex-start;
    gap: 18px;
  }

  .footer-meta-row {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .meta-right {
    justify-content: center;
  }

  .footer-giant-title {
    font-size: clamp(1.9rem, 8.2vw, 5.5rem);
    margin-top: 30px;
    letter-spacing: -1.5px;
  }
}

@media (max-width: 380px) {
  .brand-tile {
    width: 130px;
    height: 78px;
  }

  .testi-card-item {
    width: 275px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============ WHATSAPP FLOTANTE ============ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none !important;
}

.wa-float:hover {
  transform: scale(1.1);
  color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.6), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.wa-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid #25D366;
  animation: ping 2s ease-out infinite;
  pointer-events: none;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .wa-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    font-size: 1.65rem;
  }
}