/* ===== INTERFLOT DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --black: #0B0D10;
  --black-light: #12151a;
  --black-card: #161a22;
  --silver: #C0C0C0;
  --silver-light: #e0e0e0;
  --red: #E30613;
  --red-dark: #b8050f;
  --red-glow: rgba(227,6,19,0.3);
  --gray: #888;
  --gray-dark: #444;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--black);
}

body {
  background: var(--black);
  color: #fff;
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--red); color: #fff; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed; top:0; left:0; width:8px; height:8px;
  background: var(--red); border-radius:50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top:0; left:0; width:40px; height:40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width 0.4s var(--transition), height 0.4s var(--transition),
              border-color 0.3s, background 0.3s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--red);
  background: rgba(227,6,19,0.08);
}
.cursor-ripple {
  position: fixed; pointer-events: none; z-index: 99997;
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transform: translate(-50%,-50%) scale(0);
  animation: rippleOut 0.8s ease-out forwards;
}
@keyframes rippleOut {
  to { transform: translate(-50%,-50%) scale(4); opacity: 0; }
}

/* ===== LOADING SCREEN ===== */
#loading {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#loading.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loading canvas { max-width: 300px; max-height: 300px; }
.loading-text {
  font-family: var(--font-heading);
  font-size: 0.9rem; letter-spacing: 6px; color: var(--gray);
  margin-top: 30px; text-transform: uppercase;
}
.loading-bar {
  width: 200px; height: 2px; background: var(--gray-dark);
  margin-top: 15px; border-radius: 2px; overflow: hidden;
}
.loading-bar-fill {
  width: 0%; height: 100%; background: var(--red);
  transition: width 0.3s ease;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(11,13,16,0.9);
  backdrop-filter: blur(20px);
  padding: 12px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo img { height: 80px; transition: height 0.3s; }
.nav.scrolled .nav-logo img { height: 50px; }
.nav-menu-btn {
  display: flex; flex-direction: column; gap: 6px;
  cursor: pointer; padding: 10px; background: none; border: none;
}
.nav-menu-btn span {
  display: block; width: 30px; height: 2px;
  background: #fff; transition: 0.4s var(--transition);
}
.nav-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ===== FULLSCREEN MENU ===== */
.menu-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(11,13,16,0.95);
  backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.menu-overlay.active { opacity: 1; visibility: visible; }
.menu-overlay .menu-bg-video {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; opacity: 0;
  transition: opacity 0.6s ease;
}
.menu-overlay .menu-bg-video.active { opacity: 0.25; }
.menu-overlay .menu-bg-video video,
.menu-overlay .menu-bg-video img {
  width: 100%; height: 100%; object-fit: cover;
}
.menu-list {
  position: relative; z-index: 2;
  list-style: none; text-align: center;
}
.menu-list li {
  overflow: hidden;
  transform: translateY(60px); opacity: 0;
  transition: transform 0.6s var(--transition), opacity 0.5s;
}
.menu-overlay.active .menu-list li {
  transform: translateY(0); opacity: 1;
}
.menu-overlay.active .menu-list li:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-list li:nth-child(2) { transition-delay: 0.15s; }
.menu-overlay.active .menu-list li:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.active .menu-list li:nth-child(4) { transition-delay: 0.25s; }
.menu-overlay.active .menu-list li:nth-child(5) { transition-delay: 0.3s; }
.menu-overlay.active .menu-list li:nth-child(6) { transition-delay: 0.35s; }
.menu-list a {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700; color: #fff; text-decoration: none;
  display: inline-block; padding: 8px 0;
  transition: color 0.3s, transform 0.3s;
  line-height: 1.2;
}
.menu-list a:hover { color: var(--red); transform: translateX(20px); }
.menu-list .menu-number {
  font-size: 0.8rem; color: var(--red); font-weight: 400;
  letter-spacing: 2px; margin-right: 12px; vertical-align: super;
}

/* ===== HERO SECTION — Scroll-controlled 360° ===== */
#hero {
  position: relative;
  /* Scroll-track: 2 giros completos de la moto */
  /* Video all-intra = seeking instantáneo, sin brincos */
  height: 3000px;
  background: #000;
}

/* Capa sticky que se queda fija mientras scrolleas */
#hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video de fondo — cubre TODA la pantalla sin bordes */
#hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
  will-change: transform;
  background: #000;
  /* GPU compositing — elimina flicker en seeks */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


/* Canvas WebGL — ENCIMA del video, transparente, solo las ondas */
#hero-canvas {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: auto;
}

.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 20px;
}
.hero-logo {
  width: clamp(200px, 30vw, 400px);
  margin-bottom: 30px;
  filter: drop-shadow(0 0 60px rgba(192,192,192,0.2));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.hero-logo-3d {
  width: clamp(280px, 35vw, 450px);
  height: clamp(200px, 25vw, 320px);
  margin: 0 auto 30px;
  position: relative;
}
.hero-logo-3d canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.hero-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 8px; text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-title .text-white { color: #fff; }
.hero-title .text-red { color: var(--red); }

/* Efecto Metálico 3D para Títulos */
.text-metal-silver {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #cccccc 35%,
    #737373 50%,
    #e6e6e6 52%,
    #ffffff 80%,
    #666666 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  /* Reemplaza el color base y text-shadow del contenedor original */
  filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.6));
}
.text-metal-silver::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 6px rgba(0,0,0,0.6);
}

.text-metal-red {
  background: linear-gradient(
    to bottom,
    #ff9999 0%,
    #e60000 35%,
    #800000 50%,
    #ff1a1a 52%,
    #ff6666 80%,
    #4d0000 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.6));
}
.text-metal-red::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 6px rgba(0,0,0,0.6);
}

.text-metal-green {
  background: linear-gradient(
    to bottom,
    #99ff99 0%,
    #00cc00 35%,
    #006600 50%,
    #00e600 52%,
    #66ff66 80%,
    #004d00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.4));
}
.text-metal-green::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5), 0px 2px 5px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  letter-spacing: 4px; color: var(--gray);
  text-transform: uppercase; margin-bottom: 8px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.hero-tagline {
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  color: var(--red); letter-spacing: 3px;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== SCROLL PROMPT ===== */
#hero-scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#hero-scroll-prompt span {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 0;
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.4s var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: #fff; transform: translateX(-101%);
  transition: transform 0.4s var(--transition);
  z-index: 0;
}
.btn:hover::after { transform: translateX(0); }
.btn span { position: relative; z-index: 1; }
.btn-primary {
  background: var(--red); color: #fff; border: 2px solid var(--red);
}
.btn-primary:hover { color: var(--red); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { color: var(--black); border-color: #fff; }

/* ── Tracker App Button ── */
.btn-tracker {
  background: rgba(0, 150, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(0, 150, 255, 0.35);
  gap: 10px;
}
.btn-tracker::after { background: rgba(0, 150, 255, 0.15); }
.btn-tracker:hover { color: #fff; border-color: rgba(0, 150, 255, 0.7); }
.btn-tracker-dot {
  width: 8px; height: 8px; min-width: 8px;
  border-radius: 50%;
  background: #0096ff;
  box-shadow: 0 0 8px #0096ff;
  animation: trackerPulse 1.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes trackerPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px #0096ff; }
  50%       { opacity: 0.6; transform: scale(1.4); box-shadow: 0 0 14px #0096ff; }
}

/* ── Wrapper para centrar el neón del tracker ── */
.tracker-btn-wrapper {
  position: relative;
  display: inline-block;
}

/* ── Patrol Ambient Glow (reflejo de luces como neón por debajo) ── */
.patrol-ambient-glow {
  position: absolute;
  bottom: -3px;
  left: 15px;
  right: 15px;
  height: 1px;
  background: transparent;
  filter: blur(4px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
  animation: ambientPoliceStrobe 1.6s ease-in-out infinite;
}

@keyframes ambientPoliceStrobe {
  0%, 19%, 100% {
    background: #0066ff;
    box-shadow: 0 0 6px 2px rgba(0, 102, 255, 0.5),
                0 0 12px 4px rgba(0, 102, 255, 0.2);
  }
  20%, 39% {
    background: transparent;
    box-shadow: none;
  }
  40%, 59% {
    background: #e30613;
    box-shadow: 0 0 6px 2px rgba(227, 6, 19, 0.5),
                0 0 12px 4px rgba(227, 6, 19, 0.2);
  }
  60%, 79% {
    background: transparent;
    box-shadow: none;
  }
  80%, 99% {
    background: #0066ff;
    box-shadow: 0 0 6px 2px rgba(0, 102, 255, 0.5),
                0 0 12px 4px rgba(0, 102, 255, 0.2);
  }
}

/* ===== SECTION COMMON ===== */
.section {
  position: relative; padding: 120px 40px;
  max-width: 1400px; margin: 0 auto;
}
.section-label {
  font-size: 0.75rem; letter-spacing: 5px; color: var(--red);
  text-transform: uppercase; font-weight: 600; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, var(--silver));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-desc {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--gray); max-width: 600px;
}
.divider {
  width: 60px; height: 3px;
  background: var(--red); margin: 30px 0;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px; margin-top: 60px;
}
.service-card {
  position: relative; background: var(--black-card);
  padding: 50px 35px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.5s var(--transition);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: var(--black-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.service-icon {
  font-size: 2.2rem; margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.3rem;
  font-weight: 600; margin-bottom: 12px;
  transition: color 0.3s;
}
.service-card:hover h3 { color: var(--red); }
.service-card p {
  font-size: 0.9rem; color: var(--gray);
  line-height: 1.7;
}
.service-card .service-count {
  position: absolute; top: 20px; right: 25px;
  font-family: var(--font-heading); font-size: 3rem;
  font-weight: 800; color: rgba(255,255,255,0.03);
  line-height: 1;
}

/* ===== SHOWCASE SECTION ===== */
.showcase {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.showcase-bg {
  position: absolute; inset: 0; z-index: 0;
}
.showcase-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.3; filter: grayscale(40%);
  transition: opacity 0.5s, filter 0.5s;
}
.showcase:hover .showcase-bg img {
  opacity: 0.5; filter: grayscale(0%);
}
.showcase-content {
  position: relative; z-index: 2;
  padding: 80px 60px; max-width: 600px;
}
.showcase-content .badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(227,6,19,0.15);
  border: 1px solid rgba(227,6,19,0.3);
  color: var(--red); font-size: 0.75rem;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px;
}
.showcase-stats {
  display: flex; gap: 40px; margin-top: 30px;
}
.showcase-stat h4 {
  font-family: var(--font-heading); font-size: 2.5rem;
  font-weight: 800; color: var(--red);
}
.showcase-stat span {
  font-size: 0.8rem; color: var(--gray);
  text-transform: uppercase; letter-spacing: 2px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4px; margin-top: 50px;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s var(--transition);
}
.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(11,13,16,0.8));
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 25px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1rem; font-weight: 600; }
.gallery-overlay p { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

/* ===== STATS / CLIENTS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; margin: 60px 0;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; color: var(--red);
  line-height: 1;
}
.stat-item p {
  font-size: 0.8rem; color: var(--gray);
  text-transform: uppercase; letter-spacing: 3px;
  margin-top: 8px;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
  position: relative;
  /* Mask edges for a fade out effect */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.marquee-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  opacity: 0.5;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-track span {
  font-family: var(--font-heading); font-size: 0.9rem;
  font-weight: 600; letter-spacing: 2px; color: var(--silver);
  text-transform: uppercase; white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 30px)); }
}

/* ===== SHOWCASE ===== */
.showcase-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}
.showcase-display {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}
.showcase-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.5s ease-in-out;
}
.showcase-display.fading img {
  opacity: 0;
}
.showcase-display::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
  pointer-events: none;
}
.showcase-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 2;
}
.showcase-info h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #fff;
  margin: 0 0 10px 0;
}
.showcase-info p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0;
}
.showcase-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}
.showcase-tab {
  background: none;
  border: none;
  color: var(--gray);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s;
}
.showcase-tab:hover {
  color: #fff;
}
.showcase-tab.active {
  color: var(--red);
}
.showcase-tab.active::after {
  content: '';
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
}

@media (max-width: 768px) {
  .showcase-tabs { flex-direction: column; border-bottom: none; gap: 10px; }
  .showcase-tab.active::after { display: none; }
  .showcase-info { bottom: 20px; left: 20px; right: 20px; }
  .showcase-info h3 { font-size: 1.8rem; }
  .showcase-display { height: 40vh; }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-top: 50px;
}
.about-values {
  display: grid; gap: 30px; margin-top: 40px;
}
.value-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.value-dot {
  width: 10px; height: 10px; min-width: 10px;
  background: var(--red); margin-top: 6px;
}
.value-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.value-item p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== CONTACT ===== */
#contact {
  background: linear-gradient(180deg, var(--black), var(--black-light));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 50px;
}
.contact-form { display: grid; gap: 20px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff; font-family: var(--font-body);
  font-size: 0.95rem; transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group label {
  display: block; font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 8px;
}
.contact-info { display: grid; gap: 35px; align-content: start; }
.contact-item h4 {
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 8px;
}
.contact-item p { color: var(--silver); font-size: 1rem; line-height: 1.6; }
.contact-item a { color: var(--silver); text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--red); }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px; background: #25D366;
  color: #fff; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 1px; text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.whatsapp-btn:hover { background: #1fb855; transform: translateY(-2px); }

/* ===== FOOTER PREMIUM ===== */
.footer-premium {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 5% 30px;
  position: relative;
  overflow: hidden;
}
.footer-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(227,6,19,0.03), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}
.brand-col p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-rfc {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #555 !important;
  margin-top: 20px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.links-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.links-col li {
  margin-bottom: 12px;
}
.links-col a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}
.links-col a:hover {
  color: var(--red);
}
.contact-col p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.contact-col a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-col a:hover {
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  text-align: center;
  color: #555;
  font-size: 0.85rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-premium {
    padding: 60px 20px 20px;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s var(--transition);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  .nav { padding: 15px 20px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase-content { padding: 40px 20px; }
  .hero-cta { flex-direction: column; align-items: center; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .services-grid { grid-template-columns: 1fr; }
}
