/* ============================================================
   LUBRICANTES GYG — Landing Page
   Paleta: Azul oscuro corporativo + Rojo accent
   Tipografía: Bebas Neue (display) + Inter (body)
   ============================================================ */

:root {
  --blue-dark:    #12196b;
  --blue-medium:  #1a237e;
  --blue-light:   #283593;
  --blue-grad:    linear-gradient(135deg, #0d1459 0%, #1a237e 50%, #283593 100%);
  --red:          #CC0000;
  --red-hover:    #AA0000;
  --white:        #FFFFFF;
  --off-white:    #F4F6FB;
  --gray-light:   #E8ECF4;
  --gray-mid:     #94A3B8;
  --gray-text:    #64748B;
  --dark:         #0A1040;
  --font-display: 'Bebas Neue', cursive;
  --font-body:    'Inter', sans-serif;
  --shadow-sm:    0 2px 8px rgba(10, 16, 64, 0.08);
  --shadow-md:    0 8px 32px rgba(10, 16, 64, 0.12);
  --shadow-lg:    0 20px 60px rgba(10, 16, 64, 0.18);
  --shadow-red:   0 8px 32px rgba(204, 0, 0, 0.3);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --max-width:    1200px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h:     72px;
}

/* ======== RESET & BASE ======== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-h); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ======== UTILITIES ======== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.text-red { color: var(--red); }

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-hover);
  box-shadow: 0 12px 40px rgba(204, 0, 0, 0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-large { padding: 18px 40px; font-size: 17px; }
.btn-sm    { padding: 10px 18px; font-size: 14px; }

/* ======== SECTION COMMONS ======== */
.section-header { text-align: center; margin-bottom: 72px; }

.eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.eyebrow-wrap--left { justify-content: flex-start; margin-bottom: 12px; }

.eyebrow-line {
  display: block;
  flex: 1;
  max-width: 48px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
}
.section-eyebrow.light { color: rgba(204, 0, 0, 0.9); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-top: 4px;
}
.section-subtitle.light { color: rgba(255,255,255,0.5); }

/* ======== LOGO IMAGEN ======== */
.logo-img       { height: 40px; width: auto; object-fit: contain; flex-shrink: 0; }
.hero-logo-img  { height: 100px; width: auto; object-fit: contain; margin: 0 auto; filter: drop-shadow(0 8px 24px rgba(204,0,0,0.35)); }
.footer-logo-img{ height: 36px; width: auto; object-fit: contain; flex-shrink: 0; }

/* ======== ANIMATIONS ======== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.75s; }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--navbar-h) + 40px) 24px 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--blue-grad);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(204,0,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-logo { margin-bottom: 28px; min-height: 100px; }
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 108px);
  font-weight: 400; line-height: 0.95;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 3px; margin-bottom: 8px;
}
.hero-title .line-inter {
  display: block; font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 300; letter-spacing: 6px;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 6px; line-height: 1.2;
}
.hero-title .line-big {
  display: block;
  font-size: clamp(64px, 11vw, 120px);
  line-height: 0.9; letter-spacing: 4px;
}
.hero-title .line-medium {
  display: block; font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300; letter-spacing: 2px;
  color: rgba(255,255,255,0.75); text-transform: none;
  margin-top: 14px; line-height: 1.4;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: rgba(255,255,255,0.78);
  max-width: 600px; margin: 28px auto 44px; line-height: 1.8;
}
.hero-actions {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 52px;
}
.hero-slogan {
  font-family: var(--font-display); font-size: 13px;
  font-weight: 700; letter-spacing: 4px;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
}
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 1;
}
.hero-scroll-indicator span {
  display: block; width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; position: relative;
}
.hero-scroll-indicator span::after {
  content: ''; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 8px;
  background: rgba(255,255,255,0.6); border-radius: 2px;
  animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%       { transform: translateX(-50%) translateY(14px); opacity: 0.2; }
}

/* ======== STATS BAR ======== */
.stats-bar {
  background: var(--dark); padding: 52px 0;
  border-top: 3px solid var(--red);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item { padding: 8px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900; color: var(--white); display: inline; line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900; color: var(--red); line-height: 1;
}
.stat-label {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.55); margin-top: 8px; letter-spacing: 0.5px;
}

/* ======== WHY GYG ======== */
.why-section { padding: 112px 0; background: var(--off-white); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.pillar-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 44px 36px; box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent; transition: var(--transition);
}
.pillar-card:hover {
  border-top-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px);
}
.pillar-icon {
  width: 64px; height: 64px; background: var(--off-white);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; margin-bottom: 28px; color: var(--blue-medium);
  transition: var(--transition);
}
.pillar-card:hover .pillar-icon { background: var(--red); color: var(--white); }
.pillar-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 400;
  color: var(--dark); text-transform: uppercase; margin-bottom: 14px; letter-spacing: 2px;
}
.pillar-text { font-size: 15px; color: var(--gray-text); line-height: 1.8; }

/* ======== TRANSPORTADORES ======== */
.transporter-section { position: relative; padding: 112px 0; overflow: hidden; }
.transporter-bg {
  position: absolute; inset: 0; background: var(--blue-grad); z-index: 0;
}
.transporter-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(204,0,0,0.12) 0%, transparent 60%);
}
.transporter-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center;
}
.transporter-text .section-title { margin-bottom: 6px; }
.transporter-text .section-subtitle { margin-bottom: 32px; }
.transporter-body {
  font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.8; margin-bottom: 24px;
}
.transporter-body strong { color: var(--white); font-weight: 600; }
.transporter-list {
  margin: 8px 0 44px; display: flex; flex-direction: column; gap: 16px;
}
.transporter-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; color: rgba(255,255,255,0.88); font-weight: 500;
}
.transporter-visual { display: flex; justify-content: center; }
.visual-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 48px 40px; text-align: center;
  backdrop-filter: blur(8px); max-width: 340px;
}
.visual-icon-big { width: 160px; height: 160px; margin: 0 auto 36px; }
.visual-icon-big svg { width: 100%; height: 100%; }
.visual-quote {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--white); line-height: 1.5; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.3px;
}

/* ======== SERVICIOS ======== */
.services-section { padding: 112px 0; background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 40px 32px; transition: var(--transition);
  border: 2px solid transparent; position: relative;
  overflow: hidden; display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.service-card:hover { border-color: var(--gray-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; background: var(--blue-medium);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; color: var(--white); margin-bottom: 24px;
  transition: var(--transition); flex-shrink: 0;
}
.service-card:hover .service-icon { background: var(--red); }

.service-name {
  font-family: var(--font-display); font-size: 24px; font-weight: 400;
  color: var(--dark); text-transform: uppercase; margin-bottom: 12px;
  letter-spacing: 2px; line-height: 1.1;
}
.service-desc {
  font-size: 14px; color: var(--gray-text); line-height: 1.75;
  margin-bottom: 16px; flex: 1;
}
.service-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--blue-medium);
  background: rgba(26, 35, 126, 0.08); padding: 4px 10px; border-radius: 4px;
  margin-bottom: 16px; align-self: flex-start;
}

/* Botón Ver imágenes en service-card */
.btn-gallery {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--blue-medium); background: transparent;
  border: 1.5px solid rgba(26, 35, 126, 0.25);
  padding: 8px 16px; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
  align-self: flex-start; margin-top: auto;
}
.btn-gallery:hover {
  background: var(--blue-medium); color: var(--white);
  border-color: var(--blue-medium); transform: translateY(-1px);
}
.service-card:hover .btn-gallery {
  border-color: var(--red); color: var(--red);
}
.service-card:hover .btn-gallery:hover {
  background: var(--red); color: var(--white); border-color: var(--red);
}

.service-cta {
  background: var(--dark); display: flex;
  align-items: center; justify-content: center;
}
.service-cta-inner { text-align: center; }
.service-cta-text { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.service-cta-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--white); text-transform: uppercase; margin-bottom: 28px; letter-spacing: 1px;
}

/* ======== BENEFICIOS ======== */
.benefits-section { padding: 112px 0; background: var(--off-white); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 48px; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; }
.benefit-icon {
  width: 48px; height: 48px; background: var(--red);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; color: var(--white); flex-shrink: 0;
}
.benefit-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  color: var(--dark); text-transform: uppercase; margin-bottom: 8px;
  letter-spacing: 1.5px; line-height: 1.1;
}
.benefit-desc { font-size: 14px; color: var(--gray-text); line-height: 1.75; }

/* ======== TESTIMONIALS ======== */
.testimonials-section { padding: 112px 0; background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px;
}
.testimonial-card {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 40px 32px; transition: var(--transition); border-left: 4px solid var(--red);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-text { font-size: 15px; color: var(--dark); line-height: 1.8; font-style: italic; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue-medium);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 600; color: var(--dark); }
.author-role  { font-size: 13px; color: var(--gray-mid); margin-top: 2px; }
.testimonials-disclaimer { text-align: center; font-size: 12px; color: var(--gray-mid); }

/* ======== FAQ ======== */
.faq-section { padding: 112px 0; background: var(--off-white); }
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; padding: 24px 28px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--dark); text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--blue-medium); }
.faq-question[aria-expanded="true"] { color: var(--red); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--red); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s ease; color: var(--gray-mid); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 28px 28px; font-size: 15px; color: var(--gray-text); line-height: 1.8; }

/* ======== PROMO SECTION: 10 + 1 GRATIS ======== */
.promo-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.promo-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, #06093d 0%, #0d1459 40%, #1a0a0a 100%);
}
.promo-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(204,0,0,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(204,0,0,0.10) 0%, transparent 50%);
}

.promo-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 80px; align-items: center;
}

/* Promo Left */
.promo-left { }
.promo-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400; line-height: 1.0;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 3px; margin-bottom: 12px;
}
.promo-num {
  color: var(--red);
  font-size: clamp(80px, 14vw, 140px);
  line-height: 0.85;
  display: inline-block;
  text-shadow: 0 0 60px rgba(204,0,0,0.4);
}
.promo-offer-block {
  display: flex; align-items: baseline; gap: 12px;
  margin: 12px 0 28px;
}
.promo-offer-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: rgba(255,255,255,0.75);
  text-transform: uppercase; letter-spacing: 2px;
}
.promo-11 {
  color: var(--white); font-style: normal;
}
.promo-free-word {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 84px);
  color: var(--red); line-height: 1;
  letter-spacing: 4px;
  text-shadow: 0 0 40px rgba(204,0,0,0.5);
  animation: pulseFree 2.5s ease-in-out infinite;
}
@keyframes pulseFree {
  0%, 100% { text-shadow: 0 0 40px rgba(204,0,0,0.5); }
  50%       { text-shadow: 0 0 80px rgba(204,0,0,0.8), 0 0 20px rgba(204,0,0,0.6); }
}

.promo-desc {
  font-size: 17px; color: rgba(255,255,255,0.72);
  line-height: 1.8; max-width: 480px; margin-bottom: 36px;
}
.promo-cta { margin-bottom: 28px; }

/* Terms & Conditions collapsible */
.promo-terms {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.terms-summary {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; cursor: pointer;
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); list-style: none;
  transition: color 0.2s ease;
}
.terms-summary:hover { color: rgba(255,255,255,0.8); }
.terms-summary::-webkit-details-marker { display: none; }
.promo-terms[open] .terms-summary { color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.08); }
.terms-list {
  padding: 16px 18px; display: flex; flex-direction: column; gap: 8px;
}
.terms-list li {
  font-size: 13px; color: rgba(255,255,255,0.5);
  padding-left: 16px; position: relative; line-height: 1.6;
}
.terms-list li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--red); font-weight: 700;
}

/* Promo Right - Loyalty Card */
.promo-right { position: relative; }

.loyalty-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F0F4FF 100%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative; z-index: 2;
}
.loyalty-card-top {
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px;
}
.loyalty-badge-text {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gray-text);
}
.loyalty-brand-text {
  font-family: var(--font-display); font-size: 22px;
  color: var(--dark); letter-spacing: 2px;
}
.loyalty-instruction {
  font-size: 12px; color: var(--gray-mid); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.loyalty-stamps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 20px;
}
.stamp {
  width: 100%; aspect-ratio: 1;
  border-radius: 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; font-size: 9px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: transform 0.2s ease;
}
.stamp:hover { transform: scale(1.05); }

.stamp-done {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(26,35,126,0.35);
  border: 2px solid rgba(255,255,255,0.15);
}
.stamp-free {
  background: linear-gradient(135deg, #CC0000 0%, #e53935 100%);
  color: var(--white);
  grid-column: span 2;
  aspect-ratio: auto; padding: 14px 8px;
  box-shadow: 0 4px 20px rgba(204,0,0,0.45);
  border: 2px solid rgba(255,255,255,0.2);
  font-size: 11px; letter-spacing: 2px;
  flex-direction: row; gap: 8px;
}
.loyalty-card-footer {
  text-align: center; font-size: 12px;
  color: var(--gray-text); border-top: 1px solid var(--gray-light); padding-top: 16px;
}
.loyalty-card-footer strong { color: var(--red); }

/* Imágenes flotantes decorativas */
.promo-floats {
  position: absolute;
  inset: 0; pointer-events: none;
  z-index: 1;
}
.promo-float {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.1);
}
.promo-float img { width: 100%; height: 100%; object-fit: cover; display: block; }

.promo-float-1 {
  width: 140px; height: 100px;
  top: -40px; right: -20px;
  transform: rotate(4deg);
}
.promo-float-2 {
  width: 110px; height: 80px;
  bottom: 20px; right: -30px;
  transform: rotate(-3deg);
}
.promo-float-3 {
  width: 120px; height: 90px;
  bottom: -30px; left: -20px;
  transform: rotate(5deg);
}

/* ======== CTA FINAL ======== */
.cta-final-section { position: relative; padding: 112px 0; overflow: hidden; text-align: center; }
.cta-final-bg { position: absolute; inset: 0; background: var(--blue-grad); z-index: 0; }
.cta-final-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(204,0,0,0.15) 0%, transparent 65%);
}
.cta-final-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 400; color: var(--white);
  text-transform: uppercase; line-height: 1.0;
  margin-bottom: 24px; letter-spacing: 3px;
}
.cta-final-sub {
  font-size: 17px; color: rgba(255,255,255,0.75);
  max-width: 520px; margin: 0 auto 44px; line-height: 1.8;
}
.cta-final-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.45); letter-spacing: 1px; }

/* ======== FOOTER ======== */
.footer {
  background: var(--dark);
  padding: 0 0 0;
  border-top: 3px solid var(--red);
}

/* Sedes bar */
.footer-sedes {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
  max-width: var(--max-width); margin: 0 auto;
}
.footer-sedes-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
}
.footer-sedes-grid {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
}
.footer-sede-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px; border-radius: var(--radius-sm);
  transition: background 0.2s ease; flex: 1; min-width: 240px;
}
.footer-sede-card:hover { background: rgba(255,255,255,0.04); }
.sede-pin {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(204,0,0,0.15); border: 1px solid rgba(204,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.sede-info { display: flex; flex-direction: column; gap: 2px; }
.sede-name { font-size: 15px; font-weight: 600; color: var(--white); }
.sede-address { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-sedes-divider {
  width: 1px; height: 48px; background: rgba(255,255,255,0.1);
  flex-shrink: 0; margin: 0 8px;
}

.footer-top {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 56px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand-name {
  display: block; font-family: var(--font-display); font-size: 18px;
  font-weight: 800; color: var(--white); letter-spacing: 1px;
}
.footer-slogan {
  display: block; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 3px;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 300px; }
.footer-col-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.6); margin-bottom: 20px;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s ease; }
.footer-list a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding: 24px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-tagline {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.2);
}

/* ======== BOTÓN FLOTANTE WHATSAPP ======== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 16px 22px 16px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
  transform: translateY(-3px);
}
.whatsapp-float-label {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.4s ease, opacity 0.3s ease;
}
.whatsapp-float:hover .whatsapp-float-label { max-width: 120px; opacity: 1; }

/* ======== MODAL GALERÍA ======== */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.gallery-modal.open { display: flex; }

.gallery-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.gallery-modal-inner {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 820px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.gallery-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--gray-light);
  position: sticky; top: 0; background: var(--white); z-index: 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.gallery-modal-title {
  font-family: var(--font-display); font-size: 26px;
  color: var(--dark); text-transform: uppercase; letter-spacing: 2px;
}
.gallery-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  color: var(--dark); cursor: pointer; transition: var(--transition); flex-shrink: 0;
  border: none;
}
.gallery-close:hover { background: var(--red); color: var(--white); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; padding: 20px 28px 28px;
}
.gallery-img-wrap {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; background: var(--off-white);
}
.gallery-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease; display: block;
}
.gallery-img-wrap:hover img { transform: scale(1.05); }

/* ======== BANNER DOMICILIO ======== */
.domicilio-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.domicilio-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #060830 0%, #0d1459 45%, #1a0505 100%);
}
.domicilio-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(204,0,0,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(26,35,126,0.3) 0%, transparent 50%);
}

.domicilio-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}

/* ---- Video / Media ---- */
.domicilio-media { position: relative; }

.domicilio-video-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
}
.domicilio-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.domicilio-video-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,16,64,0.4) 0%, transparent 40%);
  pointer-events: none;
}

/* Badge flotante de cobertura */
.domicilio-badge {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 24px rgba(204,0,0,0.5);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(204,0,0,0.5); }
  50%       { box-shadow: 0 8px 40px rgba(204,0,0,0.8); }
}

/* ---- Texto ---- */
.domicilio-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400; line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.domicilio-highlight {
  color: var(--red);
  display: block;
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.9;
  text-shadow: 0 0 60px rgba(204,0,0,0.4);
}

.domicilio-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
}

/* Cobertura */
.domicilio-coverage { margin-bottom: 28px; }
.coverage-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.coverage-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.coverage-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: 50px;
  transition: var(--transition);
}
.coverage-tag:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.coverage-tag.coming-soon {
  background: rgba(204,0,0,0.12);
  border-color: rgba(204,0,0,0.35);
  color: var(--red);
  display: flex; align-items: center; gap: 5px;
  font-style: italic;
}

/* Lista de beneficios */
.domicilio-list {
  list-style: none; margin-bottom: 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.domicilio-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.5;
}
.domicilio-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(204,0,0,0.2);
  border: 1.5px solid var(--red);
  color: var(--red);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .transporter-content { grid-template-columns: 1fr; gap: 48px; }
  .transporter-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .promo-inner { grid-template-columns: 1fr; gap: 56px; }
  .promo-float-1, .promo-float-2, .promo-float-3 { display: none; }
  .promo-floats { display: none; }
  .promo-right { display: flex; justify-content: center; }
}

@media (max-width: 768px) {
  /* --- Navbar / hamburguesa --- */
  .nav-links {
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 24px 20px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 3px solid var(--red);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 16px; }
  .hamburger { display: flex; }
  .btn-nav { width: 100%; justify-content: center; margin-top: 8px; }

  /* --- Logo móvil --- */
  .nav-brand { font-size: 16px; letter-spacing: 1.5px; }
  .logo-img  { height: 32px; }

  /* --- Hero --- */
  .hero-title { font-size: clamp(44px, 12vw, 64px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* --- Grids --- */
  .stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pillars-grid      { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .benefits-grid     { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .footer-sedes-grid { flex-direction: column; gap: 8px; }
  .footer-sedes-divider { display: none; }
  .footer-sede-card  { min-width: 0; width: 100%; }

  /* --- Section padding --- */
  .section-header { margin-bottom: 48px; }
  .why-section, .transporter-section, .services-section,
  .benefits-section, .testimonials-section, .faq-section,
  .cta-final-section { padding: 72px 0; }
  .promo-section { padding: 72px 0; }

  /* --- Domicilio banner --- */
  .domicilio-inner { grid-template-columns: 1fr; gap: 40px; }
  .domicilio-video-wrap { max-width: 260px; aspect-ratio: 4/5; }
  .domicilio-highlight { font-size: clamp(48px, 14vw, 72px); }

  /* --- Promo --- */
  .promo-num { font-size: clamp(70px, 18vw, 100px); }
  .promo-free-word { font-size: clamp(40px, 12vw, 64px); }
  .loyalty-stamps-grid { grid-template-columns: repeat(4, 1fr); }

  /* --- Gallery --- */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 16px 20px 24px; }
  .gallery-modal-header { padding: 18px 20px 14px; }

  /* --- WhatsApp float: solo círculo, bien posicionado --- */
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
  .whatsapp-float-label { display: none; }
  .whatsapp-float:hover { transform: scale(1.08); }
}

@media (max-width: 480px) {
  .hero-title  { font-size: 40px; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 36px; }
  .container   { padding: 0 16px; }
  .btn-large   { padding: 16px 24px; font-size: 15px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .loyalty-stamps-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-offer-block { flex-direction: column; gap: 4px; }
}
