@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* =============================================
   PETROGOLD – Estilos globales
   ============================================= */

html {
  scroll-behavior: smooth;
}

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

:root {
  --gold: #C9A227;
  --gold-hover: #a88420;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --tab-active-bg: #f0f0f0;
  --border: #e0e0e0;
  --font: 'Manrope', sans-serif;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

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

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

/* Minimum touch target for all interactive elements */
button, a, input, select, textarea {
  min-height: 44px;
}

/* =============================================
   TOP HEADER
   ============================================= */

/* Default: white sticky header (other pages) */
.top-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(60px, 14vw, 260px);
  height: 64px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 300;
  transition: background 0.35s, box-shadow 0.35s;
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Particulares / Empresas tabs */
.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-tabs {
  display: flex;
  gap: 4px;
}

.header-tabs .tab {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.2s;
}

.header-tabs .tab.active {
  background: var(--tab-active-bg);
  color: var(--text-dark);
  font-weight: 600;
}

.header-tabs .tab:hover:not(.active) {
  background: #f7f7f7;
}

/* Right icons */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  color: var(--text-dark);
  transition: background 0.2s;
}

.icon-btn:hover {
  background: #f0f0f0;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.header-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  margin: 0 4px;
}

.tienda-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  transition: color 0.2s;
}

.tienda-link:hover {
  color: var(--gold);
}

/* Tienda Online – gold pill button (hero page) */
.tienda-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  color: #fff;
  background: var(--gold);
  padding: 9px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s;
}

.tienda-btn:hover {
  background: var(--gold-hover);
  color: #fff;
}

/* Dark button on pages with white header (non-hero) */
body:not(.hero-page) .tienda-btn {
  background: #0a1a33;
  color: #fff;
}
body:not(.hero-page) .tienda-btn:hover {
  background: #162d56;
  color: #fff;
}

/* =============================================
   MAIN NAV (inline inside header)
   ============================================= */

/* Other pages: standalone sticky nav bar */
.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  position: sticky;
  top: 64px;
  z-index: 299;
  transition: background 0.35s;
}

/* When nav is inside the header (index.html) it has no own positioning */
.top-header .main-nav {
  background: transparent;
  border-bottom: none;
  padding: 0;
  position: static;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 100%;
}

.main-nav ul li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav ul li a,
.main-nav ul li .nav-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 64px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font);
}

.main-nav ul li a:hover,
.main-nav ul li .nav-toggle:hover {
  color: var(--gold);
}

.main-nav ul li a.active {
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
}

/* Dropdown arrow */
.nav-arrow {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 100;
  border-radius: 0 0 6px 6px;
}

.dropdown li a {
  padding: 12px 20px;
  display: block;
  border-bottom: none !important;
  font-weight: 400;
}

.dropdown li a:hover {
  background: #fafafa;
  color: var(--gold);
}

.has-dropdown:hover .dropdown {
  display: block;
}

/* =============================================
   HERO SLIDER
   ============================================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: flex-start;
}

/* index.html hero: offset from fixed navbar */
.hero-slider .slide {
  padding-top: 110px;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.10) 85%, transparent 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.35) 100%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.slide-content {
  max-width: 580px;
  width: 100%;
  margin-left: clamp(60px, 14vw, 260px);
}

.slide-label {
  display: block;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.slide-title {
  font-family: var(--font);
  font-size: 41px;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 32px;
}

.slide-gold {
  color: var(--gold);
}

.slide-subtitle {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 28px;
  margin-top: -16px;
}

.slide-btn {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.slide-btn:hover {
  background: var(--gold);
  color: #fff;
}

.btn-arrow {
  font-size: 18px;
  line-height: 1;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 52px;
  left: clamp(80px, 12vw, 220px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.6);
  border-color: #fff;
}

.slider-btn.next {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.slider-counter {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-left: 8px;
}

/* =============================================
   SERVICES SECTION (photo cards)
   ============================================= */

.services-section {
  background: #fff;
  padding: 64px 40px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-label {
  display: inline-block;
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #1a2e5a;
  text-transform: uppercase;
}

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

.service-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
}

.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #1a2e5a;
  line-height: 1.3;
}

.service-title-gold {
  color: var(--gold);
}

.service-line {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.service-link {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #1a2e5a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.service-link:hover {
  color: var(--gold);
}

/* =============================================
   FEATURES SECTION
   ============================================= */

.features-section {
  background: #fff;
  padding: 80px 40px;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

.features-label {
  display: block;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.features-title {
  font-family: var(--font);
  font-size: 42px;
  font-weight: 800;
  color: #021433;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  width: 160px;
  height: 160px;
  background: #f0f2f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.feature-icon svg,
.feature-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.feature-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: #1a2e5a;
  line-height: 1.3;
  margin-bottom: 12px;
  padding-bottom: 12px;
  position: relative;
}

.feature-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin: 10px auto 0;
}

.feature-title.gold-line::after {
  background: var(--gold);
}

.feature-title.navy-line::after {
  background: #1a2e5a;
}

.feature-text {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
}

.features-cta {
  text-align: center;
}

.features-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 6px;
  transition: background 0.2s;
}

.features-btn:hover {
  background: var(--gold-hover);
  color: #fff;
}

.top-header.sticky,
.main-nav.sticky {
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* =============================================
   HERO WRAPPER + HERO PAGE OVERLAY
   ============================================= */

.hero-wrapper {
  position: relative;
  height: 720px;
  overflow: hidden;
}

/* Hero page: fixed transparent single-bar header */
.hero-page .top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.hero-page .top-header.scrolled {
  background: rgba(5, 15, 35, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

/* Hero page: no separate nav bar */
.hero-page .main-nav {
  position: static;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* White tabs when not scrolled */
.hero-page .top-header:not(.scrolled) .header-tabs .tab {
  color: rgba(255, 255, 255, 0.85);
}

.hero-page .top-header:not(.scrolled) .header-tabs .tab.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-page .top-header:not(.scrolled) .header-tabs .tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

/* White icons when not scrolled */
.hero-page .top-header:not(.scrolled) .icon-btn {
  color: #fff;
}

.hero-page .top-header:not(.scrolled) .icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-page .top-header:not(.scrolled) .header-divider {
  background: rgba(255, 255, 255, 0.35);
}

/* White nav links always (transparent + translucent header) */
.hero-page .main-nav ul li a,
.hero-page .main-nav ul li .nav-toggle {
  color: rgba(255, 255, 255, 0.92);
}

.hero-page .main-nav ul li a:hover,
.hero-page .main-nav ul li .nav-toggle:hover {
  color: var(--gold);
}

.hero-page .main-nav ul li a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Dropdown links always dark regardless of hero-page */
.hero-page .main-nav .dropdown li a,
.hero-page .main-nav .dropdown li a:hover {
  color: var(--text-dark);
}

.hero-page .main-nav .dropdown li a:hover {
  color: var(--gold);
}

/* Hero slider: fill the hero-wrapper */
.hero-page .hero-slider {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
}

/* Hamburger: hidden on desktop */
.hamburger {
  display: none;
}

/* =============================================
   FRANCHISE SECTION
   ============================================= */

.franchise-section {
  position: relative;
  width: 100%;
  min-height: 440px;
  background-image: url('../Img/01_inicio_franquiciate_hero.webp');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.franchise-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2, 20, 45, 0.95) 0%,
    rgba(2, 20, 45, 0.85) 35%,
    rgba(2, 20, 45, 0.40) 58%,
    transparent 100%
  );
  z-index: 1;
}

.franchise-content {
  position: relative;
  z-index: 2;
  padding: 64px 0 64px clamp(60px, 14vw, 260px);
  max-width: calc(560px + clamp(60px, 14vw, 260px));
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.franchise-label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.franchise-title {
  font-family: var(--font);
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.franchise-text {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  max-width: 480px;
}

.franchise-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F2B300;
  color: #02142D;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 8px;
  align-self: flex-start;
  transition: background 0.2s, gap 0.2s;
}

.franchise-btn:hover {
  background: #ffc420;
  color: #02142D;
  gap: 16px;
}

.franchise-arrow {
  font-size: 18px;
  transition: transform 0.2s;
  display: inline-block;
}

.franchise-btn:hover .franchise-arrow {
  transform: translateX(4px);
}



/* =============================================
   LOCATION SECTION
   ============================================= */

.petrogold-location-section {
  background: #fff;
  padding: 56px 40px;
}

.petrogold-location-wrap {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT */
.petrogold-location-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.petrogold-location-deco {
  display: block;
  width: 40px;
  height: 3px;
  background: #E8B100;
  border-radius: 2px;
}

.petrogold-location-title {
  font-family: var(--font);
  font-size: 30px;
  font-weight: 800;
  color: #021433;
  line-height: 1.25;
}

.petrogold-location-stations {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.petrogold-location-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.petrogold-location-pin {
  flex-shrink: 0;
  margin-top: 2px;
}

.petrogold-location-pin svg {
  width: 20px;
  height: 20px;
}

.petrogold-location-name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #0A2E73;
  margin-bottom: 2px;
}

.petrogold-location-addr {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}

.petrogold-location-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E8B100;
  color: #0A2E73;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 8px;
  align-self: flex-start;
  transition: background 0.2s, gap 0.2s;
}

.petrogold-location-btn:hover {
  background: #ffc820;
  color: #0A2E73;
  gap: 14px;
}

.petrogold-location-arrow {
  font-size: 18px;
}

/* CENTER: map */
.petrogold-location-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.petrogold-location-map-label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #0A2E73;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  z-index: 10;
  white-space: nowrap;
}

.petrogold-location-map iframe {
  flex: 1;
  width: 100%;
  min-height: 320px;
  border-radius: 16px;
}

/* RIGHT: gallery */
.petrogold-location-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.petrogold-location-img-wrap {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.petrogold-location-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.petrogold-location-img-wrap:hover img {
  transform: scale(1.05);
}

/* =============================================
   REVIEWS SECTION
   ============================================= */

.reviews-section {
  background: #f5f7fa;
  padding: 72px 0 0;
}

.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Horizontal layout: carousel left, header right */
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
  margin-bottom: 0;
}

.reviews-carousel-col {
  min-width: 0;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.reviews-label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.reviews-title {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 800;
  color: #021433;
  line-height: 1.2;
}

.reviews-title-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.reviews-subtitle {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  max-width: 300px;
}

/* Track wrapper */
.reviews-track-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
  flex: 1;
  cursor: grab;
  user-select: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* Arrow buttons */
.reviews-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: #1a2e5a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 2;
}

.reviews-arrow:hover {
  background: #1a2e5a;
  border-color: #1a2e5a;
  color: #fff;
}

.reviews-arrow svg {
  width: 20px;
  height: 20px;
}

/* Review card */
.review-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s;
}

.review-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e0e0e0;
}

.review-name {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #1a2e5a;
  line-height: 1.3;
}

.review-meta {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  color: #888;
  line-height: 1.4;
  margin-top: 2px;
}

.review-stars {
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.review-text {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: #444;
  line-height: 1.7;
  flex: 1;
}

/* CTA strip */
.reviews-cta {
  margin-top: 40px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, #050f1f 0%, #0a1f3d 50%, #0d2a52 100%);
  border-radius: 0;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  flex-wrap: wrap;
}

.reviews-cta-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.reviews-cta-icon svg {
  width: 32px;
  height: 32px;
}

.reviews-cta-text {
  flex: 1;
}

.reviews-cta-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.reviews-cta-sub {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.reviews-cta-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, #e6a800 0%, #f5c842 50%, #c9890d 100%);
  color: #1a2e5a;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  margin-right: 48px;
}

.reviews-cta-btn:hover {
  background: linear-gradient(135deg, #ffd740 0%, #ffea80 50%, #e6a800 100%);
  color: #000000;
  box-shadow: 0 4px 18px rgba(229, 168, 0, 0.45);
}

.reviews-cta-trustpilot {
  height: 12px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: px;
}

/* =============================================
   SPORT SECTION
   ============================================= */
.sport-section {
  position: relative;
  width: 100%;
  min-height: 240px;
  background-image: url('../Img/01_inicio_blog_2.webp');
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1400px;
}

.sport-section_quienes-somos {
  position: relative;
  width: 100%;
  min-height: 240px;
  background-image: url('../Img/05_seccion5.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1400px;
}

.sport-section_combustibles {
  position: relative;
  width: 100%;
  min-height: 240px;
  background-image: url('../Img/05_combustibles.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1400px;
}

.sport-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2, 10, 28, 0.82) 0%,
    rgba(5, 18, 50, 0.70) 40%,
    rgba(5, 18, 50, 0.15) 70%,
    transparent 100%
  );
  z-index: 1;
}

.sport-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 28px clamp(40px, 6vw, 120px);
}

.sport-content-inner {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sport-title {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.sport-gold {
  color: #D9A520;
}

.sport-text {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 440px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sport-icon {
  display: flex;
  align-items: center;
}

.sport-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e6a800 0%, #f5c842 50%, #c9890d 100%);
  color: #02142D;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: filter 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  white-space: nowrap;
}

.sport-btn:hover {
  filter: brightness(1.12);
  box-shadow: 0 6px 24px rgba(217, 165, 32, 0.45);
}

.sport-btn-arrow {
  display: flex;
  align-items: center;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: linear-gradient(160deg, #050f1f 0%, #0a1f3d 60%, #0d2a52 100%);
  color: #c8d4e8;
  font-family: var(--font);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 260px 1fr 1fr 280px;
  gap: 40px 32px;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  object-position: left;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: #8fa5c8;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: #c8d4e8;
  transition: background 0.2s, color 0.2s;
}

.footer-social-link:hover {
  background: var(--gold);
  color: #02142D;
}

/* Nav columns */
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin: 0 0 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: #8fa5c8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Newsletter column */
.footer-newsletter-desc {
  font-size: 13px;
  color: #8fa5c8;
  line-height: 1.55;
  margin: 0 0 16px;
}

.footer-newsletter-form {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 13.5px;
  color: #fff;
  font-family: var(--font);
}

.footer-newsletter-input::placeholder {
  color: #6a84a8;
}

.footer-newsletter-btn {
  background: linear-gradient(135deg, #e6a800 0%, #f5c842 50%, #c9890d 100%);
  border: none;
  padding: 0 16px;
  cursor: pointer;
  color: #02142D;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.footer-newsletter-btn:hover {
  opacity: 0.88;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 18px 32px;
}

.footer-bottom p {
  font-size: 12px;
  color: #4f6a8f;
  margin: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .main-nav ul li a,
  .main-nav ul li .nav-toggle {
    padding: 10px 9px;
    font-size: 13px;
  }

  .features-title {
    font-size: 34px;
  }

  .slide-title {
    font-size: 30px;
  }
}

/* ── Tablet portrait (≤1024px) ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

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

  .petrogold-location-wrap {
    grid-template-columns: 42% 1fr;
    gap: 28px;
  }

  .franchise-title {
    font-size: 38px;
  }

  .franchise-content {
    padding: 56px 0 56px 48px;
    max-width: 500px;
  }

  .hero-wrapper {
    height: 650px;
  }

  .hero-slider .slide {
    padding-top: 80px;
  }

  .slide-title {
    font-size: 28px;
  }

  .slide-content {
    max-width: 480px;
    margin-left: clamp(40px, 8vw, 100px);
  }

  .slider-controls {
    left: clamp(40px, 8vw, 100px);
    bottom: 44px;
  }
}

/* ── Tablet / large mobile (≤768px) ── */
@media (max-width: 768px) {

  /* Header: hamburger layout */
  .top-header {
    padding: 0 32px;
    height: 60px;
  }

  .header-logo img {
    height: 40px;
  }

  /* Hide nav links, show hamburger */
  .top-header .main-nav,
  .main-nav {
    display: none;
  }

  .top-header .main-nav.open,
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 400;
    padding: 8px 0 16px;
  }

  /* Force dark text in open mobile nav regardless of hero-page rules */
  .top-header .main-nav.open ul li a,
  .top-header .main-nav.open ul li .nav-toggle,
  .main-nav.open ul li a,
  .main-nav.open ul li .nav-toggle {
    color: var(--text-dark) !important;
  }
  .top-header .main-nav.open ul li a:hover,
  .top-header .main-nav.open ul li .nav-toggle:hover,
  .main-nav.open ul li a:hover,
  .main-nav.open ul li .nav-toggle:hover {
    color: var(--gold) !important;
  }
  .top-header .main-nav.open ul li a.active,
  .main-nav.open ul li a.active {
    color: var(--gold) !important;
  }

  .top-header .main-nav.open > ul,
  .main-nav.open > ul {
    flex-direction: column;
    width: 100%;
  }

  .main-nav ul li a,
  .main-nav ul li .nav-toggle {
    padding: 12px 24px;
    font-size: 15px;
    border-bottom: none;
  }

  .main-nav ul li a.active {
    border-bottom: none;
    color: var(--gold);
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    background: #f9f9f9;
    border-radius: 0;
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown.open .dropdown {
    display: block;
  }

  /* Hamburger button */
  .header-right {
    margin-left: auto;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    margin-right: 0;
    order: 10;
    color: #0a1a33;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0a1a33;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }

  /* Hero page: keep hamburger white */
  .hero-page .hamburger { color: #fff; }
  .hero-page .hamburger span { background: #fff; }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero-wrapper {
    height: 560px;
  }

  .hero-slider .slide {
    padding-top: 88px;
  }

  .slide-content {
    max-width: 100%;
    margin-left: 32px;
  }

  .slide-label {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .slide-title {
    font-size: 24px;
  }

  .slide-subtitle {
    font-size: 16px;
  }

  .slide-btn {
    font-size: 16px;
    padding: 11px 22px;
  }

  .slider-controls {
    left: 24px;
    bottom: 36px;
  }

  .petrogold-location-item {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .top-header {
    padding: 0 260px;
  }

  .slide-content {
    margin-left: 260px;
  }

  .slider-controls {
    left: 220px;
  }

  .hero-wrapper {
    height: 700px;
  }

  .hero-slider .slide {
    padding-top: 80px;
  }

  .slider-controls {
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  /* Features */
  .features-section {
    padding: 56px 24px;
  }

  .features-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }

  /* Location */
  .petrogold-location-section {
    padding: 32px 16px;
  }

  .petrogold-location-wrap {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 20px;
    border-radius: 14px;
  }

  .petrogold-location-title {
    font-size: 24px;
    text-align: center;
  }

  .petrogold-location-left {
    gap: 18px;
  }

  .petrogold-location-btn {
    align-self: stretch;
    justify-content: center;
  }

  .petrogold-location-map {
    min-height: 300px;
  }

  .petrogold-location-map iframe {
    min-height: 300px;
  }

  /* Franchise */
  .franchise-section {
    min-height: 380px;
  }

  .franchise-overlay {
    background: linear-gradient(
      to bottom,
      rgba(2, 20, 45, 0.92) 0%,
      rgba(2, 20, 45, 0.92) 100%
    );
  }

  .franchise-content {
    padding: 48px 24px;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .franchise-title {
    font-size: 28px;
  }

  .franchise-text {
    font-size: 15px;
    max-width: 100%;
  }

  .franchise-btn {
    align-self: center;
  }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {

  .hero-wrapper {
    height: 500px;
  }

  .slide-title {
    font-size: 20px;
  }

  .slide-label {
    font-size: 11px;
  }

  .slide-content {
    max-width: 100%;
    margin-left: 20px;
  }

  .slider-controls {
    left: 16px;
    bottom: 28px;
    gap: 6px;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

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

  .features-title {
    font-size: 24px;
  }

  .features-btn {
    font-size: 14px;
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }

  .tienda-btn {
    display: none;
  }

  .header-right .icon-btn:not([aria-label="Buscar"]) {
    display: none;
  }

  /* Reviews */
  .reviews-inner {
    padding: 0 16px;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Put header above carousel on mobile */
  .reviews-carousel-col {
    order: 2;
  }

  .reviews-header {
    order: 1;
    align-items: center;
    text-align: center;
  }

  .reviews-subtitle {
    max-width: 100%;
  }

  .reviews-title {
    font-size: 24px;
  }

  .review-card {
    flex: 0 0 calc(100vw - 64px);
  }

  .reviews-arrow {
    display: none;
  }

  .reviews-cta {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
  }

  .reviews-cta-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── Reviews layout tablet ── */
@media (max-width: 1024px) {
  .reviews-layout {
    grid-template-columns: 1fr 240px;
    gap: 32px;
  }

  .reviews-title {
    font-size: 26px;
  }
}

/* ── Location section small mobile ── */
@media (max-width: 480px) {
  .petrogold-location-section {
    padding: 24px 12px;
  }

  .petrogold-location-wrap {
    padding: 20px 16px;
    gap: 16px;
    border-radius: 10px;
  }

  .petrogold-location-title {
    font-size: 21px;
  }

  .petrogold-location-map {
    min-height: 240px;
  }

  .petrogold-location-map iframe {
    min-height: 240px;
  }

  .petrogold-location-map-label {
    font-size: 10px;
    padding: 5px 10px;
  }
}

/* ── Sport section responsive ── */
@media (min-width: 1024px) {
  .sport-section {
    background-position: 55% 50%;
  }
}

@media (min-width: 1400px) {
  .sport-section {
    background-position: 60% 50%;
  }
}

@media (max-width: 768px) {
  .sport-section {
    min-height: 200px;
    border-radius: 0;
  }

  .sport-content {
    padding: 24px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .sport-content-inner {
    max-width: 100%;
    gap: 10px;
    margin: 0 auto;
    align-items: center;
  }

  .sport-title {
    font-size: 19px;
    text-align: center;
  }

  .sport-text {
    font-size: 16px;
    -webkit-line-clamp: 3;
    text-align: center;
    margin: 0 auto;
  }

  .sport-btn {
    align-self: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .sport-section {
    min-height: 180px;
  }

  .sport-content {
    padding: 20px;
  }

  .sport-title {
    font-size: 17px;
  }
}

/* ── Footer responsive ── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px 40px;
  }

  .footer-newsletter-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 28px;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-newsletter-col {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 14px 20px;
  }
}

/* =============================================
   GASOLINERAS PAGE
   ============================================= */

/* Hero */
.gs-hero {
  background: linear-gradient(160deg, #050f1f 0%, #0a1f3d 60%, #0d2a52 100%);
  padding: 72px 40px 56px;
}

.gs-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.gs-hero-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.gs-hero-title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}

.gs-hero-gold {
  color: var(--gold);
}

.gs-hero-sub {
  font-family: var(--font);
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 540px;
  margin: 0;
}

/* Selector tabs */
.gs-selector {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.gs-selector-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.22s;
}

.gs-selector-btn.active,
.gs-selector-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #02142D;
}

.gs-selector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Panels */
.gs-panel {
  display: none;
  background: #f5f7fa;
  padding: 56px 40px;
}

.gs-panel.active {
  display: block;
}

.gs-panel-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Info column */
.gs-panel-info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gs-info-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e9;
  color: #2e7d32;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.gs-panel-title {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 800;
  color: #021433;
  line-height: 1.2;
  margin: 0;
}

.gs-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gs-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font);
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.gs-details li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  fill: var(--gold);
}

.gs-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gs-tag {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: #0A2E73;
  background: #eef2fb;
  padding: 5px 12px;
  border-radius: 20px;
}

.gs-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e6a800 0%, #f5c842 50%, #c9890d 100%);
  color: #02142D;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: filter 0.2s, box-shadow 0.2s;
  margin-top: auto;
}

.gs-map-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 16px rgba(217,165,32,0.4);
}

/* Map column */
.gs-panel-map {
  min-height: 420px;
}

.gs-panel-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .gs-panel-inner {
    grid-template-columns: 1fr;
  }

  .gs-panel-map {
    min-height: 300px;
  }

  .gs-panel-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .gs-hero {
    padding: 52px 20px 40px;
  }

  .gs-hero-title {
    font-size: 28px;
  }

  .gs-panel {
    padding: 32px 16px;
  }

  .gs-panel-info {
    padding: 28px 20px;
  }

  .gs-selector-btn {
    font-size: 13px;
    padding: 10px 18px;
  }
}

/* =============================================
   HERO-PG  (gasolineracaceres / merida)
   ============================================= */
.hero-pg {
  position: relative;
  width: 100vw;
  min-height: 560px;
  background-image: url('../Img/02gasolinera_caceres.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-pg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4, 12, 28, 0.82) 0%,
    rgba(6, 18, 42, 0.65) 40%,
    rgba(6, 18, 42, 0.18) 70%,
    transparent 100%
  );
  z-index: 1;
}

.hero-pg-card {
  position: relative;
  z-index: 2;
  margin-left: clamp(80px, 12vw, 220px);
  width: min(55%, 680px);
  background: rgba(20, 30, 45, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-pg-label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.hero-pg-title {
  font-family: var(--font);
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}

.hero-pg-text {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 580px;
  margin: 0;
}

.hero-pg-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.hero-pg-btn--primary {
  background: #0A2E73;
  color: #ffffff;
  border: 2px solid #0A2E73;
}

.hero-pg-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10, 46, 115, 0.5);
  background: #0d3a90;
  border-color: #0d3a90;
}

.hero-pg-btn--outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-pg-btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-pg-card {
    width: min(88%, 600px);
    padding: 36px 32px;
  }

  .hero-pg-title {
    font-size: 38px;
  }

  .hero-pg-text {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .hero-pg {
    min-height: 480px;
    align-items: flex-end;
    padding-bottom: 32px;
  }

  .hero-pg-overlay {
    background: linear-gradient(
      to top,
      rgba(4, 12, 28, 0.90) 0%,
      rgba(4, 12, 28, 0.55) 60%,
      transparent 100%
    );
  }

  .hero-pg-card {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 28px 22px;
    border-radius: 18px;
    gap: 16px;
  }

  .hero-pg-title {
    font-size: 28px;
  }

  .hero-pg-text {
    font-size: 14px;
  }

  .hero-pg-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-pg-btn {
    justify-content: center;
    padding: 13px 20px;
  }
}

/* hero-pg-card dentro del hero slider (index.html) */
.hero-slider .hero-pg-card .slide-btn {
  margin-top: 14px;
}

@media (max-width: 1024px) {
  .hero-slider .hero-pg-card {
    margin-left: clamp(40px, 8vw, 100px);
    width: min(72%, 560px);
    padding: 32px 28px;
  }
  .hero-slider .hero-pg-card .slide-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .hero-slider .hero-pg-card {
    width: min(70%, 420px);
    margin: 0 0 0 24px;
    padding: 24px 20px;
    border-radius: 16px;
    gap: 14px;
  }
  .hero-slider .hero-pg-card .slide-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .hero-slider .hero-pg-card .slide-label {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .hero-slider .hero-pg-card .slide-subtitle {
    font-size: 14px;
    margin-bottom: 14px;
    margin-top: -8px;
  }
}

@media (max-width: 480px) {
  .hero-slider .hero-pg-card {
    width: min(82%, 380px);
    margin: 0 0 0 16px;
    padding: 20px 16px;
    border-radius: 14px;
    gap: 12px;
  }
  .hero-slider .hero-pg-card .slide-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}


/* =============================================
   UBICACIÓN PG (gasolineracaceres / merida)
   ============================================= */

.ubicacion-pg-section {
  padding: 46px ;
  background: #ffffff;
}

.ubicacion-pg-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

/* Info column */
.ubicacion-pg-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ubicacion-pg-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 22px;
  width: fit-content;
}

.ubicacion-pg-title {
  font-family: var(--font);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.18;
  margin: 0 0 18px;
}

.ubicacion-pg-address {
  font-style: normal;
  font-family: var(--font);
  font-size: 16px;
  color: #5a6475;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ubicacion-pg-address p {
  margin: 0;
}

/* Badges */
.ubicacion-pg-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.ub-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ub-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ub-badge-icon--gold {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
}

.ub-badge-icon--blue {
  background: rgba(10, 46, 115, 0.08);
  color: #0A2E73;
}

.ub-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ub-badge strong {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.ub-badge span {
  font-family: var(--font);
  font-size: 13px;
  color: #7a8494;
}

/* CTA button */
.ubicacion-pg-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: #0A2E73;
  border-radius: 999px;
  padding: 13px 28px;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.ubicacion-pg-cta:hover {
  background: #0d3a90;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 46, 115, 0.35);
}

/* Map card */
.ubicacion-pg-map-card {
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.ubicacion-pg-map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 1199px) {
  .ubicacion-pg-section {
    padding: 40px 24px;
  }
  .ubicacion-pg-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }
  .ubicacion-pg-info {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .ubicacion-pg-badges {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
  }
  .ub-badge {
    flex: 1 1 0;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 12px 16px;
    justify-content: center;
  }
  .ubicacion-pg-map-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    height: 360px;
  }
}

@media (max-width: 767px) {
  .ubicacion-pg-section {
    padding: 36px 16px;
  }
  .ubicacion-pg-inner {
    gap: 24px;
  }
  .ubicacion-pg-title {
    font-size: 28px;
  }
  .ubicacion-pg-map-card {
    height: 260px;
  }
  .ubicacion-pg-cta {
    width: 100%;
    justify-content: center;
  }
}


/* =============================================
   INSTALACIONES GALLERY
   ============================================= */

.instalaciones-section {
  padding: 36px 0;
  background: #ffffff;
}

.instalaciones-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.instalaciones-header {
  text-align: center;
  margin-bottom: 56px;
}

.instalaciones-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 20px;
}

.instalaciones-title {
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.18;
  margin: 0 0 16px;
}

.instalaciones-subtitle {
  font-family: var(--font);
  font-size: 16px;
  color: #5a6475;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Grid */
.instalaciones-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Grid */
.instalaciones-gallery2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gal-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4 / 3;
  background: #f0f2f5;
}

.gal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.14);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gal-item:hover img {
  transform: scale(1.05);
}

/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  transform: scale(0.9);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 10000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

/* Lightbox prev/next navigation */
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
  background: rgba(216, 163, 40, 0.85);
  border-color: rgba(216, 163, 40, 0.6);
}

.lightbox-prev {
  left: 20px;
}
.lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }

.lightbox-next {
  right: 20px;
}
.lightbox-next:hover { transform: translateY(-50%) translateX(2px); }

@media (max-width: 600px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* Responsive gallery */
@media (max-width: 1100px) {
  .instalaciones-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .instalaciones-gallery .gal-item {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 700px) {
  .instalaciones-section {
    padding: 48px 0;
  }

  .instalaciones-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    overflow-x: unset;
  }

  .instalaciones-gallery .gal-item {
    min-width: unset;
    flex-shrink: unset;
    aspect-ratio: 4 / 3;
  }
}


/* =============================================
   SERVICIOS PREMIUM (gasolineramerida)
   ============================================= */

.servicios-premium-section {
  padding: 40px 0;
  background: #ffffff;
}

.servicios-premium-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 64px;
  align-items: center;
}

/* Texto izquierda */
.sp-col-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sp-title {
  font-family: var(--font);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800;
  color: #081B33;
  line-height: 1.18;
  margin: 0;
}

.sp-gold {
  color: #D89B1D;
}

.sp-desc {
  font-family: var(--font);
  font-size: 16px;
  color: #5a6475;
  line-height: 1.7;
  max-width: 340px;
  margin: 0;
}

/* Tarjetas derecha */
.sp-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sp-card {
  border-radius: 24px;
  overflow: hidden;
  background: #F5F5F7;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
}

/* Imagen de la tarjeta */
.sp-card-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}

.sp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sp-card:hover .sp-card-img {
  transform: scale(1.05);
}

/* Overlay degradado blanco desde abajo */
.sp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(245, 245, 247, 0.95) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Icono gota esquina superior izquierda */
.sp-card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

/* Contenido inferior de tarjeta */
.sp-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.sp-card-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: #081B33;
  line-height: 1.25;
  margin: 0;
}

.sp-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: #D89B1D;
  text-decoration: none;
  border: 1.5px solid #D89B1D;
  border-radius: 999px;
  padding: 8px 20px;
  width: fit-content;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.sp-card-btn:hover {
  background: #D89B1D;
  color: #ffffff;
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 1050px) {
  .servicios-premium-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sp-col-text {
    max-width: 600px;
  }

  .sp-desc {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .servicios-premium-section {
    padding: 64px 0;
  }

  .sp-col-cards {
    grid-template-columns: 1fr;
  }

  .sp-card-img-wrap {
    height: 220px;
  }
}


/* =============================================
   COMBUSTIBLES PAGE
   ============================================= */

/* Shared helpers */
.comb-gold { color: #d8a328; }

.comb-section-label {
  display: inline-block;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d8a328;
  margin-bottom: 16px;
}

.comb-section-label--light { color: rgba(255,255,255,0.55); }

.comb-section-title {
  font-family: var(--font);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: #071426;
  line-height: 1.18;
  margin: 0 0 24px;
}

.comb-section-title--light { color: #ffffff; }

/* ── Buttons ── */
.comb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.comb-btn--gold {
  background: #d8a328;
  color: #071426;
  border: 2px solid #d8a328;
}

.comb-btn--gold:hover {
  background: #c4911e;
  border-color: #c4911e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(216, 163, 40, 0.4);
}

.comb-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.55);
}

.comb-btn--outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.comb-btn--gold-solid {
  background: #d8a328;
  color: #071426;
  border: none;
  font-size: 15px;
  padding: 16px 36px;
}

.comb-btn--gold-solid:hover {
  background: #c4911e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(216, 163, 40, 0.45);
}

/* ── 1. HERO ── */
.comb-hero {
  position: relative;
  min-height: 92vh;
  background-image: url('../Img/hero_combustibles.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.comb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 20, 38, 0.90) 0%,
    rgba(7, 20, 38, 0.70) 45%,
    rgba(7, 20, 38, 0.15) 80%,
    transparent 100%
  );
}

.comb-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: clamp(32px, 10vw, 180px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comb-hero-label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d8a328;
}

.comb-hero-title {
  font-family: var(--font);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.0;
  margin: 0;
}

.comb-hero-subtitle {
  font-family: var(--font);
  font-size: 20px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}

.comb-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ── 2. TECNOLOGÍA ── */
.comb-tech-section {
  padding: 120px 0 100px;
  background: #f8f8f8;
  overflow: hidden;
}

.comb-tech-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.comb-tech-text {
  display: flex;
  flex-direction: column;
}

.comb-tech-p {
  font-family: var(--font);
  font-size: 15px;
  color: #5a6475;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Badges rediseñados */
.comb-tech-badges {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.comb-tech-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}

.comb-tech-badge:last-child {
  border-bottom: none;
}

.comb-tech-badge::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #d8a328;
  transition: width 0.4s ease;
}

.comb-tech-badge:hover::before {
  width: 100%;
}

.comb-tech-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff8e8;
  border: 1.5px solid rgba(216, 163, 40, 0.2);
  color: #d8a328;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.comb-tech-badge:hover .comb-tech-badge-icon {
  background: #d8a328;
  color: #ffffff;
  border-color: #d8a328;
}

.comb-tech-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.comb-tech-badge-text strong {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #071426;
  letter-spacing: 0.02em;
}

.comb-tech-badge-text span {
  font-family: var(--font);
  font-size: 12.5px;
  color: #8a93a3;
}

/* Imagen con clip-path + detalles */
.comb-tech-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Trazos decorativos SVG absolutos a la izquierda */
.comb-tech-deco {
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 320px;
  pointer-events: none;
  z-index: 2;
}

/* Recorte asimétrico sobre la imagen */
.comb-tech-clip {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 3/4;
  clip-path: polygon(
    20% 0%,
    100% 0%,
    100% 85%,
    80% 100%,
    0% 100%,
    0% 15%
);
  box-shadow: 24px 28px 72px rgba(7, 20, 38, 0.18), 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease;
  overflow: hidden;
}

.comb-tech-clip:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 28px 36px 90px rgba(7, 20, 38, 0.22);
}

.comb-tech-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.comb-tech-clip:hover img {
  transform: scale(1.04);
}

/* Superposición translúcida izquierda — integra imagen con sección */
.comb-tech-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(248, 248, 248, 0.30) 0%,
    transparent 35%
  );
  pointer-events: none;
}

/* Etiqueta flotante de dato técnico */
.comb-tech-float-tag {
  position: absolute;
  bottom: -18px;
  left: -8px;
  background: #071426;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(7,20,38,0.25);
  z-index: 3;
  min-width: 130px;
  clip-path: polygon(
    20% 0%,
    100% 0%,
    100% 85%,
    80% 100%,
    0% 100%,
    0% 15%
);
}

.comb-tech-float-num {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 900;
  color: #d8a328;
  line-height: 1;
}

.comb-tech-float-num sup {
  font-size: 14px;
  font-weight: 700;
  vertical-align: super;
  color: #d8a328;
}

.comb-tech-float-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── 3. BENEFICIOS ── */
.comb-benefits-section {
  padding: 96px 0;
  background: #071426;
}

.comb-benefits-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
}

.comb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.comb-benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}

.comb-benefit-card:hover {
  background: rgba(216, 163, 40, 0.08);
  border-color: rgba(216, 163, 40, 0.25);
  transform: translateY(-4px);
}

.comb-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(216, 163, 40, 0.12);
  color: #d8a328;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comb-benefit-card h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.comb-benefit-card p {
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ── 4. TIPOS ── */
.comb-types-section {
  padding: 100px 0;
  background: #F5F5F7;
}

.comb-types-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.comb-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.comb-type-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.comb-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.comb-type-img-wrap {
  height: 220px;
  overflow: hidden;
}

.comb-type-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.comb-type-card:hover .comb-type-img-wrap img {
  transform: scale(1.04);
}

.comb-type-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.comb-type-title {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  color: #071426;
}

.comb-type-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comb-type-list li {
  font-family: var(--font);
  font-size: 14px;
  color: #5a6475;
  padding-left: 22px;
  position: relative;
}

.comb-type-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8a328;
}

.comb-type-btn {
  display: inline-flex;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: #071426;
  border: 1.5px solid #071426;
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.comb-type-btn:hover {
  background: #071426;
  color: #ffffff;
}

.comb-type-btn--blue {
  color: #2563EB;
  border-color: #2563EB;
}

.comb-type-btn--blue:hover {
  background: #2563EB;
  color: #ffffff;
}

/* ── 5. HIGHLIGHT ── */
.comb-highlight-section {
  position: relative;
  min-height: 380px;
  background-image: url('../Img/03_seccion5.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.comb-highlight-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 38, 0.76);
}

.comb-highlight-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.comb-highlight-quote {
  font-family: var(--font);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  max-width: 640px;
  flex: 1;
  margin: 0;
  quotes: none;
}

/* ── 6. ORIGEN ── */
.comb-origin-section {
  padding: 100px 0;
  background: #ffffff;
}

.comb-origin-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.comb-origin-text {
  display: flex;
  flex-direction: column;
}

.comb-origin-p {
  font-family: var(--font);
  font-size: 15px;
  color: #5a6475;
  line-height: 1.75;
  margin-bottom: 32px;
}

.comb-origin-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comb-origin-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.comb-origin-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(216, 163, 40, 0.1);
  color: #d8a328;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comb-origin-badge div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.comb-origin-badge strong {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #071426;
}

.comb-origin-badge span {
  font-family: var(--font);
  font-size: 13px;
  color: #7a8494;
}

.comb-origin-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
}

.comb-origin-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 1050px) {
  .comb-tech-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .comb-origin-inner {
    gap: 48px;
  }

  .comb-tech-clip {
    max-width: 100%;
    aspect-ratio: 16/9;
    clip-path: polygon(6% 0%, 100% 0%, 100% 92%, 94% 100%, 0% 100%, 0% 8%);
  }

  .comb-tech-float-tag {
    bottom: -14px;
    left: 12px;
  }

  .comb-tech-deco {
    display: none;
  }

  .comb-origin-inner {
    direction: ltr;
  }

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

  .comb-highlight-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 700px) {
  .comb-origin-inner {
    grid-template-columns: 1fr;
  }

  .comb-hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 48px;
  }

  .comb-hero-overlay {
    background: linear-gradient(
      to top,
      rgba(7, 20, 38, 0.92) 0%,
      rgba(7, 20, 38, 0.60) 55%,
      transparent 100%
    );
  }

  .comb-hero-content {
    margin-left: 0;
    padding: 0 24px;
  }

  .comb-types-grid {
    grid-template-columns: 1fr;
  }

  .comb-benefits-grid {
    grid-template-columns: 1fr;
  }

  .comb-highlight-section {
    background-attachment: scroll;
  }
}


/* =============================================
   LAVADO PAGE — lav-*
   ============================================= */

/* ── Entrance animation ── */
@keyframes lav-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 1. Hero ── */
.lav-hero {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0a0f1a;
}

.lav-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.68) 0%,
      rgba(0,0,0,0.42) 45%,
      rgba(0,0,0,0.72) 100%);
  z-index: 1;
}

.lav-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 80px clamp(40px, 10vw, 180px) 40px;
}

.lav-hero-label {
  display: block;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  animation: lav-fade-up 0.75s ease both;
  animation-delay: 0.1s;
}

.lav-hero-title {
  font-family: var(--font);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  animation: lav-fade-up 0.75s ease both;
  animation-delay: 0.25s;
}

.lav-hero-subtitle {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,1);
  line-height: 1.75;
  max-width: 520px;
  animation: lav-fade-up 0.75s ease both;
  animation-delay: 0.40s;
}

/* Feature strip */
.lav-hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 clamp(40px, 10vw, 180px) 52px;
  animation: lav-fade-up 0.8s ease both;
  animation-delay: 0.55s;
}

.lav-hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.30s ease, transform 0.30s ease, border-color 0.30s ease;
}

.lav-hero-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,162,39,0.35);
  transform: translateY(-5px);
}

.lav-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,39,0.14);
  border-radius: 12px;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.25s;
}

.lav-hero-card:hover .lav-card-icon {
  background: rgba(201,162,39,0.22);
}

.lav-card-title {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  display: block;
}

.lav-card-desc {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}


/* ── 2. Te ofrecemos lo mejor ── */
.lav-offer-section {
  background: #f8f8f8;
  padding: 40px 40px;
}

.lav-offer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left column wrapper */
.lav-offer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Icon in light context */
.lav-offer-left .lav-auto-icon {
  color: var(--gold);
  opacity: 1;
}

/* Title / desc / steps — dark on light background */
.lav-offer-left .lav-auto-title {
  color: #111;
  font-size: clamp(28px, 3.5vw, 44px);
}

.lav-offer-left .lav-auto-desc {
  color: #555;
}

.lav-offer-left .lav-auto-steps li {
  color: #222;
}

.lav-offer-left .lav-auto-steps li::before {
  background: rgba(201,162,39,0.10);
  border-color: rgba(201,162,39,0.55);
  color: var(--gold);
}

.lav-section-label {
  display: block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lav-section-title {
  font-family: var(--font);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: #111;
  line-height: 1.12;
}

.lav-offer-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lav-offer-text p {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
}

.lav-quote-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 24px 24px 24px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-top: 4px;
}

.lav-quote-line {
  flex-shrink: 0;
  width: 3px;
  min-height: 52px;
  align-self: stretch;
  background: var(--gold);
  border-radius: 2px;
}

.lav-quote-block p {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: #333;
  line-height: 1.72;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

/* Image side */
.lav-offer-img-wrap {
  position: relative;
}

.lav-offer-img-border {
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: 10px;
  left: 10px;
  border: 1.5px solid rgba(201,162,39,0.40);
  border-radius: 8px;
  pointer-events: none;
  z-index: 0;
  transition: border-color 0.3s;
}

.lav-offer-img-wrap:hover .lav-offer-img-border {
  border-color: rgba(201,162,39,0.70);
}

.lav-offer-img-clip {
  position: relative;
  z-index: 1;
  clip-path: polygon(6% 0%, 100% 0%, 100% 92%, 94% 100%, 0% 100%, 0% 8%);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.16);
  border-radius: 4px;
}

.lav-offer-img-clip img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.lav-offer-img-wrap:hover .lav-offer-img-clip img {
  transform: scale(1.04);
}


/* ── 3. Ozono ── */
.lav-ozono-section {
  background: #fff;
  padding: 100px 40px;
}

.lav-ozono-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lav-ozono-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lav-ozono-text p {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
}

.lav-ozono-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lav-ozono-main {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.11);
  transition: transform 0.35s ease;
}

.lav-ozono-main:hover {
  transform: scale(1.015);
}

.lav-ozono-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lav-ozono-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lav-ozono-row img:hover {
  transform: scale(1.025);
  box-shadow: 0 10px 32px rgba(0,0,0,0.14);
}


/* ── 4. Autolavado band ── */
.lav-auto-section {
  position: relative;
  width: 100%;
  min-height: 440px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #0a0f1a;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lav-auto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 22, 0.76);
  z-index: 1;
}

.lav-auto-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}

.lav-auto-icon {
  color: var(--gold);
  opacity: 0.88;
  flex-shrink: 0;
}

.lav-auto-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lav-auto-title {
  font-family: var(--font);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
}

.lav-auto-desc {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 560px;
}

.lav-auto-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lav-auto-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
}

.lav-auto-steps li::before {
  content: attr(data-num);
  flex-shrink: 0;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,162,39,0.12);
  border: 1.5px solid rgba(201,162,39,0.55);
  color: var(--gold);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 33px;
}


/* ── Galería de Boxes de Lavado ── */
.lav-boxes-gallery {
  background: #f8f8f8;
  padding: 40px 40px;
}

.lav-gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
}


.lav-gallery-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.lav-gallery-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 620px;
}

.lav-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lav-car-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border, #e0e0e0);
  background: #fff;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.lav-car-arrow:hover {
  background: var(--gold, #C9A227);
  border-color: var(--gold, #C9A227);
  color: #fff;
}

.lav-car-arrow:disabled {
  cursor: default;
}

.lav-carousel-track-wrap {
  flex: 1;
  overflow: hidden;
}

.lav-carousel-track {
  display: flex;
  gap: 14px;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lav-car-thumb {
  flex: 0 0 calc(20% - 11.2px);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.lav-car-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.lav-car-thumb:hover img {
  transform: scale(1.05);
}

.lav-car-thumb:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.lav-car-thumb.active {
  border-color: var(--gold, #C9A227);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}

/* ── Lightbox ── */
.lav-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lav-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lav-lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lav-lb-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.22s ease;
  display: block;
}

.lav-lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1;
}

.lav-lb-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lav-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s;
  z-index: 1;
}

.lav-lb-prev { left: 20px; }
.lav-lb-next { right: 20px; }

.lav-lb-arrow:hover {
  background: var(--gold, #C9A227);
  border-color: var(--gold, #C9A227);
}

.lav-lb-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font, 'Manrope', sans-serif);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  pointer-events: none;
}

@media (max-width: 480px) {
  .lav-lb-arrow { width: 40px; height: 40px; }
  .lav-lb-prev { left: 10px; }
  .lav-lb-next { right: 10px; }
}


/* ── 5. CTA Revolución en Lavado ── */
.lav-cta-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-color: #0a0f1a;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* YouTube iframe background */
.lav-cta-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.lav-cta-video-bg iframe {
  /* Scale up to cover the section regardless of aspect ratio */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;  /* 16/9 × 100vh */
  height: 56.25vw; /* 9/16 × 100vw */
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.lav-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2, 8, 22, 0.88) 0%,
    rgba(2, 8, 22, 0.80) 45%,
    rgba(2, 8, 22, 0.64) 100%
  );
  z-index: 1;
}

.lav-cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lav-cta-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lav-cta-icon {
  color: var(--gold);
  display: block;
}

.lav-cta-title {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
}

.lav-cta-subtitle {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}

.lav-cta-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lav-cta-text {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}

.lav-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lav-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #0d0d0d;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  text-align: center;
}

.lav-btn-gold:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.38);
}

.lav-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.60);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
  text-align: center;
}

.lav-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-2px);
}


/* ── LAV Responsive: Tablet ≤ 1024px ── */
@media (max-width: 1024px) {

  /* --- Offer / Ozono / CTA: single column --- */
  .lav-offer-inner,
  .lav-ozono-inner,
  .lav-cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Image comes first on tablet (offer), text first on ozono */
  .lav-offer-img-wrap { order: -1; }
  .lav-ozono-gallery  { order: 1; }
  .lav-ozono-text     { order: -1; }

  /* Only show main image on tablet/mobile */
  .lav-ozono-row { display: none; }

  .lav-offer-left { gap: 20px; }

  .lav-offer-img-clip {
    clip-path: polygon(4% 0%, 100% 0%, 100% 94%, 96% 100%, 0% 100%, 0% 6%);
  }

  .lav-offer-img-clip img {
    aspect-ratio: 16/9;
  }

  /* Hero strip: 2 columns */
  .lav-hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Autolavado band: single column, centred */
  .lav-auto-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .lav-auto-icon { display: none; }

  .lav-auto-steps li { justify-content: flex-start; text-align: left; }
  .lav-auto-desc     { max-width: 100%; }

  /* CTA: single column, centred */
  .lav-cta-left,
  .lav-cta-right {
    align-items: center;
    text-align: center;
  }

  .lav-cta-btns {
    width: 100%;
  }

  .lav-btn-gold,
  .lav-btn-outline {
    width: 100%;
    min-height: 52px;
  }

  /* Gallery */
  .lav-boxes-gallery { padding: 60px 24px; }
  .lav-car-thumb { flex: 0 0 calc(25% - 10.5px); }
}
@media (max-width: 768px) {

  /* Prevent any horizontal overflow */
  .lav-hero,
  .lav-offer-section,
  .lav-ozono-section,
  .lav-auto-section,
  .lav-cta-section {
    overflow-x: hidden;
  }

  /* Hero */
  .lav-hero {
    min-height: 70vh;
  }

  .lav-hero-content {
    padding: 72px 20px 32px;
    text-align: center;
    align-items: center;
  }

  .lav-hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .lav-hero-subtitle {
    max-width: 100%;
    font-size: 17px;
  }

  /* Hero strip: hidden on mobile */
  .lav-hero-strip {
    display: none;
  }

  .lav-hero-card {
    padding: 18px 16px 20px;
  }

  /* Offer / Ozono sections */
  .lav-offer-section,
  .lav-ozono-section {
    padding: 64px 20px;
  }

  .lav-offer-inner,
  .lav-ozono-inner {
    gap: 40px;
  }

  .lav-offer-img-border { display: none; }

  /* Ozono row: stay side by side on tablet */
  .lav-ozono-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Autolavado */
  .lav-auto-section { background-attachment: scroll; }
  .lav-auto-inner   { padding: 64px 20px; gap: 28px; }

  .lav-auto-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  /* CTA */
  .lav-cta-inner {
    padding: 64px 20px;
    gap: 36px;
  }

  .lav-cta-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .lav-btn-gold,
  .lav-btn-outline {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
    padding: 15px 24px;
  }

  .lav-cta-btns { gap: 12px; }

  /* Gallery */
  .lav-boxes-gallery { padding: 48px 16px; }
  .lav-car-thumb { flex: 0 0 calc(33.333% - 9.4px); }
  .lav-car-arrow { width: 38px; height: 38px; }
}


/* ── LAV Responsive: Mobile ≤ 480px ── */
@media (max-width: 480px) {

  /* Hero strip: hidden */
  .lav-hero-strip {
    display: none;
  }

  .lav-hero-content {
    padding: 64px 16px 24px;
  }

  .lav-hero-subtitle { font-size: 16px; }

  /* Sections */
  .lav-offer-section,
  .lav-ozono-section {
    padding: 52px 16px;
  }

  .lav-auto-inner,
  .lav-cta-inner {
    padding: 52px 16px;
  }

  /* Ozono row: stack on very small screens */
  .lav-ozono-row {
    grid-template-columns: 1fr;
  }

  /* Buttons always full width */
  .lav-btn-gold,
  .lav-btn-outline {
    width: 100%;
    padding: 14px 20px;
  }

  /* Quote block */
  .lav-quote-block { padding: 20px 16px 20px 14px; }

  /* Gallery */
  .lav-boxes-gallery { padding: 36px 12px; }
  .lav-car-thumb { flex: 0 0 calc(50% - 7px); }
  .lav-car-arrow { width: 34px; height: 34px; }
}


/* =============================================
   QUIÉNES SOMOS — qs-*
   ============================================= */

/* ── Shared utilities ── */
/* ── Shared utilities ── */
.qs-eyebrow {
  display: block;
  font-family: var(--font);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0a1f3d;
  margin: 0 0 8px 0; /* Menos espacio debajo */
}

.qs-eyebrow--gold  { color: var(--gold); }
.qs-eyebrow--white { color: rgba(255,255,255,0.75); }

.qs-section-title {
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, 48px);
  text-align: center;
  font-weight: 800;
  color: #0a1a33;
  line-height: 1;      /* Reduce el espacio entre líneas */
  margin: 0 auto 16px; /* Centra y reduce márgenes */
}

.qs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #0d0d0d;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  align-self: center;  /* Centra el botón */
  min-height: 52px;
}

.qs-btn-primary:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}

/* ── Quiénes somos: keep dark nav links on light hero ── */
.qs-page.hero-page .top-header:not(.scrolled) .main-nav ul li a,
.qs-page.hero-page .top-header:not(.scrolled) .main-nav ul li .nav-toggle {
  color: rgba(255,255,255,0.88);
}
/* Dropdown items always dark (light bg) */
.qs-page.hero-page .top-header:not(.scrolled) .main-nav .dropdown li a,
.qs-page.hero-page .top-header:not(.scrolled) .main-nav .dropdown li a:hover {
  color: var(--text-dark);
}
.qs-page.hero-page .top-header:not(.scrolled) .main-nav ul li a:hover,
.qs-page.hero-page .top-header:not(.scrolled) .main-nav ul li .nav-toggle:hover {
  color: #fff;
}
.qs-page.hero-page .top-header:not(.scrolled) .main-nav ul li a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.qs-page.hero-page .top-header:not(.scrolled) .tienda-btn {
  background: var(--gold);
  color: #fff;
}
.qs-page.hero-page .top-header:not(.scrolled) .hamburger span {
  background: #fff;
}

.qs-btn-primary--sm {
  font-size: 14px;
  padding: 13px 24px;
  min-height: 48px;
  background: var(--gold);
  color: #0d0d0d;
  border-radius: 8px;
}

.qs-btn-primary--sm:hover {
  background: var(--gold-hover);
  color: #fff;
}

/* ── 1. Hero ── */
.qs-hero {
  position: relative;
  min-height: 100svh;
  background: #f4f5f7;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.qs-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.qs-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0.6) 18%,
      transparent 30%
    );
}

.qs-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px clamp(24px, 6vw, 80px) 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qs-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.qs-hero-title {
  font-family: var(--font);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 800;
  color: #0a1a33;
  line-height: 0.95;
  letter-spacing: -2px;
}

.qs-hero-subtitle {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #d4a017;
  text-shadow:
    0 2px 8px rgba(255,255,255,0.7),
    0 4px 12px rgba(0,0,0,0.2);
}

.qs-hero-desc {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: #444;
  line-height: 1.75;
  max-width: 520px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 10px 16px;
}

.qs-hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18);
}
.qs-hero-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}


/* ── 2. Historia ── */
.qs-historia-section {
  background: #fff;
  padding: 80px clamp(24px, 6vw, 80px);
}
.qs-historia-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.qs-historia-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.qs-historia-text p {
  font-family: var(--font);
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
}
.qs-historia-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #f4f5f7;
  border-radius: 16px;
  padding: 18px 24px;
  border-left: 4px solid var(--gold);
  align-self: flex-start;
}
.qs-badge-year {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.qs-badge-label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}
.qs-historia-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12);
}
.qs-historia-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.qs-historia-img-wrap:hover img { transform: scale(1.03); }
.qs-historia-img-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: #0a1a33;
  display: flex;
  align-items: center;
  gap: 8px;
}
.qs-historia-img-tag svg { color: var(--gold); }


/* ── 3. Modelo — Timeline ── */
.qs-modelo-section {
  background: #f4f5f7;
  padding: 100px clamp(24px, 6vw, 80px);
}
.qs-modelo-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.qs-modelo-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qs-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.qs-timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
}
.qs-tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}
.qs-tl-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(201,162,39,0.10);
  border: 1.5px solid rgba(201,162,39,0.35);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.qs-timeline-item:hover .qs-tl-num {
  background: rgba(201,162,39,0.18);
  border-color: var(--gold);
}
.qs-tl-line {
  flex: 1;
  width: 1.5px;
  background: linear-gradient(to bottom, rgba(201,162,39,0.4) 0%, rgba(201,162,39,0.05) 100%);
  margin: 8px 0;
  min-height: 40px;
}
.qs-timeline-item:last-child .qs-tl-line { display: none; }

.qs-tl-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 48px;
}
.qs-timeline-item:last-child .qs-tl-body { padding-bottom: 0; }

.qs-tl-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.qs-tl-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: #0a1a33;
  line-height: 1.3;
}
.qs-tl-desc {
  font-family: var(--font);
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  max-width: 540px;
}
.qs-tl-link {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.qs-tl-link:hover { gap: 8px; }


/* ── 4. Bloque oscuro ── */
.qs-dark-block {
  background: linear-gradient(135deg, rgba(4,13,30,0.97) 0%, rgba(10,31,61,0.95) 55%, rgba(13,42,82,0.97) 100%);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 100px clamp(24px, 6vw, 80px);
  text-align: center;
}
.qs-dark-inner {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.qs-dark-eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.qs-dark-title {
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.qs-dark-quote {
  font-family: var(--font);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 600px;
}
.qs-dark-divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.qs-dark-text {
  font-family: var(--font);
  font-size: 16px;
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
  max-width: 600px;
}


/* ── 5. Servicios cards ── */
.qs-services-section {
  background: #fff;
  padding: 100px clamp(24px, 6vw, 80px);
}
.qs-services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.qs-services-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qs-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.qs-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s, box-shadow 0.28s;
}
.qs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.qs-card--dark {
  background: linear-gradient(160deg, #040d1e 0%, #0a1f3d 55%, #0d2a52 100%);
}
.qs-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.qs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.qs-card:hover .qs-card-img img { transform: scale(1.05); }
.qs-card-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.qs-card-body--dark {
  justify-content: center;
  padding: 36px 28px 40px;
}
.qs-card-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
}
.qs-card-num--light { color: rgba(201,162,39,0.7); }
.qs-card-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #0a1a33;
  line-height: 1.3;
}
.qs-card-title--light { color: #fff; }
.qs-card-desc {
  font-family: var(--font);
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  flex: 1;
}
.qs-card-desc--light { color: rgba(255,255,255,0.72); }
.qs-card-link {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.qs-card-link:hover { gap: 8px; }


/* ── 6. Stats ── */
.qs-stats-section {
  background: #f4f5f7;
  padding: 72px clamp(24px, 6vw, 80px);
}
.qs-stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.qs-stat {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  gap: 8px;
}
.qs-stat-num {
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #0a1a33;
  line-height: 1;
}
.qs-stat-num small {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
}
.qs-stat-label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: #666;
  line-height: 1.5;
}
.qs-stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
  align-self: center;
}


/* ── 7. CTA final ── */
.qs-cta-section {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: #040d1e;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.qs-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 30, 0.75);
  z-index: 1;
}
.qs-cta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 88px clamp(24px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.qs-cta-title {
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.qs-cta-text {
  font-family: var(--font);
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 560px;
}


/* ── QS Responsive: Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  .qs-hero { min-height: 70svh; }
    .qs-hero {
    min-height: 70svh;
  }

  .qs-hero-bg-overlay {
    background: linear-gradient(
      to top,
      rgba(255,255,255,0.75) 0%,
      rgba(255,255,255,0.55) 40%,
      rgba(255,255,255,0.25) 70%,
      transparent 100%
    );
  }
  }
  .qs-hero-img-wrap { display: none; }
  .qs-historia-img-wrap { order: -1; }

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

  .qs-stat-divider:nth-child(6),
  .qs-stat-divider:nth-child(8) {
    display: none;
  }



/* ── QS Responsive: Mobile ≤ 768px ── */
@media (max-width: 768px) {
  .qs-hero { min-height: 60svh; }
  .qs-hero-bg-overlay {
    background: linear-gradient(
      to top,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0.92) 50%,
      rgba(255,255,255,0.70) 80%,
      transparent 100%
    );
  }
  .qs-historia-section,
  .qs-modelo-section,
  .qs-services-section,
  .qs-stats-section {
    padding: 64px 20px;
  }

  .qs-hero-inner    { padding: 72px 20px 48px; }
  .qs-dark-block    { padding: 72px 20px; }
  .qs-cta-inner     { padding: 72px 20px; }

  .qs-timeline-item {
    grid-template-columns: 52px 1fr;
    gap: 20px;
  }

  .qs-stats-inner {
    gap: 0;
  }
  .qs-stat {
    flex: 1 1 110px;
    padding: 20px 12px;
  }
  .qs-stat-divider {
    height: 40px;
  }
}


/* ── QS Responsive: Mobile ≤ 480px ── */
@media (max-width: 480px) {
  .qs-hero-inner { padding: 64px 16px 40px; }

  .qs-historia-section,
  .qs-modelo-section,
  .qs-services-section,
  .qs-stats-section {
    padding: 52px 16px;
  }

  .qs-dark-block  { padding: 56px 16px; }
  .qs-cta-inner   { padding: 56px 16px; }

  .qs-cards-grid  { grid-template-columns: 1fr; }

  .qs-stats-inner {
    flex-direction: column;
  }
  .qs-stat-divider {
    width: 48px;
    height: 1px;
  }

  .qs-btn-primary {
    width: 100%;
    justify-content: center;
  }
}


/* =============================================
   IMPULSO AL DEPORTE PAGE
   ============================================= */

body.impulso-page {
  background-image:
    linear-gradient(rgba(2, 8, 20, 0.80), rgba(2, 8, 20, 0.92)),
    url("../Img/06_id_fondo.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #02081a;
  color: #fff;
}

/* ── Hero ── */
.id-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(24px, 6vw, 80px) 80px;
  gap: 60px;
}

.id-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.id-eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.id-eyebrow--gold { color: #d6a514; }

.id-hero-title {
  font-family: var(--font);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -2px;
}

.id-gold { color: #d6a514; }

.id-hero-desc {
  font-family: var(--font);
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 680px;
}

.id-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d6a514;
  color: #02081a;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.id-btn:hover {
  background: #f0bd1a;
  transform: translateY(-2px);
}

.id-btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
}

.id-btn--outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ── Secciones ── */
.id-section {
  padding: 40px clamp(24px, 6vw, 80px) 80px;
}

.impulso-section {
  background: rgba(5, 12, 28, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 64px clamp(24px, 5vw, 72px);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.id-section-title {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

/* ── Cards grid ── */
.id-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.id-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: background 0.25s, transform 0.25s;
}

.id-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}

.id-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(214,165,20,0.15);
  border: 1px solid rgba(214,165,20,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6a514;
  flex-shrink: 0;
}

.id-card-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.id-card-text {
  font-family: var(--font);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── Stat bar ── */
.id-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  flex-wrap: wrap;
}

.id-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1 1 160px;
  padding: 24px 16px;
}

.id-stat-num {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #d6a514;
  line-height: 1;
}

.id-stat-label {
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.4;
}

.id-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Deportes list ── */
.id-sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.id-sport-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s, border-color 0.2s;
}

.id-sport-tag:hover {
  background: rgba(214,165,20,0.12);
  border-color: rgba(214,165,20,0.4);
  color: #fff;
}

.id-sport-tag svg { color: #d6a514; }

/* ── CTA ── */
.id-cta {
  padding: 40px clamp(24px, 6vw, 80px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.id-cta-title {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.id-cta-text {
  font-family: var(--font);
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 560px;
}

.id-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── impulso-page header: transparent → dark ── */
.impulso-page.hero-page .top-header:not(.scrolled) .main-nav ul li a,
.impulso-page.hero-page .top-header:not(.scrolled) .main-nav ul li .nav-toggle {
  color: rgba(255,255,255,0.88);
}
/* Dropdown items always dark (light bg) */
.impulso-page.hero-page .top-header:not(.scrolled) .main-nav .dropdown li a,
.impulso-page.hero-page .top-header:not(.scrolled) .main-nav .dropdown li a:hover {
  color: var(--text-dark);
}
.impulso-page.hero-page .top-header:not(.scrolled) .main-nav ul li a:hover,
.impulso-page.hero-page .top-header:not(.scrolled) .main-nav ul li .nav-toggle:hover {
  color: #d6a514;
}
.impulso-page.hero-page .top-header:not(.scrolled) .main-nav ul li a.active {
  color: #d6a514;
  border-bottom-color: #d6a514;
}
.impulso-page.hero-page .top-header:not(.scrolled) .tienda-btn {
  background: #d6a514;
  color: #02081a;
}
.impulso-page.hero-page .top-header:not(.scrolled) .hamburger span {
  background: #fff;
}


/* =============================================
   PANTALLAS GRANDES (≥ 1440px)
   Correcciones para lavado, quienes-somos, combustibles
   ============================================= */
@media (min-width: 1440px) {

  /* ── Lavado hero: alinear contenido con las secciones centradas de abajo ── */
  .lav-hero-content {
    padding-left: max(40px, calc((100% - 1160px) / 2));
  }

  .lav-hero-strip {
    padding-left:  max(40px, calc((100% - 1160px) / 2));
    padding-right: max(40px, calc((100% - 1160px) / 2));
    padding-bottom: 52px;
  }

  /* ── Combustibles hero: alinear con las secciones de max-width 1320px ── */
  .comb-hero-content {
    margin-left: max(clamp(32px, 10vw, 180px), calc((100% - 1320px) / 2));
  }

  /* ── Quienes somos: limitar eyebrow y sección stats en pantallas muy anchas ── */
  .qs-stats-inner {
    max-width: 1320px;
  }

  /* ── Lavado offer/ozono: asegurar que el inner no se estira ── */
  .lav-offer-inner,
  .lav-ozono-inner,
  .lav-cta-inner {
    padding-left: 0;
    padding-right: 0;
  }

  /* ── CTA lavado: centrado correcto ── */
  .lav-cta-inner {
    max-width: 1280px;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .id-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .id-sports-grid { grid-template-columns: repeat(3, 1fr); }
  .id-stat-divider:nth-child(8),
  .id-stat-divider:nth-child(10) { display: none; }
}

@media (max-width: 768px) {
  .id-hero { padding: 72px 20px 36px; }
  .id-section { padding: 24px 16px 56px; }
  .impulso-section { padding: 40px 20px; border-radius: 16px; gap: 32px; }
  .id-cards-grid { grid-template-columns: 1fr; }
  .id-sports-grid { grid-template-columns: repeat(2, 1fr); }
  .id-stat-divider { display: none; }
  .id-cta { padding: 56px 20px; }
}

@media (max-width: 480px) {
  .id-sports-grid { grid-template-columns: repeat(2, 1fr); }
  .id-btn { width: 100%; justify-content: center; }
  .id-cta-btns { flex-direction: column; width: 100%; }
  .id-cta-btns .id-btn { width: 100%; justify-content: center; }
}


/* ── Coverflow Carousel (impulso-al-deporte) ── */
.id-coverflow-wrap {
  width: 100%;
  max-width: 1100px;
  padding-bottom: 32px;
  flex-shrink: 0;
}

.id-cf-viewport {
  position: relative;
  height: 274px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.id-cf-card {
  position: absolute;
  width: 300px;
  height: 258px;
  top: 50%;
  left: 50%;
  margin-left: -150px;
  margin-top: -129px;
  border-radius: 16px;
  overflow: hidden;
  will-change: transform, opacity, filter;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity   0.45s ease,
    filter    0.45s ease,
    box-shadow 0.45s ease;
}

.id-cf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  .id-cf-viewport { height: 218px; }
  .id-cf-card { width: 240px; height: 206px; margin-left: -120px; margin-top: -103px; }
  .id-hero { gap: 40px; }
}

@media (max-width: 480px) {
  .id-cf-viewport { height: 182px; }
  .id-cf-card { width: 200px; height: 172px; margin-left: -100px; margin-top: -86px; }
}

/* ── Testimonio deportista ── */
.id-ambassadors-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 64px clamp(24px, 6vw, 80px) 40px;
}

.id-testimony {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Mirrored: text on the right, image on the left */
.id-testimony--right {
  background-position: left center;
  justify-content: flex-end;
}

.id-testimony--right .id-testimony-overlay {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.80) 0%,
    rgba(0, 0, 0, 0.72) 30%,
    rgba(0, 0, 0, 0.40) 55%,
    transparent 75%
  );
}

.id-testimony--right .id-testimony-content {
  padding-left: clamp(32px, 6vw, 80px);
  padding-right: clamp(32px, 7vw, 100px);
  text-align: right;
  align-items: flex-end;
}

.id-testimony-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.80) 0%,
    rgba(0, 0, 0, 0.72) 30%,
    rgba(0, 0, 0, 0.40) 55%,
    transparent 75%
  );
  z-index: 1;
}

.id-testimony-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 55%;
  padding: 80px clamp(32px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.id-testimony-quote {
  font-family: var(--font);
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
  quotes: none;
}

.id-testimony-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.id-testimony-name {
  font-family: var(--font);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.id-testimony-role {
  font-family: var(--font);
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 600;
  color: #D8A42D;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .id-testimony {
    background-position: 70% center;
    min-height: 420px;
  }
  .id-testimony-overlay {
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.70) 45%,
      rgba(0,0,0,0.20) 80%,
      transparent 100%
    );
  }
  .id-testimony-content { padding: 56px 28px; gap: 24px; }
}

@media (max-width: 480px) {
  .id-testimony {
    background-position: 65% center;
    min-height: 380px;
  }
  .id-testimony-overlay {
    background: rgba(0,0,0,0.72);
  }
  .id-testimony-content { padding: 48px 20px; }
}

/* ── Colaboradores logos ── */
.id-section--colabs {
  padding-top: 20;
}

/* ── Ambassadors wrapper: premium card layout ── */
.id-ambassadors-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 clamp(20px, 5vw, 80px) 72px;
}

.id-ambassadors-wrap .id-testimony {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30, 80, 160, 0.28);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.id-ambassadors-wrap .id-testimony:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.65),
    0 4px 16px rgba(30, 80, 160, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .id-ambassadors-wrap { gap: 22px; padding: 0 16px 56px; }
}
@media (max-width: 480px) {
  .id-ambassadors-wrap { gap: 16px; padding: 0 10px 44px; }
}

.id-colabs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px clamp(24px, 6vw, 80px);
  background: rgba(5, 12, 28, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
}

.id-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
}

.id-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  flex: 0 0 auto;
}

.id-logo-item:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(214,165,20,0.35);
  transform: translateY(-3px);
}

.id-logo-item img {
  height: 90px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.25s, filter 0.25s;
}

.id-logo-item:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg);
}

@media (max-width: 768px) {
  .id-logos-grid { gap: 28px; }
  .id-logo-item img { height: 70px; }
  .id-colabs-inner { padding: 48px 20px; gap: 32px; border-radius: 16px; }
}

@media (max-width: 480px) {
  .id-logos-grid { gap: 20px; }
  .id-logo-item img { height: 56px; }
}


/* =============================================
   CONTACTO PAGE
   ============================================= */

.ct-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #02081a;
}

/* Video background */
.ct-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ct-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;  /* 16/9 × 100vh */
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw; /* 9/16 × 100vw */
  transform: translate(-50%, -50%);
  border: none;
}

.ct-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(2, 8, 26, 0.55) 0%,
    rgba(2, 8, 26, 0.70) 60%,
    rgba(2, 8, 26, 0.85) 100%
  );
}

.ct-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px clamp(24px, 6vw, 80px) 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.ct-eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #D8A42D;
}

.ct-title {
  font-family: var(--font);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -2px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
}

.ct-intro {
  font-family: var(--font);
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 16px;
}

/* Cards grid */
.ct-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 960px;
}

.ct-card {
  background: rgba(5, 12, 28, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.25s, transform 0.25s;
}

.ct-card:hover {
  border-color: rgba(216,164,45,0.45);
  transform: translateY(-4px);
}

.ct-card--gold {
  border-color: rgba(216,164,45,0.30);
}

.ct-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(216,164,45,0.12);
  border: 1px solid rgba(216,164,45,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D8A42D;
  margin-bottom: 4px;
}

.ct-card-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.ct-phone {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.ct-phone:hover { color: #D8A42D; }

.ct-email {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.ct-email:hover { color: rgba(255,255,255,0.90); }

/* Responsive */
@media (max-width: 768px) {
  .ct-cards { grid-template-columns: 1fr; max-width: 400px; }
  .ct-content { padding: 100px 20px 60px; }
}

@media (max-width: 480px) {
  .ct-title { letter-spacing: -1px; }
  .ct-cards { gap: 16px; }
}


/* =============================================
   COMBUSTIBLES — RESPONSIVE (tablet & mobile)
   ============================================= */

/* ── Tablet: 768px–1199px ── */
@media (max-width: 1199px) {

  /* Hero */
  .comb-hero {
    min-height: 80vh;
    align-items: center;
  }

  .comb-hero-overlay {
    background: linear-gradient(
      to right,
      rgba(7,20,38,0.92) 0%,
      rgba(7,20,38,0.75) 55%,
      rgba(7,20,38,0.25) 90%,
      transparent 100%
    );
  }

  .comb-hero-content {
    margin-left: clamp(24px, 5vw, 60px);
    max-width: 520px;
  }

  /* Tecnología */
 .comb-tech-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
    padding: 0 32px;
  }

  .comb-tech-img-wrap {
    max-width: 100%;
    margin-left: 0;
    align-self: center;
    transform: none;
}

  .comb-tech-clip {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .comb-tech-deco { display: none; }

  .comb-tech-float-tag {
    bottom: -12px;
    left: 16px;
  }

    .comb-tech-badges {
    display: none;
  }

  /* Beneficios */
  .comb-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Tipos */
  .comb-types-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Origen */
  .comb-origin-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .comb-origin-img-wrap {
    max-width: 62%;
    margin-left: auto;
  }

  /* Highlight */
  .comb-highlight-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .comb-highlight-quote { max-width: 100%; }
}

/* ── Mobile: ≤767px ── */
@media (max-width: 767px) {

  /* Hero */
  .comb-hero {
    min-height: 75svh;
     align-items: center;
    padding-bottom: 0;
  }

  .comb-hero-overlay {
    background: linear-gradient(
      to top,
      rgba(7,20,38,0.96) 0%,
      rgba(7,20,38,0.70) 50%,
      transparent 100%
    );
  }

  .comb-hero-content {
    margin-left: 0;
    padding: 0 20px;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .comb-hero-subtitle { max-width: 100%; }

  .comb-hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .comb-hero-btns .comb-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Section labels & titles */
  .comb-section-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

   .comb-tech-badges {
        display: none;
    }

  /* Tecnología */

  .comb-tech-content {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.comb-tech-eyebrow {
    text-align: center;
}

.comb-tech-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.comb-tech-text {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
  .comb-tech-section { padding: 64px 0 56px; }

  .comb-tech-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  gap: 36px;
}

  .comb-tech-img-wrap {
    display: none;
  }

  .comb-tech-clip { aspect-ratio: 4/3; }

  .comb-tech-float-tag {
    bottom: -10px;
    left: 10px;
    padding: 10px 14px;
    min-width: 110px;
  }

  .comb-tech-float-num { font-size: 22px; }

  .comb-tech-badge { padding: 14px 0; }

  /* Beneficios */
  .comb-benefits-section { padding: 64px 0; }

  .comb-benefits-inner { padding: 0 20px; }

  .comb-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .comb-benefit-card { padding: 28px 20px; }

  /* Tipos */
  .comb-types-section { padding: 64px 0; }

  .comb-types-inner { padding: 0 20px; }

  .comb-types-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 20px;
    margin-top: 32px;
  }

  .comb-type-img-wrap { height: 200px; }

  .comb-type-body { padding: 24px 20px; }

  .comb-type-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Highlight */
  .comb-highlight-section {
    min-height: auto;
    background-attachment: scroll;
  }

  .comb-highlight-content {
    padding: 56px 20px;
    gap: 24px;
  }

  /* Origen */
  .comb-origin-section { padding: 64px 0; }

  .comb-origin-inner {
    padding: 0 20px;
    gap: 36px;
  }

  .comb-origin-img-wrap {
    max-width: 100%;
    margin-left: 0;
  }

  .comb-origin-badge { align-items: flex-start; }

  /* Sections generic padding */
  .comb-tech-section,
  .comb-types-section,
  .comb-origin-section {
    overflow-x: hidden;
  }
}

/* ── Extra small: ≤479px ── */
@media (max-width: 479px) {

  .comb-hero { min-height: 88svh; }

  .comb-hero-content { padding: 0 16px; }

  .comb-tech-inner,
  .comb-benefits-inner,
  .comb-types-inner,
  .comb-origin-inner { padding: 0 16px; }

  .comb-highlight-content { padding: 48px 16px; }

  .comb-tech-float-tag { display: none; }

  .comb-benefit-card { padding: 24px 16px; }

   .comb-tech-badges {
        display: none;
    }
}


/* =============================================
   GALERÍA CARRUSEL — gal-carousel
   ============================================= */

.gal-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  aspect-ratio: 16 / 9;
  background: #0a0e1a;
  user-select: none;
}

.gal-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Override gal-item defaults inside the carousel */
.gal-carousel .gal-item {
  min-width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: unset;
  cursor: pointer;
  flex-shrink: 0;
  transition: none;
}

.gal-carousel .gal-item:hover {
  transform: none;
  box-shadow: none;
}

.gal-carousel .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: none;
  pointer-events: none;
}

.gal-carousel .gal-item:hover img {
  transform: none;
}

/* Arrow buttons */
.gal-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7, 20, 38, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0;
}

.gal-carousel-btn:hover {
  background: rgba(216, 163, 40, 0.88);
  border-color: rgba(216, 163, 40, 0.55);
  transform: translateY(-50%) scale(1.1);
}

.gal-carousel-prev { left: 16px; }
.gal-carousel-next { right: 16px; }

/* Dot indicators */
.gal-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.gal-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.22s, width 0.22s;
  flex-shrink: 0;
}

.gal-dot.active {
  background: #d8a328;
  width: 24px;
}

/* ── Responsive: tablet ── */
@media (max-width: 1199px) {
  .gal-carousel {
    aspect-ratio: 4 / 3;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 767px) {
  .gal-carousel {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .gal-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .gal-carousel-prev { left: 10px; }
  .gal-carousel-next { right: 10px; }

  .gal-carousel-dots {
    bottom: 12px;
    gap: 6px;
  }

  .gal-dot { width: 7px; height: 7px; }
  .gal-dot.active { width: 20px; }
}


/* =============================================
   UBICACIONES DUAL (gasolineras.html)
   ============================================= */

.ubicaciones-dual-section {
  padding: 60px 0;
  background: #f8f9fb;
}

.ubicaciones-dual-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.ubicaciones-dual-header {
  text-align: center;
  margin-bottom: 52px;
}

.ubicaciones-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Individual station card */
.ubicacion-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ubicacion-card-info {
  padding: 36px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ubicacion-card-info .ubicacion-pg-label {
  margin-bottom: 18px;
}

.ubicacion-card-info .ubicacion-pg-title {
  font-size: clamp(22px, 2.2vw, 30px);
  margin-bottom: 14px;
}

.ubicacion-card-info .ubicacion-pg-address {
  margin-bottom: 24px;
}

.ubicacion-card-info .ubicacion-pg-badges {
  margin-bottom: 28px;
}

.ubicacion-card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ubicacion-card-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  min-height: 44px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ubicacion-card-tel:hover {
  border-color: #0A2E73;
  color: #0A2E73;
  background: rgba(10, 46, 115, 0.04);
}

.ubicacion-card-map {
  height: 280px;
  flex-shrink: 0;
}

.ubicacion-card-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive: tablet → stack dual grid */
@media (max-width: 1023px) {
  .ubicaciones-dual-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ubicacion-card-info {
    padding: 28px 28px 22px;
  }
}

/* Responsive: mobile */
@media (max-width: 600px) {
  .ubicaciones-dual-section {
    padding: 40px 0;
  }

  .ubicaciones-dual-inner {
    padding: 0 16px;
  }

  .ubicacion-card-info {
    padding: 24px 20px 18px;
  }

  .ubicacion-card-map {
    height: 230px;
  }

  .ubicacion-card-actions {
    flex-direction: column;
  }

  .ubicacion-card-actions .ubicacion-pg-cta,
  .ubicacion-card-tel {
    width: 100%;
    justify-content: center;
  }
}


/* =============================================
   INSTALACIONES GALLERY UNIFIED (gasolineras.html)
   ============================================= */

.instalaciones-gallery-unified {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .instalaciones-gallery-unified {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .instalaciones-gallery-unified {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}


/* =============================================
   AQUARAMA TECHNOLOGY SECTION (lavado.html)
   ============================================= */

.aqr-section {
  background: #fff;
  overflow: hidden;
}

/* ── Section header ── */
.aqr-header {
  text-align: center;
  padding: 88px clamp(24px, 8vw, 160px) 72px;
  max-width: 900px;
  margin: 0 auto;
}

.aqr-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.aqr-title {
  font-family: var(--font);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin: 0 0 24px;
}

.aqr-desc {
  font-family: var(--font);
  font-size: 17px;
  color: #5a6475;
  line-height: 1.75;
  max-width: 780px;
  margin: 0 auto;
}

.aqr-desc strong {
  color: var(--text-dark);
  font-weight: 700;
}

.aqr-br { display: block; }

/* ── Block layout ── */
.aqr-block {
  display: grid;
  grid-template-columns: 45% 1fr;
  min-height: 600px;
}

.aqr-block--s111 {
  background: #f8f9fb;
  grid-template-columns: 1fr 45%;
}

/* image column */
.aqr-block-img {
  position: relative;
  overflow: hidden;
}

.aqr-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aqr-block:hover .aqr-block-img img {
  transform: scale(1.04);
}

/* content column */
.aqr-block-content {
  padding: 64px clamp(36px, 5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* brand label */
.aqr-brand-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* giant model number */
.aqr-model-num {
  font-family: var(--font);
  font-size: clamp(72px, 11vw, 128px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 0.88;
  letter-spacing: -4px;
  margin: -4px 0;
}

.aqr-model-sub {
  font-family: var(--font);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.aqr-model-desc {
  font-family: var(--font);
  font-size: 15px;
  color: #5a6475;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* ── Benefits grid ── */
.aqr-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.aqr-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 16px 8px 14px;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* S9 benefits style */
.aqr-block--s9 .aqr-benefit {
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.18);
}

.aqr-block--s9 .aqr-benefit:hover {
  background: rgba(201, 162, 39, 0.13);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.15);
}

.aqr-block--s9 .aqr-benefit-icon {
  color: var(--gold);
}

/* S111 benefits style */
.aqr-block--s111 .aqr-benefit {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.aqr-block--s111 .aqr-benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.aqr-block--s111 .aqr-benefit-icon {
  color: #0A2E73;
  background: rgba(10, 46, 115, 0.07);
  border-radius: 50%;
}

.aqr-benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aqr-benefit strong {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* =============================================
   SECCIÓN: IMPULSAMOS TALENTOS, APOYAMOS PASIONES
   ============================================= */

.id-talentos-section {
  position: relative;
  background: #020B1C;
  padding: clamp(80px, 10vw, 120px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

/* SVG líneas decorativas de circuito */
.id-talentos-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.id-talentos-svg {
  width: 100%;
  height: 100%;
}

/* Contenedor interior */
.id-talentos-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* ── Cabecera ── */
.id-talentos-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 72px;
}

.id-talentos-title {
  font-family: var(--font);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.id-talentos-desc {
  font-family: var(--font);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Grid de tarjetas ── */
.id-talentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Tarjeta ── */
.id-talent-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
  cursor: pointer;
  background: #050f1e;
  border: 1px solid rgba(201, 162, 39, 0.18);
  transition:
    border-color 0.35s ease,
    box-shadow   0.35s ease,
    transform    0.35s ease;
}

.id-talent-card:hover {
  border-color: rgba(201, 162, 39, 0.7);
  box-shadow: 0 28px 64px rgba(201, 162, 39, 0.2);
  transform: translateY(-7px);
}

/* Imagen de fondo */
.id-talent-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
  z-index: 0;
}

.id-talent-card:hover .id-talent-bg {
  transform: scale(1.07);
}

/* Overlay degradado */
.id-talent-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 11, 28, 0.42) 0%,
    rgba(2, 11, 28, 0.62) 40%,
    rgba(2, 11, 28, 0.94) 100%
  );
  z-index: 1;
}

/* Contenido de la tarjeta */
.id-talent-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px 68px;
  gap: 6px;
}

.id-talent-icon {
  font-size: 2.1rem;
  margin-bottom: 8px;
  line-height: 1;
}

.id-talent-count {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #C9A227;
  text-transform: uppercase;
}

.id-talent-title {
  font-family: var(--font);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 4px;
  margin-bottom: 20px;
}

/* Lista de patrocinados */
.id-talent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.id-talent-list li {
  font-family: var(--font);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.id-talent-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #C9A227;
  border-radius: 50%;
}

/* Botón flecha circular */
.id-talent-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 3;
  width: 40px;
  height: 40px;
  min-height: unset;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.0);
  border: 1.5px solid rgba(201, 162, 39, 0.45);
  color: #C9A227;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity   0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
  pointer-events: none;
}

.id-talent-card:hover .id-talent-arrow {
  opacity: 1;
  transform: scale(1);
  background: rgba(201, 162, 39, 0.14);
}

/* Línea dorada animada inferior */
.id-talent-border-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A227, #f0d060, #C9A227);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 4;
}

.id-talent-card:hover .id-talent-border-line {
  transform: scaleX(1);
}

/* ── Responsive ── */
@media (max-width: 1080px) {
  .id-talentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .id-talent-card {
    min-height: 320px;
  }
  .id-talentos-header {
    margin-bottom: 56px;
  }
}

@media (max-width: 600px) {
  .id-talentos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .id-talent-card {
    min-height: 280px;
  }
  .id-talentos-header {
    margin-bottom: 40px;
  }
}

.aqr-benefit p {
  font-family: var(--font);
  font-size: 11px;
  color: #7a8494;
  line-height: 1.5;
  margin: 0;
}

/* ── Callout band ── */
.aqr-callout {
  background: var(--gold);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px 24px;
  border-radius: 12px;
  text-align: center;
  margin-top: 4px;
}

.aqr-callout--outline {
  background: transparent;
  color: #0A2E73;
  border: 2px solid #0A2E73;
}

/* ── Trust bar ── */
.aqr-trust {
  background: #0A2E73;
  padding: 52px clamp(24px, 7vw, 140px);
}

.aqr-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.aqr-trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.aqr-trust-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.aqr-trust-text strong {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 7px;
}

.aqr-trust-text p {
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
  margin: 0;
}

/* ── Scroll-reveal animation ── */
.aqr-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.aqr-animate.aqr-visible {
  opacity: 1;
  transform: none;
}

/* stagger siblings */
.aqr-benefit.aqr-animate:nth-child(2) { transition-delay: 0.08s; }
.aqr-benefit.aqr-animate:nth-child(3) { transition-delay: 0.16s; }
.aqr-benefit.aqr-animate:nth-child(4) { transition-delay: 0.24s; }
.aqr-benefit.aqr-animate:nth-child(5) { transition-delay: 0.32s; }
.aqr-trust-item.aqr-animate:nth-child(2) { transition-delay: 0.1s; }
.aqr-trust-item.aqr-animate:nth-child(3) { transition-delay: 0.2s; }
.aqr-trust-item.aqr-animate:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive: tablet ── */
@media (max-width: 1080px) {
  .aqr-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .aqr-trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .aqr-block,
  .aqr-block--s111 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* S111: image goes on top when stacked */
  .aqr-block--s111 .aqr-block-img {
    order: -1;
  }

  .aqr-block-img {
    height: 340px;
  }

  .aqr-block-content {
    padding: 48px 36px;
  }

  .aqr-model-num {
    font-size: 88px;
    letter-spacing: -3px;
  }

  .aqr-header {
    padding: 64px 32px 52px;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 600px) {
  .aqr-header {
    padding: 52px 20px 40px;
  }

  .aqr-br { display: none; }

  .aqr-block-img {
    height: 260px;
  }

  .aqr-block-content {
    padding: 36px 20px;
    gap: 14px;
  }

  .aqr-model-num {
    font-size: 72px;
    letter-spacing: -2px;
  }

  .aqr-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* show 5th benefit full-width on 2-col grid */
  .aqr-benefit:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }

  .aqr-callout {
    font-size: 12px;
    padding: 12px 16px;
  }

  .aqr-trust {
    padding: 40px 20px;
  }

  .aqr-trust-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}


/* =============================================
   QUIÉNES SOMOS — REDESIGN (pgqs-*)
   ============================================= */

/* ── Shared ── */
.pgqs-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.pgqs-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.pgqs-eyebrow--light { color: rgba(255,255,255,0.65); }

.pgqs-gold { color: var(--gold); }

.pgqs-section-title {
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0;
}

.pgqs-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.pgqs-section-header p {
  font-size: 16px;
  color: #5a6475;
  line-height: 1.7;
  max-width: 640px;
  margin: 14px auto 0;
}

/* ── Reveal animation ── */
.pgqs-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pgqs-reveal.pgqs-revealed { opacity: 1; transform: none; }
.pgqs-reveal:nth-child(2) { transition-delay: 0.1s; }
.pgqs-reveal:nth-child(3) { transition-delay: 0.2s; }
.pgqs-reveal:nth-child(4) { transition-delay: 0.3s; }
.pgqs-reveal:nth-child(5) { transition-delay: 0.4s; }

/* ── Buttons ── */
.pgqs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 44px;
}
.pgqs-btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.4);
}
.pgqs-btn-primary--dark { background: #0A2E73; }
.pgqs-btn-primary--dark:hover { background: #0d3a90; box-shadow: 0 8px 28px rgba(10,46,115,0.4); }

.pgqs-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.45);
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  min-height: 44px;
}
.pgqs-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.pgqs-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #0A2E73;
  border: 2px solid #0A2E73;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  min-height: 44px;
}
.pgqs-btn-outline-dark:hover { background: rgba(10,46,115,0.07); transform: translateY(-2px); }


/* ============================================
   S1 · HERO
   ============================================ */
.pgqs-hero {
  position: relative;
  width: 100vw;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pgqs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4,12,28,0.9) 0%, rgba(6,18,42,0.72) 40%, rgba(6,18,42,0.25) 70%, transparent 100%);
  z-index: 1;
}

.pgqs-hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(80px, 12vw, 220px) 48px;
  gap: 22px;
}

.pgqs-hero-title {
  font-family: var(--font);
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin: 0;
}

.pgqs-hero-sub {
  font-size: clamp(20px, 1.7vw, 20px);
  color: rgba(255,255,255,1);
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

.pgqs-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* Perks band */
.pgqs-perks-band {
  position: relative;
  z-index: 2;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: none;
}

.pgqs-perks-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pgqs-perk {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.pgqs-perk:last-child { border-right: none; }

.pgqs-perk-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.pgqs-perk strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pgqs-perk span:not(.pgqs-perk-icon)   { font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.45; }


/* ============================================
   S2 · CIFRAS
   ============================================ */
.pgqs-stats-section {
  padding: 80px 0;
  background: #fff;
}

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

.pgqs-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 20px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.pgqs-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #0A2E73);
  opacity: 0;
  transition: opacity 0.25s;
}
.pgqs-stat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.pgqs-stat-card:hover::before { opacity: 1; }

.pgqs-stat-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.pgqs-stat-prefix { font-family: var(--font); font-size: 26px; font-weight: 800; color: var(--gold); line-height: 1; }
.pgqs-stat-num    { font-family: var(--font); font-size: clamp(38px, 4vw, 54px); font-weight: 800; color: var(--text-dark); line-height: 1; font-variant-numeric: tabular-nums; }
.pgqs-stat-num--fixed { font-size: clamp(32px, 3.5vw, 46px); }
.pgqs-stat-unit   { font-family: var(--font); font-size: 15px; font-weight: 700; color: #0A2E73; }
.pgqs-stat-label  { font-family: var(--font); font-size: 12.5px; color: #7a8494; line-height: 1.4; margin: 6px 0 0; }


/* ============================================
   S3 · TIMELINE
   ============================================ */
.pgqs-timeline-section { padding: 88px 0; background: #f8f9fb; }

.pgqs-timeline {
  display: flex;
  position: relative;
  margin-top: 8px;
}

.pgqs-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(10% - 1px);
  right: calc(10% - 1px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, #0A2E73 100%);
  z-index: 0;
}

.pgqs-tl-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.pgqs-tl-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(201,162,39,0.18);
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.pgqs-tl-item:hover .pgqs-tl-icon { background: var(--gold); color: #fff; }

.pgqs-tl-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0A2E73;
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #fff;
}

.pgqs-tl-year { font-family: var(--font); font-size: 18px; font-weight: 800; color: #0A2E73; margin-bottom: 8px; }
.pgqs-tl-text { font-family: var(--font); font-size: 13px; color: #5a6475; line-height: 1.55; margin: 0; }


/* ============================================
   S4 · COMBUSTIBLES
   ============================================ */
.pgqs-fuel-section { background: #fff; overflow: hidden; }

.pgqs-fuel-grid {
  display: grid;
  grid-template-columns: 40% 1fr 260px;
  min-height: 580px;
}

.pgqs-fuel-img { position: relative; overflow: hidden; }
.pgqs-fuel-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.pgqs-fuel-img:hover img { transform: scale(1.04); }

.pgqs-fuel-content {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.pgqs-fuel-eyebrow { font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

.pgqs-fuel-content h2 {
  font-family: var(--font);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

.pgqs-fuel-content p { font-family: var(--font); font-size: 15px; color: #5a6475; line-height: 1.75; margin: 0; }

.pgqs-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; }

.pgqs-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.pgqs-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Side card */
.pgqs-fuel-card {
  background: #071a3e;
  position: relative;
  overflow: hidden;
}
.pgqs-fuel-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.9;
  display: block;
}
.pgqs-fuel-card-text {
  position: relative;
  z-index: 2;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: flex-start;
}
.pgqs-fuel-card strong { font-family: var(--font); font-size: 22px; font-weight: 800; color: #fff; line-height: 1.25; display: block; }
.pgqs-fuel-card p      { font-family: var(--font); font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.6; margin: 0; }


/* ============================================
   S5 · DEPORTE / CAROUSEL
   ============================================ */
.pgqs-sport-section { padding: 72px 0; background: #0A2E73; overflow: hidden; }

.pgqs-sport-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: center;
}

.pgqs-sport-text { display: flex; flex-direction: column; gap: 18px; }
.pgqs-sport-eyebrow { font-family: var(--font); font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.pgqs-sport-title { font-family: var(--font); font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; color: #fff; line-height: 1.2; margin: 0; }
.pgqs-sport-desc  { font-family: var(--font); font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.7; margin: 0; }

.pgqs-sport-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid rgba(201,162,39,0.35);
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  width: fit-content;
  min-height: 44px;
}
.pgqs-sport-link:hover { background: rgba(201,162,39,0.12); border-color: var(--gold); }

.pgqs-sport-carousel-wrap { position: relative; overflow: hidden; }

.pgqs-sport-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.pgqs-sport-carousel::-webkit-scrollbar { display: none; }

.pgqs-sport-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s;
}
.pgqs-sport-card:hover { transform: scale(1.02); }

.pgqs-sport-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.pgqs-sport-card-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,46,115,0.92), transparent);
  padding: 32px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pgqs-sport-card-cap strong { font-family: var(--font); font-size: 13px; font-weight: 700; color: #fff; }
.pgqs-sport-card-cap span   { font-family: var(--font); font-size: 11px; color: rgba(255,255,255,0.62); }

.pgqs-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
  min-height: 44px;
  min-width: 44px;
}
.pgqs-carousel-btn:hover { background: rgba(255,255,255,0.26); }
.pgqs-carousel-btn--prev { left: 0; }
.pgqs-carousel-btn--next { right: 0; }


/* ============================================
   S6 · TESTIMONIOS
   ============================================ */
.pgqs-reviews-section { padding: 88px 0; background: #fff; }

.pgqs-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pgqs-review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pgqs-review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

.pgqs-stars { display: flex; gap: 4px; color: var(--gold); }

.pgqs-review-text { font-family: var(--font); font-size: 15px; color: #444; line-height: 1.7; font-style: italic; margin: 0; flex: 1; }

.pgqs-review-author { display: flex; align-items: center; gap: 14px; margin-top: 4px; }

.pgqs-review-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(201,162,39,0.28); }

.pgqs-review-name { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--text-dark); display: block; }
.pgqs-review-role { font-family: var(--font); font-size: 12px; color: #7a8494; }


/* ============================================
   S7 · FRANQUICIAS / MAPA
   ============================================ */
.pgqs-franchise-section { overflow: hidden; }

.pgqs-franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

/* Left */
.pgqs-franchise-left {
  position: relative;
  background: #0A2E73;
  padding: 72px clamp(36px, 6vw, 88px);
}

.pgqs-franchise-left-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.pgqs-franchise-left-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  justify-content: center;
}

.pgqs-franchise-eyebrow { font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

.pgqs-franchise-left-content h2 { font-family: var(--font); font-size: clamp(24px, 2.8vw, 36px); font-weight: 800; color: #fff; line-height: 1.2; margin: 0; }
.pgqs-franchise-left-content > p { font-family: var(--font); font-size: 15px; color: rgba(255,255,255,0.68); margin: 0; }

.pgqs-franchise-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }

.pgqs-franchise-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}

.pgqs-franchise-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(201,162,39,0.18);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Right */
.pgqs-franchise-right {
  background: #f8f9fb;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.pgqs-franchise-right-title { font-family: var(--font); font-size: clamp(20px, 2.4vw, 30px); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin: 0; }

.pgqs-map-legend { display: flex; flex-direction: column; gap: 10px; }
.pgqs-legend-item { display: flex; align-items: center; gap: 10px; font-family: var(--font); font-size: 13.5px; color: #5a6475; }
.pgqs-legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.pgqs-legend-dot--dashed { background: #d1d5db; outline: 1.5px dashed #888; outline-offset: 1px; }

.pgqs-map-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.pgqs-map-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* ============================================
   S8 · REDES SOCIALES
   ============================================ */
.pgqs-social-section { padding: 72px 0; background: #fff; border-top: 1px solid var(--border); }

.pgqs-social-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.pgqs-social-brand strong { font-family: var(--font); display: block; font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.pgqs-social-brand p      { font-family: var(--font); font-size: 13px; color: #7a8494; margin: 0 0 20px; }

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

.pgqs-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A2E73;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  min-height: 44px;
  min-width: 44px;
}
.pgqs-social-icon:hover { background: #0A2E73; color: #fff; transform: translateY(-2px); }

.pgqs-social-feed h3           { font-family: var(--font); font-size: 22px; font-weight: 800; color: var(--text-dark); margin: 0 0 4px; }
.pgqs-social-feed-tag          { font-family: var(--font); font-size: 13px; color: var(--gold); font-weight: 600; margin: 0 0 18px; }

.pgqs-ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.pgqs-ig-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1; cursor: pointer; position: relative; }
.pgqs-ig-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s, filter 0.3s; }
.pgqs-ig-item::after { content: ''; position: absolute; inset: 0; background: transparent; transition: background 0.3s; }
.pgqs-ig-item:hover img { transform: scale(1.07); }
.pgqs-ig-item:hover::after { background: rgba(10,46,115,0.18); }

.pgqs-social-web strong        { font-family: var(--font); display: block; font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.pgqs-social-web p             { font-family: var(--font); font-size: 13px; color: #7a8494; margin: 0 0 14px; }
.pgqs-social-web-preview       { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.pgqs-social-web-preview img   { width: 100%; height: auto; display: block; }
.pgqs-web-icon-wrap            { width: 54px; height: 54px; border-radius: 14px; background: rgba(10,46,115,0.08); display: flex; align-items: center; justify-content: center; color: #0A2E73; margin-bottom: 10px; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .pgqs-stats-grid       { grid-template-columns: repeat(3, 1fr); }
  .pgqs-fuel-grid        { grid-template-columns: 40% 1fr; }
  .pgqs-fuel-card        { display: none; }
  .pgqs-social-grid      { grid-template-columns: 1fr 1fr; }
  .pgqs-social-web       { display: none; }
}

@media (max-width: 1024px) {
  .pgqs-sport-inner      { grid-template-columns: 1fr; gap: 40px; }
  .pgqs-franchise-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .pgqs-perks-inner      { grid-template-columns: repeat(2, 1fr); }
  .pgqs-fuel-grid        { grid-template-columns: 1fr; }
  .pgqs-fuel-img         { height: 300px; }
  .pgqs-reviews-grid     { grid-template-columns: 1fr; }
  .pgqs-timeline         { flex-direction: column; align-items: center; gap: 32px; }
  .pgqs-timeline::before { display: none; }
  .pgqs-tl-item          { flex-direction: row; text-align: left; gap: 20px; max-width: 480px; width: 100%; }
  .pgqs-tl-icon          { margin-bottom: 0; }
}

@media (max-width: 768px) {
  .pgqs-stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .pgqs-hero-inner       { padding: 64px 24px 32px; }
  .pgqs-reviews-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .pgqs-hero-btns        { flex-direction: column; }
  .pgqs-perks-inner      { grid-template-columns: 1fr 1fr; }
  .pgqs-perk             { padding: 18px 12px; flex-direction: column; text-align: center; }
  .pgqs-perk-icon        { margin: 0 auto; }
  .pgqs-stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .pgqs-stat-card:nth-child(5) { grid-column: 1 / -1; }
  .pgqs-social-grid      { grid-template-columns: 1fr; }
  .pgqs-ig-grid          { grid-template-columns: repeat(3, 1fr); }
  .pgqs-fuel-content     { padding: 36px 20px; }
}


/* =============================================
   TECNOLOGÍA DE ADITIVACIÓN PETROGOLD (cbt-aditiv-*)
   ============================================= */

.cbt-aditiv-section {
  padding: 88px 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}

.cbt-aditiv-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

/* Header */
.cbt-aditiv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.cbt-aditiv-header {
  text-align: left;
  max-width: none;
  margin: 0;
}

.cbt-aditiv-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 14px;
}

.cbt-aditiv-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 20px;
}

.cbt-aditiv-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #5a6475;
  line-height: 1.78;
  margin: 0;
}

/* Grid */
.cbt-aditiv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Block */
.cbt-aditiv-block {
  border-radius: 24px;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.cbt-aditiv-block--gas {
  background: #0A2E73;
}

.cbt-aditiv-block--diesel {
  background: #f8f9fb;
  border: 1px solid #e0e0e0;
}

/* Decorative number */
.cbt-aditiv-block::after {
  content: attr(data-num);
  position: absolute;
  right: 28px;
  bottom: -18px;
  font-family: 'Manrope', sans-serif;
  font-size: 130px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cbt-aditiv-block--gas::after  { color: rgba(255,255,255,0.05); }
.cbt-aditiv-block--diesel::after { color: rgba(10,46,115,0.07); }

/* Icon */
.cbt-aditiv-block-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cbt-aditiv-block--gas    .cbt-aditiv-block-icon { background: rgba(201,162,39,0.18); color: #C9A227; }
.cbt-aditiv-block--diesel .cbt-aditiv-block-icon { background: rgba(10,46,115,0.1);  color: #0A2E73; }

/* Label */
.cbt-aditiv-block-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cbt-aditiv-block--gas    .cbt-aditiv-block-label { color: rgba(255,255,255,0.55); }
.cbt-aditiv-block--diesel .cbt-aditiv-block-label { color: #0A2E73; }

/* Title */
.cbt-aditiv-block-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.cbt-aditiv-block--gas    .cbt-aditiv-block-title { color: #fff; }
.cbt-aditiv-block--diesel .cbt-aditiv-block-title { color: #1a1a1a; }

/* Highlight pill */
.cbt-aditiv-block-highlight {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
}

.cbt-aditiv-block--gas    .cbt-aditiv-block-highlight { background: rgba(201,162,39,0.18); color: #C9A227; border: 1px solid rgba(201,162,39,0.3); }
.cbt-aditiv-block--diesel .cbt-aditiv-block-highlight { background: rgba(10,46,115,0.08);  color: #0A2E73;  border: 1px solid rgba(10,46,115,0.2); }

/* Description */
.cbt-aditiv-block-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
}

.cbt-aditiv-block--gas    .cbt-aditiv-block-desc { color: rgba(255,255,255,0.68); }
.cbt-aditiv-block--diesel .cbt-aditiv-block-desc { color: #5a6475; }

/* Responsive */
@media (max-width: 960px) {
  .cbt-aditiv-layout { grid-template-columns: 1fr; gap: 48px; }
  .cbt-aditiv-header { text-align: center; }
  .cbt-aditiv-grid   { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .cbt-aditiv-grid  { grid-template-columns: 1fr; }
  .cbt-aditiv-block { padding: 40px 28px; }
}
