/* ========== 1. GLOBAL ========== */

img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Permitir eventos en imágenes que necesitan ser clickeables */
a img,
button img,
label img {
  pointer-events: auto;
}

/* Excepción para el icono del mapa que necesita eventos */
.cobertura-mapa__icon {
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
}

/* ========== 2. HOME (index.html) ========== */

/* Top Bar */
.topbar {
  background: var(--color-secondary);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 40px;
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__contact {
  display: flex;
  gap: 2rem;
}

.topbar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.topbar__link:hover {
  opacity: 0.8;
}

.topbar__link svg {
  flex-shrink: 0;
}

.topbar__social {
  display: flex;
  gap: 1rem;
}

.topbar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}

.topbar__social a:hover {
  opacity: 0.8;
}

/* Hero */
.hero--home {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 650px;
  overflow: hidden;
  padding-top: 130px;
}

.hero--home::before,
.hero--home::after {
  display: none !important;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  overflow: hidden;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero__background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero__overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero__box {
  padding: 4.5rem 4.5rem 3.5rem 4.5rem;
  margin-left: 0;
  width: 48%;
  max-width: 650px;
  position: relative;
  aspect-ratio: 1.5 / 1;
}

.hero__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/servicios/asset11.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.75;
  z-index: -1;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-white);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero__btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero__btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero__btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero__btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(224, 0, 32, 0.3);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.preloader__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeInScale 0.8s ease-out;
}

.preloader__logo {
  height: 60px;
  width: auto;
  opacity: 0;
  animation: logoFadeIn 0.6s ease-out forwards;
}

.preloader__logo:first-child {
  animation-delay: 0.2s;
}

.preloader__logo:last-child {
  animation-delay: 0.5s;
}

.preloader__separator {
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: logoFadeIn 0.6s ease-out forwards;
  animation-delay: 0.35s;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.preloader__spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader__text {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.6s forwards;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   ANIMACIONES GLOBALES
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.7) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Clases de animación */
.animate-fadeInUp {
  animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-slideInRight {
  animation: slideInRight 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.animate-scaleIn {
  animation: scaleIn 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Delays para animaciones escalonadas */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }

/* Estado inicial para elementos animados */
.animate-fadeInUp,
.animate-fadeIn,
.animate-slideInLeft,
.animate-slideInRight,
.animate-scaleIn {
  opacity: 0;
}

/* Asegurar que las animaciones de carga no interfieran con hover */
.animate-fadeInUp,
.animate-fadeIn,
.animate-slideInLeft,
.animate-slideInRight,
.animate-scaleIn {
  will-change: opacity, transform;
}

/* Mantener estado final después de la animación */
.animate-fadeInUp.animated,
.animate-fadeIn.animated,
.animate-slideInLeft.animated,
.animate-slideInRight.animated,
.animate-scaleIn.animated {
  opacity: 1 !important;
  transform: none !important;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Mejoras generales de transiciones */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

a, button, .btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   HEADER - LOGO DOBLE Y NAVEGACIÓN
   ========================================================================== */

/* Logo doble */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1000;
}

.header__logo-inter {
  height: 28px;
  width: auto;
}

.header__logo-heli {
  height: 28px;
  width: auto;
}



/* Ajustar padding del body para compensar el header más alto */
.hero {
  padding-top: 90px;
}

/* Ajustar espaciado de la navegación con más items */
.nav__list {
  gap: 1rem;
}

.nav__link {
  font-size: 0.8125rem;
  white-space: nowrap;
}

/* ==========================================================================
   MEGA MENU - DROPDOWN DE PRODUCTOS
   ========================================================================== */

/* Item con dropdown */
.nav__item-dropdown {
  position: relative;
}

/* Flecha del dropdown */
.nav__arrow {
  font-size: 0.6rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.nav__item-dropdown:hover .nav__arrow {
  transform: rotate(180deg);
}

/* Mega menú oculto por defecto */
.nav__mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 1rem;
  border-radius: 8px;
}

.nav__item-dropdown:hover .nav__mega-menu,
.nav__item-dropdown.active .nav__mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

/* Dropdown simple */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 1rem;
  border-radius: 8px;
  min-width: 200px;
}

.nav__item-dropdown:hover .nav__dropdown,
.nav__item-dropdown.active .nav__dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.nav__dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.nav__dropdown-link:hover {
  background: var(--color-gray-100);
  color: var(--color-primary);
}

.nav__dropdown-link.active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Grid de productos */
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  min-width: 800px;
}

/* Item individual con imagen y texto superpuesto */
.mega-menu__item {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

.mega-menu__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mega-menu__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mega-menu__item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.03em;
  background: rgba(12, 19, 33, 0.7);
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   PRODUCTS SECTION - NUEVO DISEÑO
   ========================================================================== */

/* Label arriba en gris con línea debajo */
.products .section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.products .section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
}

/* Header de productos - grid simple */
.products__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

/* Título más ancho con línea roja debajo */
.products__header .section-title {
  margin: 0;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 600px;
  position: relative;
  padding-bottom: 1.5rem;
}



/* Contenedor derecho */
.products__header-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
  text-align: center;
}

/* Descripción sin márgenes */
.products__header-right .section-subtitle {
  margin: 0;
}

/* Botón rojo sólido en lugar de outline */
.products__header .btn--outline {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
}

.products__header .btn--outline:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* Ajustes específicos sección Quiénes Somos (index) */
.about.section .section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.about.section .section-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
}

.about.section .products__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.about.section .products__header .section-title {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1f1f1f;
  max-width: 520px;
}

.about.section .products__header-right {
  align-items: flex-start;
  text-align: right;
  gap: 1.5rem;
}

.about.section .products__header-right .section-subtitle {
  color: #4a4a4a;
  font-size: 1.2rem;
}

/* Ocultar el label "Popular" */
.product-card__label {
  display: none;
}

/* Quitar completamente las tarjetas */
.product-card {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.product-card__image {
  border-radius: 0 0 0 40px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

.product-card__image img {
  border-radius: 0 0 0 40px;
  display: block;
  width: 100%;
  height: auto;
}

/* Nombre del producto con overlay a todo el ancho */
.product-card__name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
  background: rgba(12, 19, 33, 0.7);
  text-shadow: none;
  z-index: 2;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0 40px;
}

/* Ocultar el contenido de texto antiguo */
.product-card__content {
  display: none;
}

.product-card__title {
  display: none;
}

.product-card__category {
  display: none;
}

/* ==========================================================================
   ABOUT SECTION - NUEVO DISEÑO
   ========================================================================== */

/* Sección About sin fondo */
.about {
  padding: 4rem 0 0 0;
}

/* Label con línea decorativa */
.about .section-label {
  display: inline-block;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.about .section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gray-300);
}

/* Header con título y descripción */
.about__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about__header .section-title {
  margin: 0;
  font-size: 2.5rem;
}

.about__header .section-subtitle {
  margin: 0;
  font-size: 1.125rem;
  color: var(--color-text);
}

/* Sección gris con features e imagen */
.about__gray-section {
  background: var(--color-gray-100);
  padding: 4rem 0;
}

/* Wrapper con grid */
.about__content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Features a la izquierda */
.about__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Item con chevron */
.about__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* Chevron rojo */
.about__chevron {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.about__item-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-dark);
}

.about__item-content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Imagen a la derecha */
.about__image {
  width: 100%;
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   SERVICES SECTION - NUEVO DISEÑO
   ========================================================================== */

/* Asegurar que servicios tenga fondo blanco */
.services {
  background: var(--color-white);
  position: relative;
  z-index: 1;
}

/* Label arriba con línea */
.services .section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.services .section-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
}

/* Header horizontal: título y descripción lado a lado */
.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.services__header .section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

.services__header .section-subtitle {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  margin: 0;
}

/* Grid de servicios */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* Tarjetas con imágenes */
.service-card {
  text-align: center;
  display: block;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card:hover .service-card__image img {
  transform: scale(1.1) rotate(5deg);
}

.service-card__image {
  margin-bottom: 2rem;
}

.service-card__image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.service-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin: 0;
}

/* ==========================================================================
   FOOTER Y CONTACTO - LOGO DOBLE
   ========================================================================== */

/* Textos de contacto info */
.contact__info {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.contact__quote {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin: 0 0 2rem 0;
}

.contact__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem 0;
}

.contact__info .btn {
  display: inline-block;
  margin-top: 0.5rem;
}

/* Logo único en contacto (legacy - mantener por si se usa en index) */
.contact__logo {
  margin-bottom: 2.5rem;
}

.contact__logo-main {
  height: 60px;
  width: auto;
}

/* Detalles de contacto simplificados (legacy) */
.contact__details {
  margin-bottom: 2.5rem;
}

.contact__details p {
  margin: 0 0 0.75rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Redes sociales (legacy) */
.contact__social {
  display: flex;
  gap: 1rem;
}

.contact__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-dark);
  transition: all 0.3s ease;
}

.contact__social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.contact__social svg {
  width: 20px;
  height: 20px;
}

/* Botón de contacto */
.btn--contact {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 0.875rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn--contact:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

/* Logo doble en footer */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer__logo-heli {
  height: 35px;
  width: auto;
}

.footer__logo-inter {
  height: 50px;
  width: auto;
}

/* ========== 3. POSVENTA (posventa.html) ========== */

.hero-posventa {
  padding: 6rem 0;
  background: var(--color-gray-50);
}

.hero-posventa__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Card roja con forma redondeada */
.hero-posventa__card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 80px;
  padding: 4rem 3rem;
  color: var(--color-white);
  position: relative;
}

.hero-posventa__card--red {
  background-image: url('../images/servicios/asset11.png') !important;
  background-color: transparent !important;
}

.hero-posventa__icon {
  margin-bottom: 2rem;
}

.hero-posventa__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.hero-posventa__title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.hero-posventa__subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 0 2rem 0;
  opacity: 0.95;
}

.hero-posventa__card .btn {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-posventa__card .btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
}

/* Imagen del autoelevador */
.hero-posventa__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-posventa__image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  transform: scaleX(-1);
}

/* ==========================================================================
   FLEET SECTION - POSVENTA
   ========================================================================== */

.fleet-section {
  padding: 4rem 0;
}

.fleet-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: #f5f5f5;
  padding: 4rem;
  border-radius: 40px;
}

.fleet-section__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fleet-section__title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-dark);
}

.fleet-section__badge {
  display: inline-block;
  max-width: fit-content;
}

.fleet-section__badge img {
  height: 100px;
  width: auto;
  display: block;
}

.fleet-section__text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--color-gray-700);
  margin: 0;
}

.fleet-section__text strong {
  color: var(--color-dark);
  font-weight: 700;
}

/* ==========================================================================
   SERVICES POSVENTA
   ========================================================================== */

.services-posventa {
  padding: 4rem 0;
  background: var(--color-white);
}

.services-posventa__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 3rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-dark);
  max-width: fit-content;
}

.services-posventa__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-posventa-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 0 0 60px 0;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-posventa-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-posventa-card__icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.service-posventa-card__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-posventa-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.service-posventa-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-posventa-card__list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-700);
  margin-bottom: 0.75rem;
}

.service-posventa-card__list li:last-child {
  margin-bottom: 0;
}

.service-posventa-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-700);
  margin-bottom: 1.5rem;
}

.service-posventa-card__link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-posventa-card__link:hover {
  color: var(--color-dark);
}

/* Fleet Section List */
.fleet-section__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.fleet-section__list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fleet-section__list li i {
  font-size: 0.875rem;
}

.fleet-section__list li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   CTA ALQUILER RED
   ========================================================================== */

.cta-alquiler-red {
  padding: 5rem 0;
  background: #e30613;
}

.cta-alquiler-red__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-alquiler-red__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-alquiler-red__logo img {
  width: 100%;
  max-width: 250px;
  height: auto;
  filter: brightness(0) invert(1);
}

.cta-alquiler-red__card {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.cta-alquiler-red__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark);
  margin: 0 0 2rem 0;
}

.btn--red {
  background: #e30613;
  color: var(--color-white);
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}

.btn--red:hover {
  background: #c00510;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

/* ==========================================================================
   REPUESTOS - CATEGORÍAS
   ========================================================================== */

.repuestos-categorias {
  padding: 4rem 0;
}

.repuestos-categorias__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 3rem;
  white-space: nowrap;
}

.repuestos-categorias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2rem;
  margin-bottom: 2.5rem;
}

.categoria-item {
  background: var(--color-white);
  padding: 2rem 1.5rem;
  border-left: 3px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.categoria-item:hover {
  transform: translateX(8px);
  box-shadow: -6px 6px 20px rgba(0, 0, 0, 0.12);
  border-left-width: 5px;
}

.categoria-item__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.categoria-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.categoria-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.categoria-item__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-gray-600);
  margin: 0;
}

.repuestos-categorias__cta {
  text-align: center;
  margin-top: 3rem;
}

.repuestos-categorias__cta .btn {
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 700;
}

/* ==========================================================================
   EQUIPOS ALQUILER - DISEÑO CON TARJETAS
   ========================================================================== */

.equipos-alquiler {
  padding: 5rem 0;
  background: #f5f5f5;
}

.equipos-alquiler__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.equipos-alquiler__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-primary);
}

.equipos-alquiler__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.equipo-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.equipo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.equipo-card__header {
  background: var(--color-secondary);
  padding: 1rem 1.5rem;
}

.equipo-card__header h3 {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}

.equipo-card__image {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  padding: 2.5rem;
}

.equipo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.equipo-card__content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  justify-content: space-between;
}

.equipo-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
  min-height: 120px;
}

.equipo-card__features li {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-gray-700);
  padding-left: 1.5rem;
  position: relative;
}

.equipo-card__features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.equipo-card__btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #e8e8e8;
  color: var(--color-dark);
  text-align: center;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.equipo-card__btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ==========================================================================
   PROCESS POSVENTA - CÓMO TRABAJAMOS
   ========================================================================== */

.process-posventa {
  padding: 4rem 0;
  background: var(--color-white);
}

.process-posventa__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 3rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-dark);
  max-width: fit-content;
}

.process-posventa__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-posventa-card {
  background: #2c3e50;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 0 60px 0;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  color: var(--color-white);
}

.process-posventa-card__icon {
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-posventa-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.process-posventa-card__content {
  flex: 1;
}

.process-posventa-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.process-posventa-card__number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  display: block;
}

.process-posventa-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.process-posventa-card__text {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.process-posventa-card__arrow {
  flex-shrink: 0;
}

.process-posventa-card__arrow img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* ==========================================================================
   WHY POSVENTA - POR QUÉ ELEGIR
   ========================================================================== */

.why-posventa {
  padding: 4rem 0;
  background: var(--color-white);
}

.why-posventa__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 3rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-dark);
  max-width: fit-content;
}

.why-posventa__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-posventa-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
}

.why-posventa-item:nth-child(odd) {
  background: #f5f5f5;
}

.why-posventa-item:nth-child(even) {
  background: var(--color-white);
}

.why-posventa-item__icon {
  flex-shrink: 0;
}

.why-posventa-item__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.why-posventa-item__text {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--color-gray-700);
  margin: 0;
}

.why-posventa-item__text strong {
  color: var(--color-secondary);
  font-weight: 700;
}

/* ==========================================================================
   CTA POSVENTA
   ========================================================================== */

.cta-posventa {
  background: var(--color-primary);
  padding: 4rem 0;
}

.cta-posventa__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.cta-posventa__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-posventa__logo {
  width: 280px;
  height: auto;
}

.cta-posventa__title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 300;
  color: var(--color-white);
  margin: 0;
}

.cta-posventa__title strong {
  font-weight: 700;
}

.cta-posventa__card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 0 80px 0;
  padding: 3rem;
  color: var(--color-dark);
}

.cta-posventa__quote {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
  margin: 0 0 1rem 0;
}

.cta-posventa__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-700);
  margin: 0 0 2rem 0;
}

.cta-posventa__card .btn {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cta-posventa__card .btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
}

/* ==========================================================================
   6. RESPONSIVE - MEDIA QUERIES
   ========================================================================== */

/* ========== POSVENTA ========== */

/* 1024px */
@media (max-width: 1024px) {
  .hero-posventa__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-posventa__card {
    padding: 3rem 2.5rem;
    border-radius: 60px;
  }

  .hero-posventa__title {
    font-size: 2rem;
  }

  .hero-posventa__image {
    order: -1;
  }

  .hero-posventa__image img {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Fleet Section */
  .fleet-section__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem;
    border-radius: 30px;
  }

  .fleet-section__title {
    font-size: 2rem;
  }

  .fleet-section__badge img {
    height: 80px;
  }

  .fleet-section__text {
    font-size: 1rem;
  }

  /* CTA Alquiler Red */
  .cta-alquiler-red__inner {
    grid-template-columns: 250px 1fr;
    gap: 3rem;
  }

  .cta-alquiler-red__logo img {
    max-width: 220px;
  }

  .cta-alquiler-red__title {
    font-size: 1.35rem;
  }

  /* Repuestos Categorías */
  .repuestos-categorias__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .categoria-item {
    padding: 1.75rem 1.25rem;
  }

  /* Services Posventa */
  .services-posventa__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 100%;
  }

  .service-posventa-card {
    padding: 2rem 1.25rem;
  }

  /* Process Posventa */
  .process-posventa-card {
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }

  .process-posventa-card__arrow {
    display: none;
  }

  .process-posventa-card__header {
    gap: 0.75rem;
  }

  .process-posventa-card__number {
    font-size: 2.5rem;
  }

  .process-posventa-card__title {
    font-size: 1.25rem;
  }

  /* CTA Posventa */
  .cta-posventa__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-posventa__logo {
    width: 220px;
  }

  .cta-posventa__title {
    font-size: 2rem;
  }
}

/* 768px */
@media (max-width: 768px) {
  .hero-posventa {
    padding: 3rem 0;
  }

  .hero-posventa__card {
    padding: 2.5rem 2rem;
    border-radius: 40px;
  }

  .hero-posventa__title {
    font-size: 1.75rem;
  }

  .hero-posventa__subtitle {
    font-size: 1.125rem;
  }

  .hero-posventa__icon img {
    width: 50px;
    height: 50px;
  }

  /* Fleet Section */
  .fleet-section {
    padding: 3rem 0;
  }

  .fleet-section__inner {
    padding: 2rem;
    border-radius: 15px;
  }

  .fleet-section__title {
    font-size: 1.5rem;
  }

  .fleet-section__badge img {
    height: 60px;
  }

  .fleet-section__text {
    font-size: 1rem;
  }

  /* Equipos Alquiler */
  .equipos-alquiler {
    padding: 3rem 0;
  }

  .equipos-alquiler__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .equipos-alquiler__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .equipo-card__image {
    height: 220px;
    padding: 2rem;
  }

  .equipo-card__content {
    padding: 1.5rem 1.25rem;
  }

  /* CTA Alquiler Red */
  .cta-alquiler-red {
    padding: 3rem 0;
  }

  .cta-alquiler-red__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .cta-alquiler-red__logo img {
    max-width: 200px;
  }

  .cta-alquiler-red__card {
    padding: 2rem;
  }

  .cta-alquiler-red__title {
    font-size: 1.25rem;
  }

  /* Repuestos Categorías */
  .repuestos-categorias {
    padding: 3rem 0;
  }

  .repuestos-categorias__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    white-space: normal;
  }

  .repuestos-categorias__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .categoria-item {
    padding: 1.5rem;
  }

  .categoria-item__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }

  .categoria-item__title {
    font-size: 1rem;
  }

  /* Services Posventa */
  .services-posventa {
    padding: 3rem 0;
  }

  .services-posventa__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .services-posventa__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-posventa-card {
    padding: 2rem 1.5rem;
  }

  .service-posventa-card__icon img {
    width: 70px;
    height: 70px;
  }

  .service-posventa-card__title {
    font-size: 1.125rem;
  }

  /* Process Posventa */
  .process-posventa {
    padding: 3rem 0;
  }

  .process-posventa__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .process-posventa__steps {
    gap: 1rem;
  }

  .process-posventa-card {
    padding: 1.5rem;
    border-radius: 0 0 40px 0;
  }

  .process-posventa-card__icon {
    width: 70px;
    height: 70px;
  }

  .process-posventa-card__icon img {
    width: 35px;
    height: 35px;
  }

  .process-posventa-card__number {
    font-size: 2rem;
  }

  .process-posventa-card__title {
    font-size: 1.125rem;
  }

  .process-posventa-card__text {
    font-size: 0.9375rem;
  }

  /* Why Posventa */
  .why-posventa {
    padding: 3rem 0;
  }

  .why-posventa__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .why-posventa-item {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .why-posventa-item__icon img {
    width: 40px;
    height: 40px;
  }

  .why-posventa-item__text {
    font-size: 1rem;
  }

  /* CTA Posventa */
  .cta-posventa {
    padding: 3rem 0;
  }

  .cta-posventa__inner {
    gap: 2rem;
  }

  .cta-posventa__logo {
    width: 200px;
  }

  .cta-posventa__title {
    font-size: 1.75rem;
  }

  .cta-posventa__card {
    padding: 2.5rem;
    border-radius: 0 0 60px 0;
  }

  .cta-posventa__quote {
    font-size: 1.25rem;
  }

  .cta-posventa__text {
    font-size: 0.9375rem;
  }
}

/* 480px */
@media (max-width: 480px) {
  .hero-posventa {
    padding: 2rem 0;
  }

  .hero-posventa__inner {
    gap: 2rem;
  }

  .hero-posventa__card {
    padding: 2rem 1.5rem;
    border-radius: 30px;
  }

  .hero-posventa__title {
    font-size: 1.5rem;
  }

  .hero-posventa__subtitle {
    font-size: 1rem;
  }

  .hero-posventa__icon img {
    width: 40px;
    height: 40px;
  }

  .hero-posventa__card .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  .hero-posventa__image img {
    max-width: 300px;
  }

  /* Fleet Section */
  .fleet-section {
    padding: 2rem 0;
  }

  .fleet-section__inner {
    padding: 1.5rem;
    gap: 2rem;
  }

  .fleet-section__title {
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .fleet-section__badge img {
    height: 50px;
  }

  .fleet-section__text {
    font-size: 0.8125rem;
  }

  /* Services Posventa */
  .services-posventa {
    padding: 2rem 0;
  }

  .services-posventa__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }

  .services-posventa__grid {
    gap: 1rem;
  }

  .service-posventa-card {
    padding: 1.5rem 1.25rem;
    border-radius: 0 0 40px 0;
  }

  .service-posventa-card__icon img {
    width: 60px;
    height: 60px;
  }

  .service-posventa-card__title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .service-posventa-card__list li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  /* Process Posventa */
  .process-posventa {
    padding: 2rem 0;
  }

  .process-posventa__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }

  .process-posventa__steps {
    gap: 0.75rem;
  }

  .process-posventa-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem 1.25rem;
    border-radius: 0 0 30px 0;
  }

  .process-posventa-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
  }

  .process-posventa-card__icon img {
    width: 30px;
    height: 30px;
  }

  .process-posventa-card__header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .process-posventa-card__number {
    font-size: 1.75rem;
  }

  .process-posventa-card__title {
    font-size: 1rem;
  }

  .process-posventa-card__text {
    font-size: 0.875rem;
  }

  /* Why Posventa */
  .why-posventa {
    padding: 2rem 0;
  }

  .why-posventa__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }

  .why-posventa-item {
    padding: 1rem 1.25rem;
    gap: 0.875rem;
    flex-direction: column;
    text-align: center;
  }

  .why-posventa-item__icon img {
    width: 35px;
    height: 35px;
  }

  .why-posventa-item__text {
    font-size: 0.9375rem;
  }

  /* CTA Posventa */
  .cta-posventa {
    padding: 2rem 0;
  }

  .cta-posventa__inner {
    gap: 1.5rem;
  }

  .cta-posventa__left {
    gap: 1.5rem;
    text-align: center;
  }

  .cta-posventa__logo {
    width: 180px;
    margin: 0 auto;
  }

  .cta-posventa__title {
    font-size: 1.5rem;
  }

  .cta-posventa__card {
    padding: 2rem 1.5rem;
    border-radius: 0 0 40px 0;
  }

  .cta-posventa__quote {
    font-size: 1.125rem;
  }

  .cta-posventa__text {
    font-size: 0.875rem;
  }

  .cta-posventa__card .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
  }
}

/* 420px */
@media (max-width: 420px) {
  .hero-posventa {
    padding: 1.5rem 0;
  }

  .hero-posventa .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero-posventa__card {
    padding: 1.5rem 1rem;
    border-radius: 25px;
  }

  .hero-posventa__title {
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .hero-posventa__subtitle {
    font-size: 0.875rem;
  }

  .hero-posventa__card .btn {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    white-space: normal;
    line-height: 1.3;
  }

  /* Fleet Section */
  .fleet-section .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .fleet-section__inner {
    padding: 1rem;
    border-radius: 12px;
  }

  .fleet-section__title {
    font-size: 1rem;
  }

  /* Services Posventa */
  .services-posventa .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .service-posventa-card {
    padding: 1rem 0.875rem;
    border-radius: 0 0 30px 0;
  }

  .service-posventa-card__title {
    font-size: 0.875rem;
  }

  .service-posventa-card__list li {
    font-size: 0.75rem;
  }

  /* Process Posventa */
  .process-posventa .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .process-posventa-card {
    padding: 1rem 0.875rem;
    border-radius: 0 0 25px 0;
  }

  .process-posventa-card__title {
    font-size: 0.875rem;
  }

  .process-posventa-card__text {
    font-size: 0.75rem;
  }

  /* Why Posventa */
  .why-posventa .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .why-posventa-item {
    padding: 0.75rem 0.875rem;
  }

  .why-posventa-item__text {
    font-size: 0.8125rem;
  }

  /* CTA Posventa */
  .cta-posventa .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .cta-posventa__logo {
    width: 140px;
  }

  .cta-posventa__title {
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .cta-posventa__card {
    padding: 1.25rem 1rem;
    border-radius: 0 0 30px 0;
  }

  .cta-posventa__quote {
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .cta-posventa__text {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .cta-posventa__card .btn {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    white-space: normal;
    line-height: 1.3;
  }
}

/* 375px */
@media (max-width: 375px) {

  .hero-posventa .container,
  .fleet-section .container,
  .services-posventa .container,
  .process-posventa .container,
  .why-posventa .container,
  .cta-posventa .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .hero-posventa__card,
  .fleet-section__inner,
  .service-posventa-card,
  .process-posventa-card,
  .cta-posventa__card {
    padding: 1rem 0.75rem;
  }

  .hero-posventa__title {
    font-size: 1rem;
  }

  .cta-posventa__logo {
    width: 120px;
  }

  .cta-posventa__title {
    font-size: 1rem;
  }
}

/* Fix para overflow en todas las secciones */
.hero-posventa,
.fleet-section,
.services-posventa,
.process-posventa,
.why-posventa,
.cta-posventa {
  overflow-x: hidden;
}

.hero-posventa__card,
.fleet-section__inner,
.service-posventa-card,
.process-posventa-card,
.cta-posventa__card {
  max-width: 100%;
  box-sizing: border-box;
}

.cta-posventa__inner {
  max-width: 100%;
  box-sizing: border-box;
}

/* 500px */
@media (max-width: 500px) {
  .cta-posventa .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cta-posventa__card {
    background-image: none !important;
    background: #e8e8e8 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cta-posventa__quote,
  .cta-posventa__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* También aplicar a otras cards con background-image */
  .hero-posventa__card {
    background-image: none !important;
    background: var(--color-primary) !important;
  }

  .process-posventa-card {
    background-image: none !important;
    background: #2c3e50 !important;
  }
}

/* ==========================================================================
   NAV DROPDOWN FIX
   ========================================================================== */

/* Hacer que el botón de Productos se vea como un link */
.nav__link--dropdown {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  padding: 0 !important;
  text-align: left;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  text-decoration: none !important;
  pointer-events: auto !important;
}

.nav__link--dropdown:hover {
  color: var(--color-primary);
}

.nav__link--dropdown:focus {
  outline: none;
}

/* Quitar el ::after del botón dropdown */
.nav__link--dropdown::after {
  display: none !important;
}

/* Rotar la flecha cuando está activo */
.nav__item-dropdown.active .nav__arrow {
  transform: rotate(180deg);
}

.nav__arrow {
  transition: transform 0.3s ease;
}

/* ========== 4. QUIENES SOMOS (quienes-somos.html) ========== */

.hero-quienes {
  padding-top: 80px;
}

.hero-quienes__inner {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: stretch;
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 450px;
}

.hero-quienes__label {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ddd;
  position: relative;
  z-index: 1;
}

.hero-quienes__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-quienes__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a4a4a;
  position: relative;
  z-index: 1;
}

.hero-quienes__text p {
  margin-bottom: 1.5rem;
}

.hero-quienes__text strong {
  color: var(--color-primary);
  font-weight: 700;
}

.hero-quienes__content-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.hero-quienes__features-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-right: -10%;
  border-radius: 0 0 80px 0;
  overflow: hidden;
  height: 100%;
}

.hero-quienes__content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero-quienes__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-quienes__image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0;
  padding-right: 0;
  height: 100%;
}

.hero-quienes__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 0 0 60px;
}

.about__content-section {
  position: relative;
  padding: 3rem 0 0;
  overflow: hidden;
}

.about-home__content-inner {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: stretch;
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 450px;
}

.about-home__features-box {
  position: relative;
  padding: 3rem 4rem 3rem 0;
  padding-left: max(2rem, calc((100vw - 1400px) / 2 + 2rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  z-index: 2;
  margin-right: -10%;
  border-radius: 0 80px 0 0;
  overflow: hidden;
  height: 100%;
}

.about-home__features-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleY(-1);
  z-index: -1;
  pointer-events: none;
}

.about__content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.about__features-box {
  position: relative;
  padding: 3.5rem 4rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 2;
  margin-right: 0;
  border-radius: 0 80px 0 0;
  overflow: hidden;
}

.about__features-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center top;
  transform: scaleY(-1);
  z-index: -1;
  pointer-events: none;
}

.about__image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0;
  padding-right: 0;
  height: 99%;
}

.about__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 0 0 60px;
}

/* Historia Timeline */
.historia-section {
  padding: 6rem 0;
  background: var(--color-white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4rem;
  padding-bottom: 1rem;
  display: inline-block;
  width: 100%;
}

.historia-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.historia-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.timeline-item:nth-child(odd) .timeline-item__content {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-item__year {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-item__content {
  grid-column: 3;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-item__year {
  grid-column: 2;
}

.timeline-item__year {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 800;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(224, 0, 32, 0.3);
  z-index: 1;
}

.timeline-item__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.timeline-item__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
}

/* Valores */
.valores-section {
  padding: 6rem 0;
  background: #f5f5f5;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.valor-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 0 0 40px 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.valor-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 0, 32, 0.1);
  border-radius: 50%;
}

.valor-card__icon img {
  width: 50px;
  height: 50px;
}

.valor-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.valor-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4a4a4a;
}

/* Por Qué Elegirnos */
.elegirnos-section {
  padding: 6rem 0;
  background: var(--color-white);
}

.elegirnos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.elegirnos-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.elegirnos-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.elegirnos-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.elegirnos-list__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.elegirnos-list strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.elegirnos-list p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

.elegirnos-image {
  border-radius: 0 0 80px 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.elegirnos-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Banner Años */
.banner-anos {
  background: var(--color-primary);
  padding: 3rem 0;
  border-radius: 0 0 80px 0;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
}

.banner-anos__content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.banner-anos__text {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-anos__highlight {
  font-weight: 400;
}

.banner-anos__logo {
  height: 50px;
  width: auto;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

/* Valores Section */
.valores-section {
  padding: 6rem 0;
  background: #f5f5f5;
}

.valores-section__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.valores-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #ddd;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  margin-top: 3rem;
}

.valor-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.valor-item__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Cobertura Section */
.cobertura-section {
  padding: 6rem 0;
  background: var(--color-white);
  user-select: none;
  -webkit-user-select: none;
}

.cobertura-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cobertura-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 2rem;
  align-items: stretch;
}

.cobertura-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.cobertura-list li {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.cobertura-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.cobertura-mapas-ubicacion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  user-select: none;
  -webkit-user-select: none;
}

.cobertura-ubicacion {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.cobertura-ubicacion__header {
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.cobertura-ubicacion iframe {
  display: block;
  width: 100%;
}

.cobertura-ubicacion img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.cobertura-right {
  display: flex;
  flex-direction: column;
}

.cobertura-mapa__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

.cobertura-mapa__icon {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain;
  pointer-events: auto !important;
}

.cobertura-mapa-wrapper {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cobertura-mapa-img {
  width: 100%;
  height: 100%;
  max-height: 900px;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* ========== QUIENES SOMOS ========== */

/* 1024px */
@media (max-width: 1024px) {
  .hero-quienes {
    padding-top: 100px;
  }

  .hero-quienes__inner {
    grid-template-columns: 50% 50%;
    gap: 0;
    margin-top: -100px;
    padding-top: 100px;
  }

  .hero-quienes__features-box {
    margin-right: -8%;
  }

  .hero-quienes__content {
    max-width: 600px;
    padding: 1.5rem;
  }

  .hero-quienes__image-wrapper {
    margin-top: -100px;
    padding-top: 100px;
  }

  .banner-anos {
    padding: 2.5rem 0;
    border-radius: 0 0 60px 0;
  }

  .banner-anos__text {
    font-size: 1.5rem;
  }

  .banner-anos__logo {
    height: 40px;
  }

  .valores-section {
    padding: 4rem 0;
  }

  .valores-section__title {
    font-size: 2rem;
  }

  .valores-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cobertura-section {
    padding: 4rem 0;
  }

  .cobertura-section__title {
    font-size: 1.25rem;
  }

  .cobertura-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cobertura-right {
    order: -1;
    min-height: 400px;
  }

  .cobertura-mapa-img {
    max-height: 400px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    text-align: left !important;
  }

  .timeline-item__content {
    grid-column: 1 !important;
    text-align: left !important;
  }

  .timeline-item__year {
    grid-column: 1 !important;
    margin-bottom: 1rem;
  }

  .historia-timeline::before {
    left: 40px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .hero-quienes {
    padding-top: 80px;
  }

  .hero-quienes__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 0;
    padding-top: 0;
  }

  .hero-quienes__features-box {
    margin-right: 0;
    border-radius: 0 0 60px 0;
  }

  .hero-quienes__content {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .hero-quienes__image-wrapper {
    order: -1;
    padding: 0 1rem;
    margin-top: 0;
    padding-top: 0;
  }

  .hero-quienes__main-image {
    height: 300px;
    border-radius: 12px;
  }

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

  .hero-quienes__title {
    font-size: 1.75rem;
    max-width: 100%;
  }

  .hero-quienes__text {
    font-size: 0.9375rem;
  }

  .hero-quienes__background {
    border-radius: 0 0 40px 0;
  }

  .hero-quienes__image-wrapper {
    min-height: 400px;
  }

  .banner-anos {
    padding: 2rem 0;
    border-radius: 0 0 50px 0;
  }

  .banner-anos__text {
    font-size: 1.25rem;
  }

  .banner-anos__logo {
    height: 35px;
  }

  .valores-section {
    padding: 3rem 0;
  }

  .valores-section__title {
    font-size: 1.75rem;
  }

  .valores-grid {
    gap: 2rem;
  }

  .valor-item__title {
    font-size: 0.9375rem;
  }

  .valor-item__text {
    font-size: 0.875rem;
  }

  .cobertura-section {
    padding: 3rem 0;
  }

  .cobertura-section__title {
    font-size: 1.125rem;
  }

  .cobertura-list li {
    font-size: 0.8125rem;
  }

  .cobertura-mapa__title {
    font-size: 0.8125rem;
  }

  .cobertura-mapa__icon {
    width: 24px !important;
    height: 24px !important;
  }

  .cobertura-right {
    min-height: 350px;
  }

  .cobertura-mapa-img {
    max-height: 350px;
  }

  .banner-anos {
    padding: 2rem 0;
    border-radius: 0 0 60px 0;
  }

  .banner-anos__text {
    font-size: 1.5rem;
    gap: 0.75rem;
  }

  .banner-anos__logo {
    height: 40px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .hero-quienes {
    padding-top: 60px;
  }

  .hero-quienes__features-box {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .hero-quienes__label {
    font-size: 0.75rem;
  }

  .hero-quienes__title {
    font-size: 1.5rem;
  }

  .hero-quienes__text {
    font-size: 0.875rem;
  }

  .hero-quienes__image-wrapper {
    min-height: 350px;
  }

  .banner-anos {
    padding: 1.5rem 0;
    border-radius: 0 0 40px 0;
  }

  .banner-anos__content {
    padding: 0 1rem;
  }

  .banner-anos__text {
    font-size: 1rem;
    text-align: center;
    gap: 0.5rem;
  }

  .banner-anos__logo {
    height: 28px;
  }

  .valores-section {
    padding: 2.5rem 0;
  }

  .valores-section__label {
    font-size: 0.75rem;
  }

  .valores-section__title {
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .valores-grid {
    gap: 1.5rem;
  }

  .valor-item__title {
    font-size: 0.875rem;
  }

  .valor-item__text {
    font-size: 0.8125rem;
  }

  .cobertura-section {
    padding: 2.5rem 0;
  }

  .cobertura-section__title {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cobertura-grid {
    gap: 2rem;
  }

  .cobertura-list {
    margin-bottom: 1.5rem;
  }

  .cobertura-list li {
    font-size: 0.75rem;
    padding: 0.4rem 0;
  }

  .cobertura-mapas-ubicacion {
    gap: 1rem;
  }

  .cobertura-mapa__title {
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .cobertura-mapa__icon {
    width: 20px !important;
    height: 20px !important;
  }

  .cobertura-right {
    min-height: 300px;
  }

  .cobertura-mapa-img {
    max-height: 300px;
  }
}

/* ========== 5. SHARED (Contact, Footer) ========== */

.contact {
  user-select: none;
  -webkit-user-select: none;
}

.footer {
  user-select: none;
  -webkit-user-select: none;
}

/* ==========================================================================
   CLIENTS BANNER - NUEVO DISEÑO
   ========================================================================== */

/* Fondo rojo completo */
.clients-banner {
  background: var(--color-primary);
  padding: 4rem 0;
  width: 100%;
}

/* Contenedor con max-width - layout vertical */
.clients-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Header con título y subtítulo */
.clients-banner__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

/* Título */
.clients-banner__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}

/* Subtítulo a la derecha */
.clients-banner__subtitle {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

/* Carrusel de logos */
.clients-banner__carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-banner__track {
  display: flex;
  gap: 4rem;
  animation: scroll 10s linear infinite;
  width: fit-content;
  align-items: center;
}

.clients-banner__track img {
  height: 80px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.clients-banner__track img:hover {
  opacity: 1;
}

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

.clients-banner__track:hover {
  animation-play-state: paused;
}

/* ========== HOME ========== */

/* 1200px */
@media (max-width: 1200px) {
  .hero__box {
    width: 55%;
    max-width: 600px;
    padding: 3.5rem 3.5rem 3rem 3.5rem;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .hero__description {
    font-size: 0.9rem;
  }
}

/* 940px - Ajuste logos para evitar que tapen nav */
@media (max-width: 1024px) {
  .header__logo-inter {
    height: 22px;
  }

  .header__logo-heli {
    height: 22px;
  }

  .header__logo {
    gap: 0.5rem;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .hero--home {
    height: 70vh;
    min-height: 500px;
  }

  .hero__box {
    width: 60%;
    max-width: 520px;
    padding: 3rem 3rem 2.5rem 3rem;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .hero__description {
    font-size: 0.85rem;
  }

  .about-home__content-inner {
    grid-template-columns: 50% 50%;
    gap: 0;
  }

  .about-home__features-box {
    padding: 2.5rem 3rem 2.5rem 2rem;
    margin-right: -8%;
    gap: 1.5rem;
  }

  .about-home__features-box-bg {
    height: 100%;
  }

  .about__content-inner {
    grid-template-columns: 50% 50%;
  }

  .about__features-box {
    padding: 3rem 2.5rem;
    margin-right: -2rem;
  }
}

/* 992px - Mobile menu */
@media (max-width: 992px) {
  /* Ocultar logos en menú mobile para evitar que se corten */
  .header__nav .header__logo {
    display: none;
  }
}

/* 768px */
@media (max-width: 768px) {
  .hero--home {
    height: auto;
    min-height: 500px;
    padding-top: 80px;
  }

  .hero__box {
    width: 70%;
    max-width: 500px;
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__description {
    font-size: 0.8rem;
  }

  .header__logo {
    gap: 0.5rem;
  }

  .header__logo-inter,
  .header__logo-heli {
    height: 24px;
  }

  .header__inner {
    height: 80px;
  }

  /* Nav list con scroll en móvil */
  .header__nav {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .nav__list {
    padding-bottom: 2rem;
  }

  /* Dropdown mobile */
  .nav__mega-menu,
  .nav__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0.5rem;
    border-radius: 0;
    background: transparent;
    max-height: 0;
    overflow: visible;
    transition: max-height 0.3s ease;
  }

  .nav__item-dropdown.active .nav__mega-menu {
    display: block;
    max-height: none;
    overflow: visible;
  }

  .nav__item-dropdown.active .nav__dropdown {
    display: block;
    max-height: none;
  }

  .nav__dropdown {
    min-width: 100%;
  }

  .nav__dropdown-link {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 0.25rem;
    border-radius: 4px;
    color: var(--color-dark);
  }

  .nav__dropdown-link:hover,
  .nav__dropdown-link.active {
    background: rgba(224, 0, 32, 0.1);
    color: var(--color-primary);
  }

  .mega-menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    min-width: auto;
    padding-bottom: 1rem;
  }

  .mega-menu__item {
    aspect-ratio: auto;
    background: rgba(0, 0, 0, 0.03);
  }

  /* Estilo de scrollbar para el nav móvil */
  .header__nav::-webkit-scrollbar {
    width: 4px;
  }

  .header__nav::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
  }

  .header__nav::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
  }

 
  .products__header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .products__header-right {
    align-items: flex-start;
    text-align: left;
  }

  .about__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about__content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-home__content-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-home__features-box {
    padding: 2.5rem 2rem;
    margin-right: 0;
    border-radius: 0 60px 0 0;
  }

  .about-home__features-box-bg {
    height: 100%;
    object-position: center;
  }

  .about__image-wrapper {
    order: -1;
  }

  .about__main-image {
    height: 300px;
    border-radius: 12px;
  }

  .about__content-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__features-box {
    margin-right: 0;
    padding: 3rem 2rem;
    border-radius: 0 0 60px 0;
  }

  .services__header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .clients-banner__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact__info {
    padding: 1.5rem;
  }

  .contact__quote {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .contact__text {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .contact__info .btn {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    padding: 0.875rem 1.5rem;
  }

  .clients-banner__title {
    font-size: 2rem;
  }

  .clients-banner__subtitle {
    text-align: left;
    white-space: normal;
  }

  .topbar__contact {
    gap: 1rem;
  }

  .topbar__link {
    font-size: 0.75rem;
  }
}

/* 480px - Ocultar topbar y ajustar header */
@media (max-width: 480px) {
  .topbar {
    display: none;
  }

  .header {
    top: 0 !important;
  }

  .hero--home {
    padding-top: 80px !important;
  }
}

/* 570px */
@media (max-width: 570px) {
  .hero__box {
    width: 80%;
    max-width: 450px;
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  }

  .hero__title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .hero__description {
    font-size: 0.8rem;
  }

  .hero__btn {
    font-size: 0.85rem;
    padding: 0.875rem 1.5rem;
  }
}

/* 600px */
@media (max-width: 600px) {
  .hero__btn {
    font-size: 0.75rem;
    padding: 0.75rem 1.25rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
}

/* 480px */
@media (max-width: 480px) {
  .hero__box {
    width: 85%;
    max-width: 400px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero__title {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero__description {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero__btn {
    font-size: 0.7rem;
    padding: 0.75rem 1rem;
    align-self: flex-start;
  }

  .about.section .section-label {
    font-size: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .about.section .products__header {
    gap: 1.5rem;
  }

  .about.section .products__header .section-title {
    font-size: 1.5rem;
  }

  .about.section .products__header-right .section-subtitle {
    font-size: 0.875rem;
  }

  .about__features-box {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .about__item-content h4 {
    font-size: 0.875rem;
  }

  .about__item-content p {
    font-size: 0.8125rem;
  }

  .about__main-image {
    height: 300px;
  }

  .clients-banner__title {
    font-size: 1.5rem;
  }

  .clients-banner__subtitle {
    font-size: 0.875rem;
  }
}