/* Importar fuentes */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Poppins:wght@400;500;600;700;800&family=Work+Sans:wght@600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');

/* Reset para quitar márgenes del body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header transparente sobre el slider */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* Separa logo y hamburguesa */
  align-items: center;
  padding: 20px 60px;
  background: rgba(6, 57, 113, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  z-index: 1001;
}

/* Navbar al hacer scroll - más sólido */
.navbar.scrolled {
  background: linear-gradient(90deg, #063971 0%, #6D6E71 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


.imgsiase {
  height: 98px;
  /* Ajusta según tu logo */
}

.menu {
  display: flex;
  gap: 40px;
  justify-self: center;
  /* Centrado en el medio */
}

.menu-item {
  color: white;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}


.menu-item {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  /* Necesario para el pseudo-elemento */
  padding-bottom: 5px;
  /* Espacio para la línea */
}

/* Línea animada */
.menu-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  /* Inicia sin ancho */
  height: 2px;
  /* Grosor de la línea */
  background-color: white;
  /* Color de la línea */
  transition: width 0.3s ease;
  /* Animación suave */
}

.menu-item:hover::after {
  width: 100%;
  /* Se expande al 100% en hover */
}

.menu-item:hover {
  opacity: 1;
  /* Mantén opacidad completa */
}

/* Contenedor del dropdown */
.menu-item-dropdown {
  position: relative;
  display: inline-block;
}

.menu-item-dropdown .menu-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

/* Rotar flecha al hover */
.menu-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Menú desplegable */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  padding: 15px 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}

/* Mostrar dropdown al hacer hover */
.menu-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Items del dropdown */
.dropdown-item {
  display: block;
  padding: 12px 25px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.80rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: #f5f5f5;
  border-left-color: #063971;
  padding-left: 30px;
  color: #063971;
}

/* Línea divisoria sutil entre items */
.dropdown-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

/* Hero Section - pantalla completa */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Altura completa de la ventana */
  overflow: hidden;
  margin: 0;
  /* Sin márgenes */
  padding: 0;
  /* Sin padding */
  margin-bottom: 0;
  padding-bottom: 60px;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Overlay oscuro sobre las imágenes */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Oscurece un poco las imágenes */
  z-index: 2;
}

/* Texto del hero */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 3;
  /* Por encima del overlay */
  width: 90%;
  max-width: 1200px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease;
  font-family: 'Oswald', sans-serif;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #063971;
  color: white;
}

.btn-primary:hover {
  background: #084a94;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 57, 113, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #063971;
  transform: translateY(-2px);
}

/* Animación fadeInUp */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-gmail {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  background: #EA4335;
  color: white;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4);
}

.btn-gmail:hover {
  background: #d33426;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(234, 67, 53, 0.6);
}

.btn-gmail svg {
  width: 19px;
  height: 19px;
}

html {
  scroll-behavior: smooth;
}

.search-bar {
  margin-top: 20px;
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  width: 100%;
  max-width: 350px;
}

.search-bar input {
  border: none;
  padding: 10px 15px;
  width: 100%;
  outline: none;
}

.search-bar button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.search-bar button:hover {
  background-color: #333;
}






/* Botones sociales mejorados */
.social-sidebar {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.social-button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.social-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.social-button:hover::before {
  width: 100%;
  height: 100%;
}

.social-button:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-button svg {
  width: 26px;
  height: 26px;
  fill: white;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-button:hover svg {
  transform: scale(1.1);
}

/* Colores específicos para cada red social */
.social-button.facebook {
  background: #1877F2;
  /* Azul oficial de Facebook */
}

.social-button.facebook:hover {
  background: #145DBF;
  /* Azul más oscuro */
}

/* Instagram */
.social-button.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  /* Gradiente oficial de Instagram */
}

.social-button.instagram:hover {
  background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB);
  /* Gradiente más intenso */
}

.social-button.whatsapp {
  background: #25D366;
  /* Color verde oficial de WhatsApp */
  fill: white;
}

.social-button.whatsapp:hover {
  background: #128C7E;
  /* Verde más oscuro al pasar el mouse */
  transform: scale(1.1);
}

.social-button.gmail {
  background: #EA4335;
}

.social-button.gmail:hover {
  background: #d33426;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4);
}

/* ========================================
   SECCIÓN SOBRE NOSOTROS - VERSIÓN PROFESIONAL
   ======================================== */

/* Sección principal */
.about-section {
  padding: 120px 5%;
  background: linear-gradient(135deg, #063971 0%, #0a4d94 50%, #063971 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 35px;
}

/* Efecto de partículas sutiles en el fondo */
.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(3deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(-3deg);
  }
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ========================================
   IMAGEN CON EFECTOS MODERNOS
   ======================================== */

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(6, 57, 113, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: -0px;
}

.about-image.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Efecto de overlay con gradiente */
.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 193, 7, 0.15) 0%,
      transparent 50%,
      rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.about-image:hover::before {
  opacity: 1;
}

/* Borde decorativo animado */
.about-image::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #FFC107, #063971, #FFC107);
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
  animation: borderRotate 3s linear infinite;
}

.about-image:hover::after {
  opacity: 1;
}

@keyframes borderRotate {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

.about-image img {
  width: 100%;
  height: 600px;
  margin-top: -20px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image:hover img {
  transform: scale(1.08);
}

/* Badge decorativo en la imagen */
.about-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #063971;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 8px 24px rgba(255, 193, 7, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* ========================================
   CONTENIDO CON ANIMACIONES
   ======================================== */

.about-content {
  padding: 20px;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.about-content.animate {
  opacity: 1;
  transform: translateX(0);
}

.about-label {
  display: inline-block;
  color: #FFC107;
  background: rgba(255, 193, 7, 0.2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  padding: 8px 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid rgba(255, 193, 7, 0.4);
  position: relative;
  overflow: hidden;
}

/* Efecto de brillo en el label */
.about-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transition: left 0.5s ease;
}

.about-label:hover::before {
  left: 100%;
}

.about-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  margin-bottom: 30px;
  position: relative;
}

/* Línea decorativa debajo del título */
.about-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFC107, #FF9800);
  border-radius: 2px;
  animation: expandLine 1s ease-out 0.5s backwards;
}

@keyframes expandLine {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: #F5F5F5;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.about-text:hover {
  padding-left: 24px;
  border-left-color: #FFC107;
}

.about-text strong {
  color: #FFC107;
  font-weight: 700;
  position: relative;
  background: linear-gradient(to bottom, transparent 60%, rgba(255, 193, 7, 0.2) 60%);
}

/* ========================================
   LISTA DE CARACTERÍSTICAS
   ======================================== */

.about-features {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #FFFFFF;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-features li.animate {
  opacity: 1;
  transform: translateY(0);
}

.about-features li:hover {
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
  transform: translateX(8px);
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
}

.check-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 2px 4px rgba(6, 57, 113, 0.2));
  transition: transform 0.3s ease;
}

.about-features li:hover .check-icon {
  transform: scale(1.1) rotate(5deg);
}

.check-icon circle {
  stroke: #FFC107;
  stroke-width: 2;
  fill: rgba(255, 193, 7, 0.15);
  transition: all 0.3s ease;
}

.check-icon path {
  stroke: #FFC107;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-features li:hover .check-icon circle {
  fill: rgba(255, 193, 7, 0.3);
  stroke: #FFD700;
}

/* ========================================
   SECCIÓN DE CLIENTES - PROFESIONAL
   ======================================== */

.clients-section {
  padding: 100px 5% 120px;
  background: linear-gradient(135deg, #063971 0%, #0a4d94 50%, #063971 100%);
  position: relative;
  overflow: hidden;
}

/* Patrón de fondo sutil */
.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.03) 87.5%, rgba(255, 255, 255, 0.03)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.03) 87.5%, rgba(255, 255, 255, 0.03)),
    linear-gradient(30deg, rgba(255, 255, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.03) 87.5%, rgba(255, 255, 255, 0.03)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.03) 87.5%, rgba(255, 255, 255, 0.03));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  opacity: 0.3;
  pointer-events: none;
}

.clients-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.clients-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  font-family: 'Oswald', sans-serif;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -2px;
  position: relative;
  display: inline-block;
  text-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 193, 7, 0.2);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.clients-title.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Efecto de brillo animado */
.clients-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20%,
  100% {
    left: 100%;
  }
}

.clients-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  font-family: 'Oswald', sans-serif;

  color: #FFC107;
  margin-bottom: 60px;
  padding: 14px 36px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 50px;
  border: 2px solid rgba(255, 193, 7, 0.3);
  display: inline-block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  box-shadow:
    0 8px 32px rgba(255, 193, 7, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.clients-subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   CARRUSEL DE LOGOS MEJORADO
   ======================================== */

.clients-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  mask-image: linear-gradient(to right,
      transparent,
      black 5%,
      black 95%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 5%,
      black 95%,
      transparent);
}

.clients-track {
  display: flex;
  gap: 40px;
  animation: scroll 50s linear infinite;
  width: fit-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Efecto de brillo en hover */
.client-logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 193, 7, 0.1),
      transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.client-logo:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.client-logo:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow:
    0 16px 48px rgba(6, 57, 113, 0.25),
    0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* ========================================
   SECCIÓN FLOTA - PROFESIONAL
   ======================================== */

.fleet-section {
  padding: 120px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Efecto de ondas decorativas */
.fleet-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 57, 113, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.fleet-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite reverse;
}

.fleet-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ========================================
   ENCABEZADO DE FLOTA
   ======================================== */

.fleet-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fleet-header.animate {
  opacity: 1;
  transform: translateY(0);
}

.fleet-title {
  font-size: clamp(39px, 5vw, 52px);
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  background: linear-gradient(135deg, #063971 0%, #0a4d94 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

/* Línea decorativa animada */
.fleet-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 5px;
  background: linear-gradient(90deg, #063971, #FFC107, #063971);
  border-radius: 3px;
  animation: expandLineCenter 1s ease-out 0.5s forwards;
}

@keyframes expandLineCenter {
  to {
    width: 120px;
  }
}

.fleet-subtitle {
  font-size: clamp(27px, 2vw, 20px);
  color: #495057;
  margin-top: 32px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.fleet-highlight {
  color: #063971;
  font-weight: 700;
  padding: 0 4px;
}

/* ========================================
   GRID DE TARJETAS
   ======================================== */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.fleet-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fleet-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.fleet-card:hover {
  transform: translateY(-16px);
  box-shadow:
    0 24px 64px rgba(6, 57, 113, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.1);
}

.fleet-image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

/* Overlay gradiente */
.fleet-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(6, 57, 113, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.fleet-card:hover .fleet-image-wrapper::before {
  opacity: 1;
}

.fleet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fleet-card:hover .fleet-image {
  transform: scale(1.15) rotate(2deg);
}

/* ========================================
   OVERLAY CON INFORMACIÓN
   ======================================== */

.fleet-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
      rgba(6, 57, 113, 0.98) 0%,
      rgba(6, 57, 113, 0.85) 70%,
      transparent 100%);
  padding: 40px 28px 28px;
  transform: translateY(calc(100% - 80px));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.fleet-card:hover .fleet-overlay {
  transform: translateY(0);
}

.fleet-card-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.fleet-card-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
}

.fleet-card:hover .fleet-card-description {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   BADGE
   ======================================== */

.fleet-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #063971;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 6px 20px rgba(255, 193, 7, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 3;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 6px 20px rgba(255, 193, 7, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  50% {
    transform: scale(1.05);
    box-shadow:
      0 8px 28px rgba(255, 193, 7, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

/* ========================================
   SECCIÓN DE SERVICIOS PROFESIONAL
   ======================================== */

.services-section,
.service-section,
.services-header-section,
.services-cta-section {
  padding: 80px 5%;
  margin-top: 50px;
  background: #063971;
  position: relative;
  overflow: hidden;
  margin-bottom: -195px;
}

.services-section::before,
.service-section::before,
.services-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  top: -50px;
  z-index: 1;
}

/* ========================================
   ENCABEZADO DE SERVICIOS
   ======================================== */

.services-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services-header.animate {
  opacity: 1;
  transform: translateY(0);
}

.services-label {
  display: inline-block;
  color: #FFC107;
  background: rgba(255, 193, 7, 0.2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  padding: 8px 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid rgba(255, 193, 7, 0.4);
  position: relative;
  overflow: hidden;
}

.services-title {
  font-size: clamp(45px, 4.5vw, 46px);
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: initial !important;
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;

  height: 4px;
  background: linear-gradient(90deg, #FFC107, #ffffff, #FFC107);
  border-radius: 3px;
}

.services-subtitle {
  font-size: clamp(28px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 28px;
  line-height: 1.6;
}

/* ========================================
   GRID DE SERVICIOS
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* ========================================
   TARJETA DE SERVICIO
   ======================================== */

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 800px;
  margin: 0 auto;
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 50px rgba(255, 193, 7, 0.3),
    0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   CONTENIDO DEL SERVICIO
   ======================================== */

.service-content {
  padding: 2px 28px;
  flex: 1;

  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}



.service-title {
  font-size: clamp(35px, 2.8vw, 25px);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #063971 !important;
  background: none !important;
  -webkit-text-fill-color: #063971 !important;
  margin-bottom: 14px;
  line-height: 1.3;
  margin-top: 30px;
  text-align: center;
}

.service-description {
  font-size: 23px;
  font-family: 'Playfair Display', serif;
  line-height: 1.65;
  color: #495057;
  margin-bottom: 3px;
  text-align: center;
  max-width: 800px;
  margin-left: 1px;
  font-weight: 600;
  /* Cambiado de 400 a 600 para letras más gruesas */
  margin-right: 1px;
}

/* ========================================
   CARACTERÍSTICAS DEL SERVICIO
   ======================================== */

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.service-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #495057;
  line-height: 1.6;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #063971;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ========================================
   GALERÍA DE IMÁGENES - CUADRADO COMPACTO
   ======================================== */

.service-gallery {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  margin: 20px auto;
  background: #ffffff;
  overflow: visible;
  /* Cambiado para permitir sombras externas */
  border-radius: 20px;
  box-shadow:
    0 15px 50px rgba(6, 57, 113, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(6, 57, 113, 0.08);
}

/* Sombra elevada adicional */
.service-gallery::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 20px;
  right: 20px;
  bottom: -20px;
  background: rgba(6, 57, 113, 0.15);
  border-radius: 20px;
  filter: blur(30px);
  z-index: -1;
  transition: all 0.5s ease;
}

.service-gallery:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow:
    0 30px 80px rgba(6, 57, 113, 0.3),
    0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-gallery:hover::before {
  bottom: -30px;
  filter: blur(40px);
}

/* Borde interior brillante */
.gallery-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 20px rgba(255, 193, 7, 0.1);
  border-radius: 20px;
  pointer-events: none;
  z-index: 3;
}

.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  scroll-behavior: smooth;
}

.gallery-item {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  padding: 10px;
}

.service-card:hover .gallery-item img {
  transform: scale(1.03);
}

/* Overlay gradiente en imágenes */
.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(6, 57, 113, 0.5), transparent);
  pointer-events: none;
}

/* ========================================
   BOTONES DE NAVEGACIÓN
   ======================================== */

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #063971;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
}

.service-gallery:hover .gallery-btn {
  opacity: 1;
}

.gallery-btn:hover {
  background: #063971;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-btn.prev {
  left: 12px;
}

.gallery-btn.next {
  right: 12px;
}

/* ========================================
   INDICADORES (DOTS)
   ======================================== */

.gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.gallery-dot.active {
  background: #FFC107;
  width: 28px;
  border-radius: 5px;
  border-color: #FFC107;
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* ========================================
   CTA FINAL
   ======================================== */

.services-cta {
  text-align: center;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.services-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.services-cta h3 {
  font-size: clamp(26px, 3.8vw, 36px);
  color: white;
  margin-bottom: 14px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.services-cta p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #063971;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 193, 7, 0.6);
}

.btn-primary svg {
  width: 19px;
  height: 19px;
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}



/* ========================================
           SECCIÓN DE PLATAFORMAS
           ======================================== */

.platforms-section {
  padding: 80px 5% 40px;
  background: linear-gradient(135deg, #063971 0%, #0a4d94 50%, #063971 100%);
  position: relative;
  overflow: hidden;
}

.platforms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.03) 87.5%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.03) 87.5%);
  background-size: 80px 140px;
  opacity: 0.3;
  pointer-events: none;
}

.platforms-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.platforms-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 55px;
}

.platforms-label {
  display: inline-block;
  color: #FFC107;
  background: rgba(255, 193, 7, 0.2);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  padding: 8px 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid rgba(255, 193, 7, 0.4);
}

.platforms-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.platforms-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #FFC107, #ffffff, #FFC107);
  border-radius: 3px;
  margin: 20px auto 0;
}

/* ========================================
   GRID DE 2 COLUMNAS
   ======================================== */

.platform-individual-section {
  padding: 30px 5%;
  background: linear-gradient(135deg, #063971 0%, #0a4d94 100%);
}

/* Grid de 2 columnas */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ========================================
   TARJETA COMPACTA
   ======================================== */

.platform-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* ========================================
   ENCABEZADO NARANJA
   ======================================== */

.card-header {
  background: linear-gradient(135deg, #E67E3C 0%, #d96b28 100%);
  color: white;
  padding: 20px 25px;
  text-align: center;
}

.card-header h2 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  margin: 0;
  line-height: 1.3;
}

/* ========================================
   IMAGEN CENTRADA
   ======================================== */

.card-image {
  background: white;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  border-bottom: 3px solid #E67E3C;
}

.card-image img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.platform-card:hover .card-image img {
  transform: scale(1.05);
}

/* ========================================
   CONTENIDO - ESPECIFICACIONES
   ======================================== */

.card-body {
  padding: 25px;
  background: white;
}

.card-description {
  color: #063971;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.specs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.specs-list li {
  color: #063971;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
}

.specs-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #E67E3C;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.specs-list strong {
  color: #063971;
  font-weight: 700;
}

.specs-list li:last-child {
  margin-bottom: 0;
}

/* ========================================
   SECCIÓN DE COTIZACIÓN (CTA)
   ======================================== */

.quote-cta-section {

  padding: 100px 20px;
  border-radius: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Efectos decorativos de fondo */
.quote-cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.quote-cta-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  filter: blur(70px);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }
}

.quote-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;

}

.quote-cta-title {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  line-height: 1.2;
}

.quote-cta-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 50px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contenedor de botones */
.quote-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Estilos base para botones CTA */
.btn-cta-whatsapp,
.btn-cta-gmail {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 14px 30px;
  border-radius: 60px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

/* Efecto de brillo en hover */
.btn-cta-whatsapp::before,
.btn-cta-gmail::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-cta-whatsapp:hover::before,
.btn-cta-gmail:hover::before {
  left: 100%;
}

/* Botón WhatsApp */
.btn-cta-whatsapp {
  background: linear-gradient(135deg, #FDB813 0%, #FCC530 100%);
  color: #1e3c72;
}

.btn-cta-whatsapp:hover {
  background: linear-gradient(135deg, #FCC530 0%, #FFD54F 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(253, 184, 19, 0.5);
}

.btn-cta-whatsapp svg {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease;
}

.btn-cta-whatsapp:hover svg {
  transform: rotate(15deg) scale(1.1);
}

/* Botón Gmail */
.btn-cta-gmail {
  background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
  color: #ffffff;
}

.btn-cta-gmail:hover {
  background: linear-gradient(135deg, #EE5D4F 0%, #EA4335 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(234, 67, 53, 0.5);
}

.btn-cta-gmail svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.btn-cta-gmail:hover svg {
  transform: scale(1.15);
}

/* Efecto de pulso en los botones */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }

  50% {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
  }
}

.btn-cta-whatsapp,
.btn-cta-gmail {
  animation: pulse 3s ease-in-out infinite;
}

.btn-cta-whatsapp:hover,
.btn-cta-gmail:hover {
  animation: none;
}

/* ========================================
   SECCIÓN DE INFORMACIÓN DE COTIZACIÓN
   ======================================== */

.quote-info-section {
  margin-top: -18px;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Efecto de partículas/círculos decorativos */
.quote-info-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  filter: blur(60px);
}

.quote-info-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  filter: blur(50px);
}

.quote-info-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Tarjeta principal con efecto glassmorphism */
.quote-info-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 50px 40px;
  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.37),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-info-box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 15px 45px 0 rgba(31, 38, 135, 0.5),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

/* Título de la tarjeta */
.quote-info-title {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

/* Lista de opciones (Por día, semana, mes) */
.quote-info-options {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}

.quote-info-options li {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 15px 35px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.quote-info-options li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.quote-info-options li:hover::before {
  width: 300px;
  height: 300px;
}

.quote-info-options li:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Subtítulo */
.quote-info-subtitle {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
  width: 100%;
}

.quote-info-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FDB813, transparent);
  border-radius: 2px;
}

/* Lista de requisitos */
.quote-info-requirements {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.quote-info-requirements li {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 20px 25px;
  border-radius: 15px;
  color: #ffffff;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 5px solid rgba(253, 184, 19, 0.7);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 55px;
}

.quote-info-requirements li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #FDB813;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.quote-info-requirements li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
  border-left-color: #FDB813;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {

  /* Sección CTA */
  .quote-cta-section {
    padding: 80px 20px;
  }

  .quote-cta-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .quote-cta-subtitle {
    font-size: 1.15rem;
    margin-bottom: 40px;
  }

  .quote-cta-buttons {
    gap: 20px;
    margin-top: 30px;
  }

  .btn-cta-whatsapp,
  .btn-cta-gmail {
    padding: 15px 30px;
    font-size: 1rem;
    gap: 12px;
  }

  /* Sección Info */
  .quote-info-section {
    padding: 60px 15px;
  }

  .quote-info-box {
    padding: 40px 30px;
    border-radius: 25px;
  }

  .quote-info-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .quote-info-subtitle {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .quote-info-options {
    gap: 15px;
    margin-bottom: 40px;
  }

  .quote-info-options li {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .quote-info-requirements li {
    font-size: 1rem;
    padding: 18px 20px 18px 50px;
  }
}

@media (max-width: 480px) {

  /* Sección CTA */
  .quote-cta-title {
    font-size: 1.9rem;
  }

  .quote-cta-subtitle {
    font-size: 1rem;
  }

  .quote-cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px;
  }

  .btn-cta-whatsapp,
  .btn-cta-gmail {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 25px;
  }

  /* Sección Info */
  .quote-info-box {
    padding: 30px 20px;
  }

  .quote-info-title {
    font-size: 1.9rem;
  }

  .quote-info-subtitle {
    font-size: 1.4rem;
  }

  .quote-info-options {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .quote-info-options li {
    width: 100%;
    text-align: center;
  }

  .quote-info-requirements li {
    padding: 16px 15px 16px 45px;
  }

  .quote-info-requirements li::before {
    left: 15px;
    font-size: 1.3rem;
  }
}




/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .platforms-grid {
    gap: 25px;
  }

  .card-header h2 {
    font-size: 18px;
  }

  .card-image {
    min-height: 220px;
    padding: 25px;
  }

  .card-image img {
    max-height: 200px;
  }

  .card-body {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .platforms-section {
    padding: 60px 4% 30px;
  }

  .platform-individual-section {
    padding: 25px 4%;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-header {
    padding: 18px 20px;
  }

  .card-header h2 {
    font-size: 17px;
  }

  .card-image {
    min-height: 200px;
    padding: 20px;
  }

  .card-image img {
    max-height: 180px;
  }

  .card-body {
    padding: 20px;
  }

  .card-description {
    font-size: 14px;
  }

  .specs-list li {
    font-size: 13px;
    padding-left: 32px;
  }

  .specs-list li::before {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .platforms-section {
    padding: 50px 4% 25px;
  }

  .platforms-label {
    font-size: 11px;
    padding: 6px 16px;
  }

  .platforms-title {
    font-size: 26px;
  }

  .platform-individual-section {
    padding: 20px 4%;
  }

  .platforms-grid {
    gap: 20px;
  }

  .card-header {
    padding: 15px 18px;
  }

  .card-header h2 {
    font-size: 16px;
  }

  .card-image {
    min-height: 180px;
    padding: 15px;
    border-bottom: 2px solid #E67E3C;
  }

  .card-image img {
    max-height: 160px;
  }

  .card-body {
    padding: 18px;
  }

  .card-description {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .specs-list li {
    font-size: 12px;
    margin-bottom: 8px;
    padding-left: 30px;
  }

  .specs-list li::before {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}



/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .about-container {
    gap: 60px;
  }

  .about-image img {
    height: 650px;
  }

  .fleet-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 5%;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    transform: translateX(0);
    opacity: 1;
  }

  .about-image img {
    height: 500px;
  }

  .about-content {
    transform: translateX(0);
    opacity: 1;
  }

  .clients-section {
    padding: 80px 5%;
  }

  .clients-carousel {
    padding: 30px 0;
  }

  .client-logo {
    width: 160px;
    height: 100px;
    padding: 20px;
  }

  .fleet-section {
    padding: 80px 5%;
  }

  .fleet-header {
    margin-bottom: 60px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fleet-image-wrapper {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 5%;
  }

  .about-image img {
    height: 350px;
  }

  .about-title {
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .about-features li {
    padding: 12px;
    font-size: 14px;
  }

  .check-icon {
    width: 28px;
    height: 28px;
  }

  .clients-section {
    padding: 60px 5%;
  }

  .clients-track {
    gap: 30px;
  }

  .client-logo {
    width: 140px;
    height: 90px;
    padding: 16px;
  }

  .fleet-section {
    padding: 60px 5%;
  }

  .fleet-image-wrapper {
    height: 250px;
  }

  .fleet-badge {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 11px;
  }
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .about-container {
    gap: 60px;
  }

  .about-image img {
    height: 500px;
  }

  .fleet-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 5%;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    transform: translateX(0);
    opacity: 1;
  }

  .about-image img {
    height: 400px;
  }

  .about-content {
    transform: translateX(0);
    opacity: 1;
  }

  .clients-section {
    padding: 80px 5%;
  }

  .clients-carousel {
    padding: 30px 0;
  }

  .client-logo {
    width: 160px;
    height: 100px;
    padding: 20px;
  }

  .fleet-section {
    padding: 80px 5%;
  }

  .fleet-header {
    margin-bottom: 60px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fleet-image-wrapper {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 5%;
  }

  .about-image img {
    height: 300px;
  }

  .about-title {
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .about-features li {
    padding: 12px;
    font-size: 14px;
  }

  .check-icon {
    width: 28px;
    height: 28px;
  }

  .clients-section {
    padding: 60px 5%;
  }

  .clients-track {
    gap: 30px;
  }

  .client-logo {
    width: 140px;
    height: 90px;
    padding: 16px;
  }

  .fleet-section {
    padding: 60px 5%;
  }

  .fleet-image-wrapper {
    height: 250px;
  }

  .fleet-badge {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 11px;
  }
}


/* Botón hamburguesa (oculto por defecto en desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Animación del menú hamburguesa cuando está activo */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}


/* ========================================
   FOOTER PROFESIONAL
   ======================================== */

.footer-section {
  background: #1a1a1a;
  padding: 80px 5% 30px;
  position: relative;
  overflow: hidden;
}

/* Bordes decorativos superiores */
.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 5px;
  background: linear-gradient(90deg, #063971 0%, #0a4d94 100%);
}

.footer-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 5px;
  background: linear-gradient(90deg, #FFC107 0%, #FF9800 100%);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* ========================================
   COLUMNAS
   ======================================== */

.footer-column {
  background: #2a2a2a;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
}

.footer-column:hover {
  transform: translateY(-10px);
  border-color: rgba(6, 57, 113, 0.5);
  box-shadow: 0 15px 40px rgba(6, 57, 113, 0.3);
}

/* Columna destacada (Email) */
.footer-column-highlight {
  background: linear-gradient(135deg, #063971 0%, #0a4d94 100%);
  border-color: rgba(255, 193, 7, 0.3);
}

.footer-column-highlight:hover {
  border-color: #FFC107;
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

/* ========================================
   ICONOS
   ======================================== */

.footer-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-icon svg {
  width: 35px;
  height: 35px;
  color: #FFC107;
}

.footer-column:hover .footer-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 193, 7, 0.25);
}

.footer-column-highlight .footer-icon {
  background: rgba(255, 255, 255, 0.2);
}

.footer-column-highlight .footer-icon svg {
  color: white;
}

/* ========================================
   TEXTOS
   ======================================== */

.footer-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: white;
  margin-bottom: 15px;
  line-height: 1.3;
}

.footer-subtitle {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-column-highlight .footer-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   BOTÓN DE ACCIÓN
   ======================================== */

.footer-btn {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid rgba(255, 193, 7, 0.5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #FFC107;
}

.footer-btn svg {
  width: 24px;
  height: 24px;
}

.footer-btn:hover {
  background: #FFC107;
  color: #063971;
  border-color: #FFC107;
  transform: scale(1.1);
}

.footer-column-highlight .footer-btn {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.footer-column-highlight .footer-btn:hover {
  background: white;
  color: #063971;
  border-color: white;
}

/* ========================================
   BARRA INFERIOR
   ======================================== */

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.footer-copyright strong {
  color: #FFC107;
  font-weight: 700;
}

/* Botón scroll to top */
.scroll-to-top {
  width: 45px;
  height: 45px;
  background: rgba(6, 57, 113, 0.8);
  border: 2px solid #FFC107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.scroll-to-top svg {
  width: 22px;
  height: 22px;
}

.scroll-to-top:hover {
  background: #FFC107;
  color: #063971;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .footer-container {
    gap: 30px;
  }

  .footer-column {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 60px 5% 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .footer-column {
    padding: 35px 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-copyright {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 50px 4% 25px;
  }

  .footer-column {
    padding: 30px 20px;
  }

  .footer-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .footer-icon svg {
    width: 30px;
    height: 30px;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .footer-btn {
    width: 45px;
    height: 45px;
  }

  .footer-btn svg {
    width: 20px;
    height: 20px;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
  }

  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* RESPONSIVE */

/* TABLETS LANDSCAPE (1024px) */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 40px;
  }

  .menu {
    gap: 30px;
  }

  .menu-item {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 3rem;
    letter-spacing: -2px;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .social-sidebar {
    right: 15px;
  }
}

/* TABLETS PORTRAIT (768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 30px;
  }

  .imgsiase {
    height: 55px;
  }

  /* Mostrar menú hamburguesa */
  .menu-toggle {
    display: flex;
  }

  /* Menú móvil lateral */
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #063971 0%, #6D6E71 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    transform: none;
    left: auto;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .menu.active {
    right: 0;
  }

  .menu-item {
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  .menu-item::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Hero responsive */
  .hero {
    height: 100vh;
  }

  .hero-text {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Social sidebar */
  .social-sidebar {
    right: 12px;
    gap: 12px;
  }

  .social-button {
    width: 45px;
    height: 45px;
  }

  .social-button svg {
    width: 22px;
    height: 22px;
  }
}

/* MÓVILES GRANDES (480px) */
@media (max-width: 480px) {
  .navbar {
    padding: 12px 20px;
  }

  .imgsiase {
    height: 95px;
  }

  .menu {
    width: 85%;
    max-width: 280px;
    gap: 25px;
  }

  .menu-item {
    font-size: 1rem;
    padding: 8px 0;
  }

  /* Hero */
  .hero-text {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 28px;
    font-size: 0.9rem;
    max-width: 250px;
  }

  /* Social sidebar */
  .social-sidebar {
    right: 8px;
    gap: 10px;
  }

  .social-button {
    width: 40px;
    height: 40px;
  }

  .social-button svg {
    width: 20px;
    height: 20px;
  }
}

/* MÓVILES PEQUEÑOS (360px) */
@media (max-width: 360px) {
  .navbar {
    padding: 10px 15px;
  }

  .imgsiase {
    height: 50px;
  }

  .menu {
    width: 90%;
    gap: 20px;
  }

  .menu-item {
    font-size: 0.95rem;
  }

  .menu-toggle span {
    width: 22px;
    height: 2.5px;
    margin: 3px 0;
  }

  /* Hero */
  .hero-text {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 24px;
    font-size: 0.85rem;
    max-width: 220px;
  }

  /* Social sidebar */
  .social-sidebar {
    right: 5px;
    gap: 8px;
  }

  .social-button {
    width: 35px;
    height: 35px;
  }

  .social-button svg {
    width: 18px;
    height: 18px;
  }
}

/* ORIENTACIÓN LANDSCAPE EN MÓVILES */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 25px;
  }

  .navbar {
    padding: 10px 30px;
  }

  .social-sidebar {
    display: none;
    /* Ocultar en landscape móvil */
  }
}

/* AJUSTES PARA PANTALLAS MUY ANCHAS */
@media (min-width: 1920px) {
  .navbar {
    padding: 25px 100px;
  }

  .menu {
    gap: 50px;
  }

  .menu-item {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 18px 45px;
    font-size: 1.1rem;
  }
}



@media (max-width: 1024px) {
  .about-container {
    gap: 40px;
  }

  .about-title {
    font-size: clamp(24px, 4vw, 36px);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 5%;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-height: 300px;
  }

  .about-content {
    padding: 10px;
  }

  .about-title {
    font-size: clamp(22px, 4vw, 32px);
  }

  .about-text {
    font-size: 15px;
  }

  .about-features li {
    font-size: 15px;
  }

  .check-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 5%;
  }

  .about-container {
    gap: 30px;
  }

  .about-label {
    font-size: 12px;
  }

  .about-title {
    font-size: clamp(20px, 4vw, 28px);
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .about-features {
    margin-top: 20px;
  }

  .about-features li {
    font-size: 14px;
    gap: 12px;
    margin-bottom: 15px;
  }

  .check-icon {
    width: 22px;
    height: 22px;
  }
}

/*Responsive clientes carrusel*/
@media (max-width: 768px) {
  .clients-title {
    letter-spacing: -0.5px;
  }

  .clients-subtitle {
    padding: 10px 20px;
    font-size: clamp(16px, 2vw, 20px);
  }

  .clients-track {
    gap: 40px;
    animation-duration: 35s;
  }

  .client-logo {
    width: 150px;
    height: 80px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .clients-track {
    gap: 30px;
    animation-duration: 25s;
  }

  .client-logo {
    width: 120px;
    height: 70px;
    padding: 12px;
  }
}

/* Responsive imgs Camion */
@media (max-width: 768px) {
  .fleet-section {
    padding: 60px 5%;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .fleet-image-wrapper {
    height: 250px;
  }

  .fleet-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(6, 57, 113, 0.9), rgba(6, 57, 113, 0.6));
  }
}

@media (max-width: 480px) {
  .fleet-badge {
    font-size: 10px;
    padding: 6px 12px;
    top: 10px;
    right: 10px;
  }

  .fleet-card-title {
    font-size: 18px;
  }

  .fleet-card-description {
    font-size: 13px;
  }
}

/* ========== MÓVIL: OCULTAR DROPDOWN ========== */
@media (max-width: 768px) {

  /* Ocultar completamente el dropdown en móvil */
  .dropdown-menu {
    display: none !important;
  }

  /* Ocultar la flecha en móvil */
  .dropdown-arrow {
    display: none;
  }

  /* Hacer que SERVICIOS sea un enlace normal en móvil */
  .menu-item-dropdown {
    width: 100%;
  }

  .menu-item-dropdown .menu-item {
    width: 100%;
    justify-content: center;
    padding: 10px 0;
  }
}

/* ========================================
   OPTIMIZACIÓN MÓVIL - IMAGEN ABOUT
   ======================================== */

/* MÓVIL - Eliminar espacios innecesarios */
@media (max-width: 767px) {
  .about-section {
    padding: 60px 5% 80px;
    /* Reducir padding superior */
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
    /* Reducir gap entre imagen y contenido */
  }

  /* Imagen más grande en móvil */
  .about-image {
    margin-top: 0;
    transform: translateX(0);
    opacity: 1;
  }

  .about-image img {
    height: 300px;
    /* Aumentar altura en móvil */
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
  }

  /* Ajustar badge para que no se salga */
  .about-badge {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 11px;
  }

  /* Reducir padding del contenido */
  .about-content {
    padding: 10px 0;
    transform: translateX(0);
    opacity: 1;
  }

  .about-label {
    margin-top: 130px;
  }

  /* Título más compacto */
  .about-title {

    margin-bottom: 20px;
    font-size: clamp(26px, 7vw, 36px);
  }

  /* Línea del título más corta */
  .about-title::after {
    width: 60px;
    bottom: -10px;
  }

  /* Textos más compactos */
  .about-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    padding-left: 15px;
  }

  /* Features más compactas */
  .about-features {
    margin-top: 25px;
  }

  .about-features li {
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 14px;
    gap: 12px;
  }

  .check-icon {
    width: 26px;
    height: 26px;
  }
}

/* MÓVIL GRANDE (414px+) - iPhone Pro Max, etc */
@media (min-width: 414px) and (max-width: 767px) {
  .about-section {
    padding: 50px 5% 70px;
  }

  .about-image img {
    height: 300px;
    /* Más alto en pantallas grandes */
  }

  .about-text {
    font-size: 16px;
  }

  .about-features li {
    font-size: 15px;
  }
}

/* MÓVIL ESTÁNDAR (375px - 413px) - iPhone 14 Pro, iPhone 13, etc */
@media (min-width: 375px) and (max-width: 413px) {
  .about-section {
    padding: 45px 5% 65px;
  }

  .about-image img {
    height: 420px;
  }
}

/* MÓVIL PEQUEÑO (hasta 374px) - iPhone SE, etc */
@media (max-width: 374px) {
  .about-section {
    padding: 40px 5% 60px;
  }

  .about-container {
    gap: 25px;
  }

  .about-image img {
    height: 340px;
    border-radius: 16px;
  }

  .about-label {
    font-size: 11px;
    padding: 6px 16px;
    letter-spacing: 2px;
  }

  .about-title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .about-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .about-features li {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ========================================
   AJUSTE DEL ESPACIO SUPERIOR (HERO)
   ======================================== */

/* Si el espacio azul es del hero section, agregar esto */
@media (max-width: 767px) {

  /* Reducir margen entre hero y about section */
  .hero {
    margin-bottom: 0;
  }

  .about-section {
    margin-top: -20px;
    /* Solapar ligeramente con hero si es necesario */
  }

  /* O si quieres un espaciado específico */
  .hero+.AcercaN {
    margin-top: 0;
  }

  .AcercaN {
    padding-top: 0;
  }
}

/* ========================================
   OPTIMIZACIÓN VERTICAL DEL LAYOUT
   ======================================== */

@media (max-width: 767px) {

  /* Imagen ocupa más espacio vertical */
  .about-image {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: 500px;
  }

  /* Contenido más compacto */
  .about-content br {
    display: none;
    /* Eliminar saltos de línea innecesarios */
  }

  .about-label {
    margin-bottom: 15px;
  }
}

/* ========================================
   APROVECHAR TODA LA PANTALLA
   ======================================== */

@media (max-width: 767px) {

  /* Hacer la imagen edge-to-edge si quieres */
  .about-image-full {
    margin-left: -5%;
    margin-right: -5%;
    width: 110%;
    border-radius: 0;
  }

  /* O mantener con padding mínimo */
  .about-section {
    padding-left: 4%;
    padding-right: 4%;
  }

  .about-container {
    padding: 0;
  }
}

/* ========================================
   ORIENTACIÓN LANDSCAPE EN MÓVIL
   ======================================== */

@media (max-height: 600px) and (orientation: landscape) and (max-width: 767px) {
  .about-section {
    padding: 40px 5% 50px;
  }

  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about-image img {
    height: 150px;
  }

  .about-content {
    padding: 0 10px;
  }

  .about-features li {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* En móvil */
@media (max-width: 767px) {
  .hero {
    padding-bottom: 40px;
  }

  .about-section {
    padding-top: 40px;
    margin-top: -20px;
    /* Solapar un poco si es necesario */
  }
}