/* =====================================================================
   custom.css — Estilos personalizados mobilsinaloa.com.mx
   No modificar archivos originales de la plantilla (Sandbox 3.4.1).
   ===================================================================== */

/* ---------------------------------------------------------------------
   Tipografía de marca — EMprint
   Fuente oficial del sitio (assets/fonts/emprint).
   --------------------------------------------------------------------- */
@font-face {
  font-family: 'EMprint';
  src: url('../fonts/emprint/EMprint-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EMprint';
  src: url('../fonts/emprint/EMprint-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'EMprint';
  src: url('../fonts/emprint/EMprint-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EMprint';
  src: url('../fonts/emprint/EMprint-RegularItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'EMprint';
  src: url('../fonts/emprint/EMprint-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EMprint';
  src: url('../fonts/emprint/EMprint-SemiboldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'EMprint';
  src: url('../fonts/emprint/EMprint-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EMprint';
  src: url('../fonts/emprint/EMprint-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---------------------------------------------------------------------
   Variables de marca Mobil
   --------------------------------------------------------------------- */
:root {
  --mobil-blue: #0033A0;
  --mobil-blue-line: #0f5fbf;
  --mobil-red: #E4002B;
  --mobil-gray-text: #5c5c5c;
  --mobil-nav-text: #333333;
  --mobil-topbar-bg: #ededed;
  --mobil-header-bg: #E2E2E2;
  /* Fondo del header, navbar y offcanvas */
  --mobil-topbar-text: #4a4a4a;
  --site-max: 1320px;
  /* Ancho máximo del contenido central */
  --site-gutter-bg: #e6e6e6;
  /* Color del margen gris lateral */
}

/* =====================================================================
   LAYOUT GENERAL — contenido central con márgenes grises a los lados
   (aplica a header, cuerpo y footer por igual)
   ===================================================================== */
body {
  background-color: var(--site-gutter-bg);
}

.site-shell {
  width: min(100% - 4rem, var(--site-max));
  margin-inline: auto;
  background-color: #ffffff;
  /* Sombreado solo en los laterales para separar el sitio del fondo (gutter) */
  box-shadow: 12px 0 24px -12px rgba(0, 0, 0, 0.15),
    -12px 0 24px -12px rgba(0, 0, 0, 0.15);
  /* El footer permanece pegado al fondo aunque haya poco contenido */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* El contenido principal crece para empujar el footer hacia abajo */
.site-shell>main {
  flex: 1 0 auto;
  background: #FFF;
}

.site-shell>.footer-mobil {
  flex-shrink: 0;
}


/* =====================================================================
   ESTILOS GENERALES
   ===================================================================== */
.txt-parrafo {
  font-family: 'EMprint', sans-serif;
  font-size: 17px;
  line-height: 1.2;
  color: #313B3A;
}


.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mobil-blue);
  color: #ffffff;
  font-family: 'EMprint', sans-serif;
  font-weight: 700;
  padding: 5px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-custom:hover {
  background-color: var(--mobil-red);
  color: #ffffff;
}

.subtitulo {
  color: #313B3A;
  font-family: 'EMprint', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 1.75rem;
}

.subtitulo-h3 {
  text-align: center;
  font-weight: 500;
  font-family: 'EMprint', sans-serif;
  font-size: 22px;
}

.container-lg {
  padding: 0px;
}

.cont-txt {
  width: 85%;
  margin: auto;
}

/* =====================================================================
   HEADER
   ===================================================================== */
.header-mobil {
  position: relative;
  width: 100%;
  z-index: 1030;
}

/* ---------- Barra superior de utilidades ---------- */
.topbar-mobil {
  background: var(--mobil-header-bg);
  font-size: 0.8125rem;
  padding: 15px 0;
}


.topbar-links a,
.topbar-location {
  color: #394241;
  font-family: 'EMprint', sans-serif;
  text-decoration: none;
  transition: color 0.2s ease;
}

.topbar-links a {
  margin-right: 1.75rem;
}

.topbar-links a:last-child {
  margin-right: 0;
}

.topbar-links a:hover,
.topbar-location:hover {
  color: var(--mobil-blue);
}

.topbar-tools {
  gap: 1.25rem;
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.topbar-social img {
  width: 22px;
  height: 22px;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.topbar-social a:hover img {
  opacity: 0.75;
  transform: translateY(-1px);
}

.topbar-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-location img {
  width: 18px;
  height: 18px;
  display: block;
}

/* ---------- Navegación principal ---------- */
.topbar-mobil>div {
  width: 85%;
}

.navbar-mobil {
  background: var(--mobil-header-bg);
  padding-top: 0px;
  padding-bottom: 30px;
}

.navbar-stick {
  padding-bottom: 0px !important;
}


/* Línea azul inferior: con el mismo ancho que el contenedor del navbar */
.navbar-mobil>.container-lg {
  border-bottom: 8px solid #0E469A;
  padding-left: 100px;
  padding-right: 100px;
  background: white;
}

/* Marca: logo + separador + etiqueta "Combustibles" */
.brand-mobil {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.brand-logo {
  width: auto;
  height: 42px;
  display: block;
}

.brand-divider {
  width: 1px;
  height: 50px;
  background-color: #cfcfcf;
}

.brand-label {
  color: #313B3A;
  font-family: 'EMprint', sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

/* Enlaces del menú */
.navbar-mobil .navbar-nav {
  gap: 0.5rem;
}

.navbar-mobil .nav-link {
  color: var(--mobil-nav-text);
  font-family: 'EMprint', sans-serif;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.15;
  padding: 20px 10px !important;
  text-align: center;
  transition: color 0.2s ease;
}

.navbar-mobil .nav-link:hover{
  transition: 0.5s all ease;
  color: #0E469A;
}
.navbar-mobil .nav-link.active {
  border-top: 4px solid #0E469A;
  transition: 0.5s all ease;
  color: black;
}

/* ---------- Navbar fijo al hacer scroll (clon de Headhesive) ----------*/
.navbar-clone.navbar-mobil {
  left: 50%;
  width: min(100% - 4rem, var(--site-max));
  transform: translateX(-50%) translateY(-100%);
}

.navbar-clone.navbar-mobil.navbar-stick {
  transform: translateX(-50%) translateY(0%);
}


/* =====================================================================
   SECCIÓN 1 — SLIDER PRINCIPAL
   ===================================================================== */

.seccion-1>div {
  padding: 0px;
}

/* Imagen a todo el ancho del contenedor (mismo ancho que el header) */
.slider-mobil .swiper img {
  width: 100%;
  display: block;
}

/* Portada única de páginas interiores (misma anchura que el header) */
.portada-mobil img {
  width: 100%;
  display: block;
}

/* Fila de controles en flujo normal, debajo de la imagen */
.slider-mobil .swiper-controls {
  position: relative !important;
  top: auto;
  left: auto;
  width: 100%;
  height: 3rem;
  margin-top: 1.5rem;
  pointer-events: all;
}

/* Flechas: finas, grises, pegadas a los extremos de la sección */
.slider-mobil .swiper-navigation {
  position: static;
}

.slider-mobil .swiper-button {
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: transparent;
  box-shadow: none;
  color: #9aa1ab;
  transition: color 0.2s ease;
  /* Por encima de la capa de paginación para que el clic llegue a la flecha */
  z-index: 2;
  pointer-events: all;
}

.slider-mobil .swiper-button:hover {
  background: transparent;
  color: var(--mobil-blue);
}

.slider-mobil .swiper-button:after {
  font-size: 2rem;
}

.slider-mobil .swiper-button.swiper-button-prev {
  left: 0;
  right: auto;
}

.slider-mobil .swiper-button.swiper-button-next {
  right: 0;
  left: auto;
}

/* Dots centrados en la fila de controles.
   La capa ocupa todo el ancho, así que debe dejar pasar los clics hacia las
   flechas; solo los propios dots vuelven a capturarlos. */
.slider-mobil .swiper-pagination {
  position: absolute !important;
  top: 50%;
  bottom: auto;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
  pointer-events: none;
}

.slider-mobil .swiper-pagination .swiper-pagination-bullet {
  pointer-events: all;
}

/* Texto descriptivo centrado bajo el slider */
.slider-mobil-desc {
  margin: 1.5rem auto 0;
  text-align: center;
}

.txt-parrafo.slider-mobil-desc {
  /* font-size: 15px; */
  text-align: left;
  width: 88%;
}


.swiper-controls .swiper-navigation .swiper-button.swiper-button-next::after {
  content: url("/assets/img/png/flecha-derecha.png") !important;
}

.swiper-button.swiper-button-prev::after {
  content: url("/assets/img/png/flecha-izquierda.png") !important;
}

.swiper-pagination-bullet {
  height: 40px !important;
  width: 40px !important;
}

.swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(0.6) !important;
  border-color: #065DA7 !important;
  background: #065DA7 !important;
  opacity: initial !important;
}

/* =====================================================================
   SECCIÓN 2 — CADENA DE SUMINISTRO (VIDEO)
   ===================================================================== */
.seccion-2,
.seccion-2>div {
  padding: 0;
}

.video-cadena {
  width: 100%;
}

.video-cadena .player {
  width: 100%;
}

.video-cadena>div {
  border-radius: inherit;
}



/* =====================================================================
    INTERIOR COMBUSTIBLES - SECCIÓN 2,3 — COMBUSTIBLE GARANTIZADO 
   ===================================================================== */
.seccion-2 {
  margin-top: 20px;
}

.interior-combustibles .seccion-3 {
  padding-top: 30px;
}

.img-combustible-garantizado {
  width: 100%;
}


.card-componente {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.icono-componente {
  width: 100px;
  margin-right: 40px;
}

.cont-txt-card p {
  margin: 0px;
}

.cont-txt-card>ul {
  margin-top: 20px;
  padding-left: 13px;
}

.cont-txt-combustibles.cont-txt .subtitulo {
  text-align: left;
  font-size: 38px;
  margin-top: 15px;
  margin-bottom: 10px;
}

/* =====================================================================
    INTERIOR ESTACIONES DE SERVICIOS
   ===================================================================== */

.portada-mobil {
  position: relative;
}


.cont-tit-estaciones {
  position: absolute;
  bottom: 0px;
  top: 0px;
  display: flex;
  align-items: center;
}

.titulo.tit-estaciones {
  background: #EBEBFF;
  font-family: 'EMprint', sans-serif;
  font-size: 39px;
  padding: 15px 25px;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
  padding-right: 40px;
  font-weight: 500;
}

/* .interior-estaciones-servicios .seccion-2 {
  padding-bottom: 70px;
} */

/* ---------- Buscador + mapa + listado de estaciones ---------- */
.info-mapa-estaciones {
  margin-top: 40px;
}

/* Buscador — contenedor único, blanco, redondeado y elevado
   (una sola pieza continua: input transparente + botón inset) */
.buscador-estaciones {
  display: flex;
  align-items: center;
  gap: 0;
  height: 46px;
  background-color: #ffffff;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
  margin-bottom: 0.85rem;
}

/* Foco: solo cambia la sombra del contenedor, sin borde azul del navegador */
.buscador-estaciones:focus-within {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
}

.buscador-estaciones .input-buscador {
  flex: 1 1 auto;
  min-width: 0;
  align-self: stretch;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0 1.25rem;
  font-family: 'Inter', 'Roboto', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  color: black;
}

.buscador-estaciones .input-buscador::placeholder {
  color: black;
  font-weight: 500;
}

.buscador-estaciones .input-buscador:focus {
  outline: none;
  box-shadow: none;
}

/* Botón inset: algo más bajo que el contenedor (margen blanco alrededor) */
.buscador-estaciones .btn-buscar {
  flex: 0 0 auto;
  align-self: stretch;
  padding: 0 30px;
  background-color: #0D47A1;
  border: none;
  border-radius: 10px;
  font-size: 1.0625rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.buscador-estaciones .btn-buscar:hover {
  background-color: #0A3A85;
  box-shadow: 0 4px 14px rgba(13, 71, 161, 0.30);
}

/* Fila: columna del mapa (buscador + mapa) a la izquierda, sidebar a la derecha */
.mapa-y-lista {
  display: flex;
  gap: 1.5rem;
  height: 540px;
}

/* Columna izquierda: buscador arriba, mapa ocupando el resto */
.col-mapa {
  flex: 1 1 66%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mapa-estaciones {
  flex: 1 1 auto;
  min-height: 0;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

/* Atribución del mapa oculta (a petición). */
.mapa-estaciones .leaflet-control-attribution {
  display: none;
}

/* Columna derecha: sidebar scrolleable a toda la altura de la fila */
.lista-estaciones {
  flex: 0 0 32%;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Tarjeta de cada estación */
.estacion-item {
  padding: 1rem 0.25rem 1.4rem;
  border-bottom: 1px solid #e2e2e2;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.estacion-item:hover,
.estacion-item.is-activa {
  background-color: #f4f7fb;
}

.estacion-item.is-oculta {
  display: none;
}

.estacion-head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.estacion-logo {
  height: 45px;
  width: auto;
  display: block;
}

.estacion-conoce {
  color: var(--mobil-blue);
  font-family: 'EMprint', sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
}

.estacion-conoce:hover {
  text-decoration: underline;
}

.estacion-item .txt-parrafo {
  margin: 0 0 0.15rem;
  line-height: 1.35;
}

.estacion-nombre {
  font-family: 'EMprint', sans-serif;
  font-weight: 700;
  color: #2f3437;
}

.estacion-factura {
  width: 100%;
  margin-top: 0.85rem;
}

/* Marcador por defecto: icono de ubicación azul */
.marcador-mobil-ubicacion {
  display: block;
  width: 26px;
  height: 34px;
  color: var(--mobil-blue);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.marcador-mobil-ubicacion svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Marcador de la estación seleccionada (punto azul numerado, estilo Mobil) */
.marcador-mobil-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--mobil-blue);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35),
              0 0 0 7px rgba(0, 51, 160, 0.22);
}

/* Texto del popup como enlace directo a Google Maps */
.leaflet-popup-content .popup-maps-link {
  display: block;
  color: var(--mobil-blue);
  text-decoration: none;
  line-height: 1.35;
}

.leaflet-popup-content .popup-maps-link:hover {
  text-decoration: underline;
}

.leaflet-popup-content .popup-maps-link strong {
  color: var(--mobil-blue);
}


/* =====================================================================
    INTERIOR DETALLE DE ESTACIÓN (estacion-detalle.php)
   ===================================================================== */

/* Dos columnas: info (izquierda) + mapa (derecha) */
.detalle-estacion {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

/* Reparto 40% / 60% (se descuenta la mitad del gap de 2rem en cada columna) */
.detalle-info {
  flex: 0 0 calc(45% - 1rem);
  max-width: calc(45% - 1rem);
}

.detalle-mapa-wrap {
  flex: 0 0 calc(55% - 1rem);
  max-width: calc(55% - 1rem);
  min-height: 0;
}

/* Recuadro con imagen + datos de la estación */
.detalle-card {
  height: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 0px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.detalle-foto img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.detalle-datos {
  padding: 0.25rem 0.4rem 1.5rem;
}

.detalle-datos .txt-parrafo {
  margin: 0;
  line-height: 1.2;
}

.detalle-nombre {
  font-family: 'EMprint', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #2f3437;
  margin-bottom: 0px !important;
}

/* Iconos de amenidades de la estación (24 horas, baños, bombas, etc.) */
.estacion-amenidades {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.7rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.estacion-amenidades .amenidad-item {
  display: flex;
  align-items: center;
}

.amenidad-icono {
  display: block;
  width: auto;
  height: 27px;
  max-width: 100%;
  object-fit: contain;
}

/* Botón a todo el ancho del recuadro: los márgenes negativos cancelan el
   padding de .detalle-datos para que llegue de borde a borde */
.detalle-como-llegar {
  display: flex;
  width: auto;
  margin: 1.1rem -1.4rem -1.5rem;
  padding: 8px 0px;
  border-radius: 0;
  gap: 0.5rem;
}

.detalle-como-llegar i {
  font-size: 1.1em;
  line-height: 1;
}

/* Mapa de la estación (misma altura que el recuadro) */
.mapa-estacion-detalle {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
  z-index: 1;
}

.mapa-estacion-detalle .leaflet-control-attribution {
  display: none;
}



/* =====================================================================
    INTERIOR NUESTRA OFERTA INDUSTRIAL
   ===================================================================== */

.cont-ventajas-fleetpro {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  /* margin-bottom: 40px; */
}

.cont-ventajas-fleetpro>div {
  width: 25%;
}

.cont-img-ventaja {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.icono-venataja {
  width: 90px;
  height: 90px;
}

.cont-tecnologia-synergy h2 {
  margin: 40px 0px;
}

.cont-tecnologia-synergy>h2 {
  margin: 40px 0px;
  margin-bottom: 50px;
}

/* =====================================================================
   FOOTER
   ===================================================================== */


.footer-mobil {
  background-color: #313B3A;
  padding: 2.25rem 0;
  /* margin-top: 70px; */
}

.site-shell>main {
  padding-bottom: 70px;
}

.footer-mobil-inner {
  gap: 1.5rem 2rem;
  width: 85%;
  margin: auto;
}

.interior-front-page .site-shell>main,
.interior-combustibles .site-shell>main,
.interior-nosotros .site-shell>main {
  padding-bottom: 0px;
}

/* ---------- Marcas ---------- */
.footer-brands {
  gap: 2.25rem;
}

.footer-logo-main img {
  height: 40px;
  width: auto;
  display: block;
  /* Renderiza el logo en blanco sobre el fondo oscuro */
  filter: brightness(0) invert(1);
}

.footer-subbrands {
  gap: 20px;
}

.footer-subbrands img {
  height: 20px;
  width: 60px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}


.footer-subbrands.d-flex.align-items-center > a:first-child > img {
  margin-bottom: -5px;
  width: 60px;
  height: 40px;
}

.footer-subbrands.d-flex.align-items-center > a:last-child > img {
  width: auto;
}
/* ---------- Legal ---------- */

.menu-footer {
  display: flex;
  justify-content: end;
  padding: inherit;
  color: white;
}

.menu-footer>li:first-child {
  list-style: none;
  margin-right: 25px;
}

.footer-legal-links a {
  color: #ffffff;
  font-family: 'EMprint', sans-serif;
  font-size: 17px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}

.footer-copy {
  color: white;
  font-family: 'EMprint', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  margin: 0.6rem 0 0;
}

/* =====================================================================
    INTERIOR NOSOTROS
   ===================================================================== */
.cont-txt.cont-txt-nosotros {
  margin: 40px auto;
}

/* =====================================================================
    INTERIOR detalle estacion
   ===================================================================== */

.detalle-estacion.cont-txt {
  margin-top: 70px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/*================================================================================================
================================================================================================*/
@media (max-width: 1800px) {}

/*================================================================================================
================================================================================================*/
@media (max-width: 1750px) {}


/*================================================================================================
================================================================================================*/
@media (max-width: 1700px) {}


/*================================================================================================
================================================================================================*/
@media (max-width: 1650px) {}

/*================================================================================================
================================================================================================*/
@media (max-width: 1600px) {}

/*================================================================================================
================================================================================================*/
@media (max-width: 1550px) {}


/*================================================================================================
================================================================================================*/
@media (max-width: 1500px) {}

/*================================================================================================
================================================================================================*/
@media (max-width: 1450px) {}

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

  .container-lg {
    max-width: 100% !important;
  }

}


/*================================================================================================
================================================================================================*/
@media (max-width: 1350px) {}

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

  .topbar-mobil>div,
  .footer-mobil-inner,
  .cont-txt {
    width: 91%;
  }

  .navbar-mobil>.container-lg {
    padding-left: 50px;
    padding-right: 50px;
  }

  .titulo.tit-estaciones {
    font-size: 30px;
  }

}


/*================================================================================================
================================================================================================*/
@media (max-width: 1200px) {
  .footer-logo-main img {
  height: 35px;
}

.footer-subbrands.d-flex.align-items-center > a:first-child > img {
  width: 50px;
}

.footer-subbrands img {
  width: 50px;
}
}

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

  .topbar-mobil>div,
  .footer-mobil-inner,
  .cont-txt {
    width: 94%;
  }

  .navbar-mobil>.container-lg {
    padding-left: 30px;
    padding-right: 30px;
  }

  .brand-logo {
    height: 33px;
  }

  .brand-label {
    font-size: 22px;
  }

  .navbar-mobil .nav-link {
    font-size: 16px !important;
    padding: 20px 5px !important;
  }

}

/*================================================================================================
================================================================================================*/
@media (max-width: 1120px) {
  .footer-logo-main img {
    height: 25px;
  }

  .footer-subbrands img {
    height: 18px;
  }

  .footer-brands,
  .footer-subbrands {
    gap: 20px;
  }


}

/*================================================================================================
================================================================================================*/
@media (max-width: 1050px) {
  .titulo.tit-estaciones {
    font-size: 25px;
  }

  .subtitulo {
    font-size: 35px;
  }



  .cont-ventajas-fleetpro>div {
    width: 50%;
  }

  .cont-ventajas-fleetpro {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px;
  }

  .cont-ventajas-fleetpro>div {
    width: 50%;
    padding: 30px;
  }

  .card-fleetpro br {
    display: none;
  }
}



/*================================================================================================
================================================================================================*/
@media (max-width: 1000px) {
  .footer-mobil-inner {
    width: 100%;
    flex-direction: column;
    padding: 20px;
  }

  .menu-footer {
    justify-content: center;
  }

  .footer-legal {
    text-align: center !important;
  }
}

/*================================================================================================
================================================================================================*/
@media (max-width: 991.98px) {
  .brand-label {
    font-size: 25px;
  }

  .brand-logo {
    height: 36px;
  }

  .navbar-mobil .navbar-nav {
    gap: 0;
    padding-top: 0.5rem;
  }

  .navbar-mobil .navbar-nav br {
    display: none;
  }

  /* ---------- Offcanvas del menú (móvil/tablet) ---------- */
  .offcanvas-mobil {
    --bs-offcanvas-bg: var(--mobil-header-bg);
    color: var(--mobil-nav-text);
  }

  /* Encabezado: logotipo + botón de cierre */
  .offcanvas-mobil .offcanvas-header {
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .offcanvas-mobil .offcanvas-brand img {
    display: block;
    height: 34px;
    width: auto;
  }

  /* Opciones del menú alineadas a la izquierda */
  .offcanvas-mobil .navbar-nav {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .navbar-mobil .offcanvas-body .nav-link {
    color: #313B3A !important;
    font-weight: 600 !important;
    text-align: left;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-mobil .offcanvas-body .nav-link:hover,
  .navbar-mobil .offcanvas-body .nav-link.active {
    color: #0E469A !important;
  }

  .offcanvas-body>ul>li {
    width: 100%;
  }

  /* Pie: enlaces corporativos, ubicación y redes sociales */
  .offcanvas-mobil .offcanvas-footer {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }

  .offcanvas-mobil .offcanvas-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .offcanvas-mobil .offcanvas-links a,
  .offcanvas-mobil .offcanvas-location {
    color: #394241;
    font-family: 'EMprint', sans-serif;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .offcanvas-mobil .offcanvas-links a:hover,
  .offcanvas-mobil .offcanvas-location:hover {
    color: var(--mobil-blue);
  }

  .offcanvas-mobil .offcanvas-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  .offcanvas-mobil .offcanvas-location img {
    width: 18px;
    height: 18px;
    display: block;
  }

  .offcanvas-mobil .offcanvas-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .offcanvas-mobil .offcanvas-social img {
    width: 22px;
    height: 22px;
    display: block;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .offcanvas-mobil .offcanvas-social a:hover img {
    opacity: 0.75;
    transform: translateY(-1px);
  }


  /* Mapa y listado apilados en tablet/móvil */
  .mapa-y-lista {
    flex-direction: column;
    height: auto;
  }

  .mapa-estaciones {
    flex: 1 1 auto;
    min-height: 380px;
  }

  .lista-estaciones {
    flex: 1 1 auto;
    max-height: 420px;
    padding-right: 0;
  }



  /* Info y mapa apilados en tablet/móvil */
  .detalle-estacion {
    flex-direction: column;
  }

  .detalle-info,
  .detalle-mapa-wrap {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .mapa-estacion-detalle {
    min-height: 360px;
  }


}

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

  /* En móvil el contenido usa todo el ancho (sin márgenes laterales) */
  .site-shell {
    width: 100%;
  }

  /* El navbar fijo también ocupa todo el ancho en móvil */
  .navbar-clone.navbar-mobil {
    width: 100%;
  }

  .txt-parrafo {
    font-size: 16px;
  }

}


/*================================================================================================
================================================================================================*/
@media (max-width: 920px) {}


/*================================================================================================
================================================================================================*/
@media (max-width: 900px) {}


/*================================================================================================
================================================================================================*/
@media (max-width: 880px) {}

/*================================================================================================
================================================================================================*/
@media (max-width: 850px) {
  .cont-txt-combustibles.cont-txt .subtitulo {
    text-align: center;
    font-size: 24px;
  }
}

/*================================================================================================
================================================================================================*/
@media (max-width: 767.98px) {
  .subtitulo {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
  }

  .buscador-estaciones .input-buscador {
    font-size: 16px;
    padding: 0 1rem;
  }

  .buscador-estaciones .btn-buscar {
    padding: 0 1.35rem;
  }

  .footer-mobil-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    text-align: left;
  }

  .titulo.tit-estaciones {
    padding: 10px 25px;
    padding-right: 25px;
  }
}

/*================================================================================================
================================================================================================*/
@media (max-width: 720px) {
  .cont-ventajas-fleetpro>div {
    padding: 10px;
  }
}


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

  .topbar-mobil>div>nav,
  .topbar-mobil>div>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

}

/*================================================================================================
================================================================================================*/
@media (max-width: 600px) {
  .buscador-estaciones .input-buscador {
    font-size: 14px;
  }

  .buscador-estaciones .btn-buscar {
    padding: 0 20px !important;
    font-size: 15px;
  }

  .cont-tit-estaciones {
    justify-content: center;
    width: 100%;
  }
}

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



  .topbar-links a {
    margin-right: 1rem;
  }

  /* .topbar-location span {
    display: none;
  } */

  .slider-mobil .swiper-button {
    width: 2.25rem;
  }

  .slider-mobil .swiper-button:after {
    font-size: 1.5rem;
  }

  /* Iconos de amenidades más compactos en móvil */
  .amenidad-icono {
    height: 30px;
  }
}

/*================================================================================================
================================================================================================*/
@media (max-width: 550px) {
  .subtitulo {
    margin: 20px 20px;
  }
}

/*================================================================================================
================================================================================================*/
@media (max-width: 500px) {
  .navbar-mobil>.container-lg {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-brand.brand-mobil {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .brand-logo {
    height: 30px;
  }

  .brand-label {
    font-size: 22px;
  }

  .subtitulo {
    font-size: 30px;
  }

}

/*================================================================================================
================================================================================================*/
@media (max-width: 450px) {
  .card-componente {
    flex-direction: column;
    gap: 30px;
  }

  .cont-ventajas-fleetpro {
    gap: 20px;
  }

  .cont-ventajas-fleetpro>div {
    width: 100%;
  }
}

/*================================================================================================
================================================================================================*/
@media (max-width: 420px) {
  .footer-brands.d-flex.align-items-center.flex-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .footer-legal.text-md-end>nav>ul {
    flex-direction: column;
    display: flex;
    gap: 10px;
  }

  .menu-footer>li {
    list-style: none;
    margin: 0px !important;
  }

  .amenidad-icono {
    height: 26px;
  }
}

/*================================================================================================
================================================================================================*/
@media (max-width: 400px) {}

/*================================================================================================
================================================================================================*/
@media (max-width: 380px) {}

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

  .brand-label {
    font-size: 18px;
  }

  .brand-logo {
    height: 25px;
  }

}

/*================================================================================================
================================================================================================*/
@media (max-width: 340px) {
  .topbar-social img {
    width: 20px;
    height: 20px;
  }

  .topbar-links>a,
  .topbar-location {
    font-size: 15px;
  }
}

/*================================================================================================
================================================================================================*/
@media (max-width: 320px) {}