/* ============================================
   LUEZMO LOGÍSTICA — Editorial Magazine Style
   Paleta: Negro + Rojo + Blanco (distinta estructura)
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --white: #ffffff;
  --bone: #f5f2ec;
  --red: #d10009;
  --red-dark: #a30007;
  --gray: #9a9a9a;
  --gray-light: #cfcfcf;
  --gray-dark: #2a2a2a;
  --border: rgba(255,255,255,0.10);
  --ink: #17130f;
  --ink-soft: rgba(23,19,15,0.62);
  --border-light: rgba(10,10,10,0.12);

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-width: 1400px;
  --section-pad: clamp(56px, 7vw, 96px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ================ HEADER ================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  transition: padding 0.3s;
}
.header.scrolled { padding: 12px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  background: var(--red);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  border-radius: 6px;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.brand-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav-link::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link:hover,
.nav-link.active { color: var(--ink); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.header-cta:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.header-cta svg { width: 14px; height: 14px; }

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  justify-self: end;
}
.mobile-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 82px; left: 0; right: 0;
  background: var(--white);
  padding: 40px 32px;
  transform: translateY(-150%);
  transition: transform 0.4s;
  z-index: 99;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu .nav-link {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.mobile-menu .header-cta {
  display: inline-flex;
  margin-top: 30px;
}

/* ================ HERO ================ */
.hero {
  height: 100vh;
  height: 100svh;
  padding: 110px 0 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0.78));
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  width: 100%;
  text-align: center;
}

.hero-left {
  max-width: 720px;
  margin: 0 auto;
}

.hero-issue {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-issue::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--red);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.hero h1 .thin {
  font-weight: 300;
  color: var(--gray-light);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 18px 34px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  border-radius: 100px;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

.hero-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 36px;
}

/* ================ MARQUEE ================ */
.marquee {
  background: var(--red);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--red-dark);
  border-bottom: 1px solid var(--red-dark);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-item .dot {
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================ SECTION HEAD ================ */
section { padding: var(--section-pad) 0; }

.section-head {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: end;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.section-title em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.section-title .thin { font-weight: 300; color: var(--gray-light); }

/* ================ TIMELINE (Cómo trabajamos) ================ */
.timeline {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline-scroll {
  position: relative;
  padding: 20px 0;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.timeline-num {
  width: 88px;
  height: 88px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--red);
  background: var(--black-soft);
  transition: all 0.4s;
}
.timeline-step:hover .timeline-num {
  background: var(--red);
  color: var(--white);
  transform: scale(1.08) rotate(-5deg);
}
.timeline-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.timeline-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* ================ ABOUT ================ */
.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 640px;
}
.about-visual-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 4px;
}
.about-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 32px;
  border-radius: 4px;
  z-index: 2;
  line-height: 1;
  box-shadow: 0 20px 40px rgba(209, 0, 9, 0.3);
}
.about-visual-tag small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

.about-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.about-content h2 em { font-style: italic; color: var(--red); font-weight: 500; }

.about-content p {
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 580px;
}
.about-content p strong { color: var(--white); font-weight: 600; }

.about-signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-signature-mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
}
.about-signature-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  font-style: italic;
}
.about-signature-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ================ DIFERENCIALES (Stats gigantes) ================ */
.diferenciales {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.dif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dif-card-solo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.dif-card-solo .dif-card {
  width: 100%;
  max-width: calc(50% - 10px);
}

.dif-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  background: var(--black-card);
  transition: border-color 0.3s, transform 0.3s;
}
.dif-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.dif-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.dif-card-icon {
  width: 28px;
  height: 28px;
  color: var(--red);
  flex-shrink: 0;
}

.dif-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--red);
  flex-shrink: 0;
}

.dif-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
}
.dif-card p {
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.65;
  max-width: 560px;
}

/* ================ CTA STRIP (mid-page) ================ */
.cta-strip {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.cta-strip-text em { font-style: italic; color: var(--red); font-weight: 500; }

/* ================ SERVICES GRID ================ */
.services {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--black);
  padding: 36px 32px;
  transition: background 0.3s;
}
.service-card:hover { background: var(--black-card); }

.service-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 14px;
}

.service-card-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.service-card-desc {
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ================ REVIEWS PREMIUM ================ */
.reviews {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.reviews-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.reviews-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.reviews-title em { font-style: italic; color: var(--red); font-weight: 500; }

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border: 1px solid var(--red);
  border-radius: 100px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.reviews-badge .stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 12px;
}

.review-stage {
  position: relative;
  min-height: 330px;
  padding: 10px 0;
}

.review-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s, visibility 0.6s;
  background: var(--white);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  text-align: left;
}
.review-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.review-stars {
  color: #f5a623;
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.65;
  color: #1c1c1c;
  margin-bottom: 26px;
  letter-spacing: 0;
}

.review-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  text-align: left;
}
.review-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  margin-top: 3px;
  text-align: left;
}

.review-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.review-arrow {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--gray-light);
  display: grid;
  place-items: center;
  transition: all 0.3s;
}
.review-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.review-arrow svg { width: 20px; height: 20px; }

.review-counter {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gray);
  min-width: 70px;
}
.review-counter em {
  font-style: normal;
  color: var(--white);
  font-weight: 600;
}

/* ================ FAQ ================ */
.faq { background: var(--black-soft); border-top: 1px solid var(--border); }

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  color: var(--white);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--red); }

.faq-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gray-light);
  transition: 0.3s;
}
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 30px; }
.faq-answer p {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
}

/* ================ CTA FINAL ================ */
.cta-final {
  background-color: var(--red);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.88), rgba(209,0,9,0.75) 55%, rgba(209,0,9,0.55));
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.cta-final p {
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.95;
}
.cta-final .btn-primary {
  background: var(--white);
  color: var(--red);
}
.cta-final .btn-primary:hover { background: var(--black); color: var(--white); }
.cta-final .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.cta-final .btn-outline:hover { background: var(--white); color: var(--red); border-color: var(--white); }

/* ================ FOOTER ================ */
.footer {
  background: var(--white);
  color: var(--ink-soft);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand-mark {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.footer-brand-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-soft);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--red); }

.footer-contact-item {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.copy-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: all 0.25s;
}
.copy-btn:hover { border-color: var(--red); color: var(--red); }
.copy-btn.copied { border-color: #2ecc71; color: #2ecc71; }
.copy-btn svg { width: 13px; height: 13px; }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-bottom .credits a { color: var(--red); font-weight: 600; }

/* ================ WA FLOAT ================ */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s;
  animation: float 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ripple 2s infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes ripple {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ================ REVEAL ================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================ PAGE HERO (galeria) ================ */
.page-hero {
  padding: 180px 0 100px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(50px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--red); font-weight: 500; }
.page-hero p {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================ GALERIA ================ */
.gallery {
  padding: var(--section-pad) 0;
}
.gallery-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: all 0.3s;
}
.gallery-tab:hover { color: var(--white); border-color: var(--white); }
.gallery-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  grid-auto-rows: 240px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black-card);
  transition: transform 0.4s;
}
.gallery-item.big { grid-column: span 2; grid-row: span 2; }
.gallery-item:hover { transform: scale(0.98); }
.gallery-item video, .gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(209,0,9,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }

/* Fleet mini */
.fleet {
  padding: var(--section-pad) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fleet-card {
  background: var(--black);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s;
  border-radius: 4px;
}
.fleet-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
}
.fleet-img {
  height: 240px;
  background-size: cover;
  background-position: center;
}
.fleet-body { padding: 26px; }
.fleet-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.fleet-desc {
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.fleet-spec {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.fleet-spec-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.fleet-spec-value {
  color: var(--white);
  font-weight: 600;
}

/* ================ LIGHT (INVERTED) SECTIONS ================ */
.timeline.section-light,
.diferenciales.section-light,
.faq.section-light,
.fleet.section-light {
  background: var(--bone);
  color: var(--ink);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-light .section-title { color: var(--ink); }
.section-light .section-title .thin { color: var(--ink-soft); }

/* Timeline */
.section-light .timeline-num { background: var(--bone); }
.section-light .timeline-step:hover .timeline-num { background: var(--red); color: var(--white); }
.section-light .timeline-title { color: var(--ink); }
.section-light .timeline-text { color: var(--ink-soft); }

/* Diferenciales cards */
.section-light .dif-card {
  background: var(--white);
  border-color: var(--border-light);
}
.section-light .dif-card h3 { color: var(--ink); }
.section-light .dif-card p { color: var(--ink-soft); }

/* FAQ */
.section-light .faq-item { border-bottom: 1px solid var(--border-light); }
.section-light .faq-question { color: var(--ink); }
.section-light .faq-icon { border-color: var(--border-light); }
.section-light .faq-icon::before,
.section-light .faq-icon::after { background: var(--ink-soft); }
.section-light .faq-answer p { color: var(--ink-soft); }

/* Fleet (galería) */
.section-light .fleet-card { background: var(--white); border-color: var(--border-light); }
.section-light .fleet-name { color: var(--ink); }
.section-light .fleet-desc { color: var(--ink-soft); }
.section-light .fleet-spec { border-top: 1px solid var(--border-light); }
.section-light .fleet-spec-value { color: var(--ink); }

/* ================ RESPONSIVE ================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 480px; }
  .timeline-track { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; row-gap: 50px; }
  .timeline-track::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }
  .section-tag {
    writing-mode: horizontal-tb;
    transform: none;
    padding: 0;
  }

  .about-visual { height: 380px; }
  .about-visual-tag { font-size: 22px; padding: 16px 20px; bottom: -10px; right: -10px; }
  .timeline-track { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  .timeline-num { width: 68px; height: 68px; font-size: 24px; }

  .dif-grid { grid-template-columns: 1fr; }
  .dif-card-solo .dif-card { max-width: 100%; }

  .cta-strip-inner { flex-direction: column; text-align: center; gap: 20px; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.big { grid-column: span 2; grid-row: span 1; }
  .fleet-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-col-brand { align-items: center; }
  .footer-brand { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-col-services { display: none; }
  .footer-email { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 110px 0 40px; }
  .hero h1 { font-size: 52px; }
  .hero-desc { font-size: 15px; }
  .review-slide { padding: 28px 22px; }
  .review-text { font-size: 15px; }
  .cta-final-title { font-size: 38px; }
  .btn { padding: 16px 26px; font-size: 11px; }
}
