/* ===========================
   RESET BÁSICO
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
  padding-top: 0;
}

html {
  scroll-behavior: smooth;
}

/* ===========================
   HEADER (Sticky + Sombra)
=========================== */
.header {
  width: 100%;
  background: #0a2a43;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
 /* z-index: 999; */
 z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header__logo img { height: 55px; }

.header__nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
}

.header__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 6px 10px;
  transition: 0.3s;
}

.header__nav a:hover,
.header__nav .active {
  background: #134f97;
  border-radius: 4px;
}

.btn-nav {
  background: #f1c500;
  color: #000 !important;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
}
/* ===========================
   HERO
=========================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background: #fff;
}

.hero__content { max-width: 50%; }

.hero__content h1 {
  font-size: 42px;
  color: #0a2a43;
  margin-bottom: 10px;
}

.hero__content h2 {
  font-size: 22px;
  color: #134f97;
  margin-bottom: 20px;
}

.hero__content p {
  font-size: 16px;
  margin-bottom: 25px;
}

.hero__buttons .btn { margin-right: 10px; }

.hero__image img {
  width: 480px;
  border-radius: 10px;
}

/* ===========================
   BOTONES
=========================== */
.btn {
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.btn--primary {
  background: #134f97;
  color: #fff;
}

.btn--primary:hover {
  background: #0d3a6d;
}

.btn--secondary {
  background: #f1c500;
  color: #000;
}

.btn--outline {
  border: 2px solid #134f97;
  color: #134f97;
}

.btn--outline:hover {
  background: #134f97;
  color: #fff;
}

/* ===========================
   SECCIONES
=========================== */
.section {
  padding: 60px 40px;
}

.section--light {
  background: #f8fbff;
}

.section--dark {
  background: #0a2a43;
  color: #fff;
}

.section--highlight {
  background: #eaf2ff;
}

.section__title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #0a2a43;
}

/* ===========================
   GRID DE SERVICIOS (UNIFICADO)
=========================== */
.servicios-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.servicio-card,
.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  border: 2px solid #f4c542;
  text-align: center;
  text-decoration: none;
  color: #003366;
  font-weight: 700;
  font-size: 16px;
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.servicio-card:hover,
.service-card:hover {
  background: #003366;
  color: #ffffff;
  border-color: #003366;
}

/* Ícono dentro de círculo */
.servicio-icon {
  width: 70px;
  height: 70px;
  border: 3px solid #f4c542;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.servicio-icon img {
  width: 40px;
  height: auto;
}

/* ===========================
   TABLAS
=========================== */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
}

.table th {
  background: #134f97;
  color: #fff;
  padding: 12px;
}

.table td {
  padding: 12px;
  border-bottom: 1px solid #dce3eb;
}

.table tr:hover {
  background: #f1f6ff;
}

/* ===========================
   ACCESOS DIRECTOS
=========================== */
.quick-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.quick-link {
  background: #ffffff;
  padding: 15px 25px;
  border-radius: 6px;
  border: 1px solid #dce3eb;
  text-decoration: none;
  color: #134f97;
  font-weight: bold;
  transition: 0.3s;
}

.quick-link:hover {
  background: #134f97;
  color: #fff;
}

/* ===========================
   BANNER HOME (CORREGIDO)
=========================== */
.banner-home {
  position: relative;
  background: url('../images/banner.jpg') center/cover no-repeat;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.banner-home__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.banner-home__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out;
  margin-top: -240px;
  color: #fff;
}

.banner-home__content h1 {
  font-size: 46px;
  font-weight: 800;
  color: #f4c542;
  margin-bottom: 15px;
}

.banner-home__content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   QUIÉNES SOMOS / SERVICIOS
=========================== */
.qs-block {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.qs-block h2 {
  font-size: 28px;
  font-weight: 800;
  color: #003A6F;
  margin-bottom: 20px;
  position: relative;
}

.qs-block h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin: 6px auto 0 auto; /* CENTRADO */
    border-radius: 2px;
}

/* ===========================
   MISIÓN – VISIÓN (CON BARRA CENTRAL)
=========================== */
.mv-container {
  display: grid;
  grid-template-columns: 1fr 4px 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 40px auto;
  align-items: flex-start;
}

.mv-divider {
  background: #F1C500;
  border-radius: 2px;
  height: 100%;
}

.mv-col-left,
.mv-col-right {
  text-align: left;
    
}

.mv-col-left h2,
.mv-col-right h2 {
  font-size: 28px;
  font-weight: 800;
  color: #003A6F;
  margin-bottom: 12px;
  position: relative;
}

.mv-col-left h2::after,
.mv-col-right h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 4px;
  background: #F1C500;
  border-radius: 2px;
}

.mv-col-left p,
.mv-col-right p {
  font-size: 17px;
  line-height: 1.6;
  color: #003366;
}
/* ===========================
   PRODUCTOS 
=========================== */
.qs-blockp {
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #003366;
  text-align: center;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #0a2a43;
  color: #fff;
  padding: 40px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__brand img {
  height: 55px;
  margin-bottom: 10px;
}

.footer__links ul {
  list-style: none;
}

.footer__links a {
  color: #fff;
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__bottom {
  margin-top: 25px;
  text-align: center;
  border-top: 1px solid #33506a;
  padding-top: 15px;
}

.footer__copy--center {
  text-align: center;
  width: 100%;
  margin-top: 10px;
}

/* ===========================
   RESPONSIVE GENERAL
=========================== */
@media (max-width: 900px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__image img {
    width: 100%;
    margin-top: 20px;
  }

  .header__nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mv-container {
    flex-direction: column;
    gap: 30px;
  }

  .mv-col-left,
  .mv-col-right {
    width: 100%;
    padding: 0;
    border: none;
  }

  .qs-block h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.img-box {
    width: 262px;
    height: 175px;
    background: #f0f0f0; /* opcional */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ← Mantiene la imagen completa */
}

/* ============================
   SECCIÓN MARÍTIMO (OPCIÓN A)
   ============================ */

#maritimo.service-block {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Título con icono */
#maritimo .service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

#maritimo .service-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003A6F;
    position: relative;
    margin: 0;
}

/* Línea amarilla debajo del título */
#maritimo .service-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin-top: 6px;
    border-radius: 2px;
}

/* Párrafos */
#maritimo .service-text {
    font-size: 17px;
    line-height: 1.7;
    color: #003A6F;
    margin-bottom: 18px;
}

/* Subtítulos */
#maritimo .service-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #003A6F;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Listas */
#maritimo .service-list {
    margin-left: 20px;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 17px;
    color: #003A6F;
}

#maritimo .service-list li {
    margin-bottom: 10px;
}

/* Galería de imágenes */
#maritimo .service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

#maritimo .service-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
/* ============================
   SECCIÓN AÉREO (IGUAL A LA IMAGEN)
   ============================ */

#aereo.service-block {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Título con icono */
#aereo .service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

#aereo .service-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003A6F;
    position: relative;
    margin: 0;
}

/* Línea amarilla debajo del título */
#aereo .service-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin-top: 6px;
    border-radius: 2px;
}

/* Párrafos */
#aereo .service-text {
    font-size: 17px;
    line-height: 1.7;
    color: #003A6F;
    margin-bottom: 18px;
}

/* Subtítulos */
#aereo .service-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #003A6F;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Listas */
#aereo .service-list {
    margin-left: 20px;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 17px;
    color: #003A6F;
}

#aereo .service-list li {
    margin-bottom: 12px;
}

/* Galería */
#aereo .service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

#aereo .service-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
/* ============================
   SERVICIOS COMEX - CONTENEDOR PRINCIPAL
   ============================ */
#servi {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* ============================
   TÍTULO PRINCIPAL
   ============================ */
#servi .service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

#servi .service-title h1 {
    font-size: 32px;
    font-weight: 800;
    color: #003A6F;
    margin: 0;
    position: relative;
}

#servi .service-title h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin-top: 6px;
    border-radius: 2px;
}

/* ============================
   SUBTÍTULOS DE BLOQUES
   ============================ */
.bloque-titulo h2 {
    color: #003A6F;
    margin-bottom: 5px;
    font-size: 1.6rem;
}

.bloque-titulo h3 {
    color: #4F4F4F;
    margin-top: 0;
    font-size: 1rem;
}

/* ============================
   TABLAS
   ============================ */
.tabla-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
}

thead {
    background: #003A6F;
    color: white;
}

th {
    padding: 12px;
    text-align: left;
    font-size: 0.95rem;
}

td {
    padding: 10px 12px;
    border-bottom: 1px solid #E5E5E5;
    font-size: 0.9rem;
}

tr:hover {
    background: #F0F6FF;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    th, td {
        font-size: 0.8rem;
        padding: 8px;
    }

    .bloque-titulo h2 {
        font-size: 1.3rem;
    }
}
/* ============================
   SECCIÓN MULTIMODAL (IGUAL A LA IMAGEN)
   ============================ */
#servicios-multimodal {
    margin-top: 50px;
}
#multimodal.service-block {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}
#multimodal .service-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003A6F;
    position: relative;
    margin: 0;
}

/* Línea amarilla debajo del título */
#multimodal .service-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin-top: 6px;
    border-radius: 2px;
}

/* Título con icono */
#multimodal .service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #003A6F;
}

/* Texto descriptivo */
.multimodal-descripcion p {
    font-size: 17px;
    line-height: 1.7;
    color: #003A6F;
    margin-bottom: 20px;
}

.multimodal-descripcion h4 {
    font-size: 20px;
    font-weight: 700;
    color: #003A6F;
    margin-bottom: 10px;
}

/* Lista */
.multimodal-lista {
    margin-left: 20px;
    line-height: 1.7;
    font-size: 17px;
    color: #003A6F;
}

.multimodal-lista li {
    margin-bottom: 15px;
}

/* ============================
   GALERÍA MULTIMODAL
   ============================ */

#multimodal .service-gallery {
    display: flex;
    justify-content: center;     /* Centra la galería */
    align-items: center;
    margin-top: 30px;
}

#multimodal .service-gallery img {
    width: 100%;
    max-width: 1200px;           /* Aumenta el tamaño máximo */
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin: 0 auto;              /* Centra la imagen */
}
/* ============================
   SECCIÓN ALMACENAJE
   ============================ */

#servicios-almacenaje {
    margin-top: 50px;
}
#almacenaje.service-block {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}
#almacenaje .service-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003A6F;
    position: relative;
    margin: 0;
}

/* Línea amarilla debajo del título */
#almacenaje .service-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin-top: 6px;
    border-radius: 2px;
}
/* Título con icono */
#almacenaje .service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #003A6F;
}
/* Texto general */
#servicios-almacenaje p {
    font-size: 17px;
    line-height: 1.7;
    color: #003A6F;
    margin-bottom: 20px;
}

/* Subtítulo */
.almacenaje-subtitulo {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #003A6F;
}

/* Listas */
.almacenaje-lista {
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 17px;
    color: #003A6F;
}

.almacenaje-lista li {
    margin-bottom: 15px;
}

/* Galería */
.almacenaje-galeria {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.almacenaje-galeria img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    object-fit: cover;
}
/* ============================
   SECCIÓN CONSULTORÍA TI
   ============================ */

#consultoria-ti {
    margin-top: 50px;
}
#consultoria.service-block {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}
#consultoria .service-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003A6F;
    position: relative;
    margin: 0;
}

/* Línea amarilla debajo del título */
#consultoria .service-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin-top: 6px;
    border-radius: 2px;
}
/* Título con icono */
#consultoria .service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #003A6F;
}
/* Contenedor principal de texto + imagen */
.consultoria-contenido {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;      /* Centra los bloques dentro del contenedor */
}

/* Bloque de texto */
.consultoria-texto {
    flex: 1 1 320px;
    max-width: 600px;
    color: #003A6F;
}

.consultoria-texto h3 {
    font-size: 20px;
    font-weight: 700;
    color: #003A6F;
    margin-bottom: 15px;
}

/* Lista */
.consultoria-lista {
    margin-left: 20px;
    line-height: 1.7;
    font-size: 17px;
    color: #003A6F;
}

.consultoria-lista li {
    margin-bottom: 15px;
}

/* Contenedor de la imagen */
.consultoria-imagen {
    flex: 0 1 350px;              /* Limita el ancho del bloque de imagen */
    text-align: center;
}

/* Imagen */
.consultoria-imagen img {
    width: 100%;
    max-width: 320px;             /* ← tamaño reducido real */
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin: 0 auto;               /* ← centrado dentro del bloque */
}
/* ============================
   BLOQUES AMARILLOS PREMIUM
   ============================ */

.consultoria-bloque {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
    border-left: 10px solid #E0B200;
    padding: 28px 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover elegante */
.consultoria-bloque:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

/* Línea decorativa superior */
.consultoria-bloque::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #E0B200;
    border-radius: 12px 12px 0 0;
}

/* Títulos */
.consultoria-bloque h3 {
    font-size: 22px;
    font-weight: 800;
    color: #003A6F;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

/* Texto */
.consultoria-bloque p {
    font-size: 17px;
    line-height: 1.7;
    color: #003A6F;
    margin-bottom: 12px;
}

/* Lista dentro del bloque */
.consultoria-bloque ul {
    margin-left: 22px;
    margin-top: 12px;
}

.consultoria-bloque li {
    margin-bottom: 10px;
    color: #003A6F;
    font-weight: 600;
}

/* Botón dentro del bloque */
.consultoria-bloque .btn--primary {
    background-color: #003A6F;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.consultoria-bloque .btn--primary:hover {
    background-color: #00509E;
}


/* Botón */
.btn-detalles {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #003A6F;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.btn-detalles:hover {
    background-color: #00509E;
}
/* Icono circular azul para NOVEDAD VLC PLUS */
.consultoria-novedad .bloque-icono {
    width: 50px;
    height: 50px;
    background-color: #003366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 15px;
}

.consultoria-novedad .bloque-icono span {
    color: white;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}
/* Contenedor de logos de alianza */
.consultoria-imagen1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* separación entre elementos */
    margin: 20px 0;
}

/* Tamaño uniforme para los logos */
.consultoria-imagen1 img {
    height: 60px;        /* <-- AJUSTA AQUÍ EL TAMAÑO */
    width: auto;
    object-fit: contain;
}

/* Icono de alianza (🤝) */
.consultoria-imagen .icono-alianza {
    font-size: 48px;     /* tamaño del emoji */
    color: #003366;      /* azul institucional */
    font-weight: bold;
    display: flex;
    align-items: center;
}
.icono-32 {
  background-color: #fcfbfb;
    width: 40px;
    height: 40px;
}
.icon-comex {
    background-color: #F5F5F5;
  width: 50px;
  height: 40px;
}

/* ============================
   SECCIÓN TRACKING
   ============================ */

#servicios-tracking {
    margin-top: 50px;
}
#tracking.service-block {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}
#tracking .service-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003A6F;
    position: relative;
    margin: 0;
}

/* Línea amarilla debajo del título */
#tracking .service-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin-top: 6px;
    border-radius: 2px;
}
/* Título con icono */
#tracking .service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #003A6F;
}
/* Texto general */
#tracking-almacenaje p {
    font-size: 17px;
    line-height: 1.7;
    color: #003A6F;
    margin-bottom: 20px;
}

/* Subtítulo */
.tracking-subtitulo {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #003A6F;
}

/* Listas */
.tracking-lista {
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 17px;
    color: #003A6F;
}

.tracking-lista li {
    margin-bottom: 15px;
}

/* Galería */
.tracking-galeria {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
   
}

.tracking-galeria img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    object-fit: cover;
}
/* ============================
   SECCIÓN RECLAMOS
   ============================ */

#reclamos-tracking {
    margin-top: 50px;
}
#reclamos.service-block {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}
#reclamos .service-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003A6F;
    position: relative;
    margin: 0;
}

/* Línea amarilla debajo del título */
#reclamos .service-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin-top: 6px;
    border-radius: 2px;
}
/* Título con icono */
#reclamos .service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #003A6F;
}
/* Texto general */
#reclamos-almacenaje p {
    font-size: 17px;
    line-height: 1.7;
    color: #003A6F;
    margin-bottom: 20px;
}

/* Subtítulo */
.reclamos-subtitulo {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #003A6F;
}

/* Listas */
.reclamos-lista {
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 17px;
    color: #003A6F;
}

.reclamos-lista li {
    margin-bottom: 15px;
}

/* Galería */
.reclamos-galeria {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
   
}

.reclamos-galeria img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    object-fit: cover;
}
/* ============================
   SECCIÓN TRACKING
   ============================ */

#servicios-tracking {
    margin-top: 50px;
}
#tracking.service-block {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}
#tracking .service-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003A6F;
    position: relative;
    margin: 0;
}

/* Línea amarilla debajo del título */
#tracking .service-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin-top: 6px;
    border-radius: 2px;
}
/* Título con icono */
#tracking .service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #003A6F;
}
/* Texto general */
#tracking-almacenaje p {
    font-size: 17px;
    line-height: 1.7;
    color: #003A6F;
    margin-bottom: 20px;
}

/* Subtítulo */
.tracking-subtitulo {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #003A6F;
}

/* Listas */
.tracking-lista {
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 17px;
    color: #003A6F;
}

.tracking-lista li {
    margin-bottom: 15px;
}

/* Galería */
.tracking-galeria {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
   
}

.tracking-galeria img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    object-fit: cover;
}
/* ============================
   SECCIÓN TARIFA 
   ============================ */

#servicios-tarifa {
    margin-top: 50px;
}
#tarifa.service-block {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
}
#tarifa .service-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003A6F;
    position: relative;
    margin: 0;
}

/* Línea amarilla debajo del título */
#tarifa .service-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #F1C500;
    margin-top: 6px;
    border-radius: 2px;
}
/* Título con icono */
#tarifa .service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #003A6F;
}
/* Texto general */
#tarifa-almacenaje p {
    font-size: 17px;
    line-height: 1.7;
    color: #003A6F;
    margin-bottom: 20px;
}

/* Subtítulo */
.tarifa-subtitulo {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #003A6F;
}

/* Listas */
.tarifa-lista {
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 17px;
    color: #003A6F;
}

.tarifa-lista li {
    margin-bottom: 15px;
}

/* Galería */
.tarifa-galeria {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
   
}

.tarifa-galeria img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    object-fit: cover;
}
/* Boton descarga excel */
.btn-vlc-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #003A6F; /* Azul corporativo VLC */
  color: #F1C500;            /* Amarillo corporativo */
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-vlc-download:hover {
  background-color: #0055AA; /* Azul hover */
}

.icon-download {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("../images/descarga.png"); /* ajusta ruta según tu estructura */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
   background-color: #0055AA;
}
/* HEADER  */
.header-tarifario {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 40px;
}

.titulo-tarifario {
    font-size: 24px;
    font-weight: bold;
    color: #003366;
    margin: 0;
}

.btn-descargar-excel {
    margin-left: auto; /* 🔥 TABULACIÓN REAL: empuja el botón a la derecha */
    background-color: #f4c542; /* amarillo corporativo */
    color: #003366;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-descarga {
    width: 18px;
    height: 18px;
    display: block;
}

.subtitulo-tarifario {
    font-size: 14px;
    color: #555;
    margin-top: 4px;
    margin-bottom: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 40px;
}

/* HEADER ESPECIFICO PARA MOVIL SOLO OPCIONES MENU */
@media (max-width: 768px) {

    .header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 16px;
    }

    .header__logo img {
        height: 42px;
    }

    .header__nav ul {
        display: flex;
        flex-direction: column;   /* 🔥 los <li> se ordenan verticalmente */
        gap: 12px;                /* 🔥 separación uniforme */
        padding-left: 0;
        margin: 0;
        width: 100%;              /* 🔥 ocupa todo el ancho */
        align-items: center; /* 🔥 centra los <li> */
    }

    .header__nav ul li {
        list-style: none;         /* 🔥 elimina puntos */
        width: 95%; 
        text-align: center; /* 🔥 centra el texto */
    }

    .header__nav ul li a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        text-align: left;
        text-align: center; /* 🔥 centra el texto del enlace */
        border-bottom: 1px solid #e0e0e0; /* 🔥 orden visual */
    }

    .header__nav ul li:last-child a {
        border-bottom: none;
    }
}
.viewlogistics-text {
    white-space: normal;     /* 🔥 permite salto de línea */
    overflow: visible;       /* 🔥 evita que se corte */
    text-overflow: unset;    /* 🔥 elimina el efecto "..." */
    display: block;          /* 🔥 asegura comportamiento correcto */
    width: 100%;             /* 🔥 ocupa todo el ancho disponible */
    font-size: 46px;
    font-weight: 800;
    color: #f4c542;
    margin-bottom: 15px;
}
@media (max-width: 768px) {

    .mv-col-left,
    .mv-col-right {
        padding-left: 16px;   /* separa del borde izquierdo */
        padding-right: 16px;  /* separa del borde derecho */
        box-sizing: border-box;
    }
}
/* ===========================
   RESPONSIVE - MOBILE ordenamiento de botones 
   =========================== */
@media (max-width: 768px) {

    .header__nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;   /* 🔥 centra los LI */
        gap: 12px;
        padding: 0;
        margin: 0 auto;
        width: 100%;
    }

    .header__nav ul li {
        list-style: none;
        width: auto;           /* 🔥 evita que el LI se estire */
        text-align: center;
    }

    .header__nav ul li a {
        display: inline-block; /* 🔥 el botón se ajusta y se centra */
        min-width: 220px;      /* 🔥 tamaño uniforme como en tu imagen */
        padding: 14px 0;
        font-size: 16px;
        font-weight: 600;
        border-radius: 6px;
        text-align: center;
    }

    /* Botón azul */
    .header__nav ul li a.active {
        background-color: #003366;
        color: #fff;
    }

    /* Botones amarillos */
    .header__nav ul li a.btn-nav {
        background-color: #f4c400;
        color: #003366;
    }
}
@media (max-width: 768px) {

    .header__nav {
        width: 100%;
        display: flex;
        justify-content: center;   /* 🔥 centra todo el menú */
    }

    .header__nav ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
        margin: 0 auto;
        align-items: center;        /* 🔥 centra los LI */
        width: auto;                /* 🔥 evita que el UL se estire */
    }

    .header__nav ul li {
        list-style: none;
        width: auto;                /* 🔥 evita que el LI se estire */
        text-align: center;
    }

    .header__nav ul li a {
        display: inline-block;      /* 🔥 permite centrar el botón */
        min-width: 240px;           /* 🔥 tamaño uniforme como en tu imagen */
        padding: 14px 0;
        font-size: 16px;
        font-weight: 600;
        border-radius: 6px;
        text-align: center;
    }

    /* Botón azul */
    .header__nav ul li a.active {
        background-color: #003366;
        color: #fff;
    }

    /* Botones amarillos */
    .header__nav ul li a.btn-nav {
        background-color: #f4c400;
        color: #003366;
    }
}
.banner-home__overlay {
    pointer-events: none;
}
/* aqui*/
@media (max-width: 768px) {
    .viewlogistics-text {
        font-size: 1.4rem;      /* Reduce ligeramente el tamaño */
    }

    .banner-home__content p {
        font-size: 1rem;        /* Ajusta el párrafo */
        padding: 0 1rem;        /* Evita que toque los bordes */
    }
}

/* Ajuste para que el scroll llegue correctamente al bloque de PRODUCTOS en móvil */
#productos {
    scroll-margin-top: 350px; /* Ajusta según la altura del menú responsivo */
}
/* ===========================
   MENÚ MÓVIL ULTRA COMPACTO
   =========================== */
@media (max-width: 480px) {

    /* Contenedor del menú */
    .menu-mobile {
        padding: 10px 8px;
    }

    /* Botones del menú */
    .menu-mobile a {
        padding: 8px 10px;       /* menos padding */
        font-size: 13px;         /* texto más pequeño */
        margin-bottom: 6px;      /* menos separación */
        border-radius: 5px;
    }

    /* Ajuste del contenedor UL si aplica */
    .header__nav ul li a {
        padding: 8px 10px;
        font-size: 13px;
    }

    /* Texto descriptivo inferior */
    .menu-mobile .descripcion {
        font-size: 12px;
        line-height: 1.35;
        margin-top: 10px;
        padding: 0 8px;
    }

    /* Ajuste del logo si ocupa mucho */
    .header__logo img {
        height: 42px;            /* reduce tamaño del logo */
    }
}
