/* ------------------ Estilos Globales (Todos los HTMLs) ------------------ */

/*-----------------ESTILOS NUEVOS AGREGADOS POR DAVID-----------------------*/
/* PORQUE TRABAJAR CON NOSOTROS (FORTUNAS) PARA ENTREGA FINAL*/
/* PORQUE TRABAJAR CON NOSOTROS (FORTUNAS) PARA ENTREGA FINAL*/

.seccion-nosotros {
  width: 100%;
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('NOSOTROSporque.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.contenido-nosotros {
  display: flex;
  width: 80%;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.columna-izquierda {
  flex: 1;
  color: white;
}

.titulo-nosotros {
  font-size: 32px;
  color: rgb(253, 122, 0);
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.2REM;
}

.texto-nosotros {
  font-size: 18px;
  text-align: justify;
  color: white;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.3REM;
}

.columna-derecha {
  flex: 1;
  display: flex;
  justify-content: center;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
/* LOS 4 CUADROS */
.valor {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  margin-left: 80PX;
  transition: transform 0.3s ease;
}

.valor:hover {
  transform: scale(1.2); /* AUMENTA EL ZOOM */
}

.valor h3 {
  color: #f47c00;
  font-size: 20px;
  margin-bottom: 10px;
}

.valor p {
  color: white;
  font-size: 16px;
  line-height: 1.4;
}

/* TERMINA ESTILOS ¿PORQUE ...? */

/* INICIA LA PARTE DE Logistica */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

.logistica-header {
  text-align: center;
  background-color: #000;
  padding: 60px 5vw 30px 5vw;
  margin-top: 60px;
}

.logistica-contenedor {
  padding: 0;
}

.titulo {
  font-size: 3em;
  margin: 0;
}

.titulo .blanco {
  color: #fff;
}

.titulo .naranja {
  color: #ff7f00;
}

.descripcion {
  font-size: 1.2em;
  color: #fff;
  margin: 10px 0;
}

.cinta-negra {
  width: 100px;
  height: 5px;
  background-color: black;
  margin: 0 auto;
  border-radius: 2px;
}

.logistica-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 96vw;

  margin: 0 auto;
  padding: 40px 0;
  box-sizing: border-box;
  margin-bottom: 80px;
}


/* Cada tarjeta */
.flip-card {
  width: 100%;
  height: 30vh;
  margin: 0 auto;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Parte frontal con título e imagen */
.flip-front {
  display: flex;
  flex-direction: column;
}

.flip-front h3 {
  margin: 0;
  padding: 12px;
  background-color: #222;
  color: white;
  font-size: 1.2em;
  text-align: center;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-front img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

/* Parte trasera */
.flip-back {
  background-color: #1e1e1e;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  padding: 25px;
  text-align: center;
}

/* TERMINA LOGIST*/
/*-------------------------------- TODOS LOS ESTILOS AGREGADOD POR DAVID para la entrega final------------------------*/
/*-------------------------------- TODOS LOS ESTILOS AGREGADOD POR DAVID------------------------*/


/* Botón hamburguesa */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  color: #f4a500;
  display: none; /* Solo visible en móviles */
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 10px;
  transition: background 0.3s;
}

.menu a:hover {
  background-color: #003399;
  border-radius: 4px;
}

/* Logo */

.logo img {
    height: 50px;
}

/* Html - Body */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #111; 
  color: #eee;
  padding: 40px 20px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.footer-contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 1500px;
  margin: auto;
}

.footer-col {
  flex: 1 1 22%;
  min-width: 250px;
}

.footer-col h3 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 20px;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 6px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-nombre {
  font-family: 'Georgia', serif;
  font-size: 24px;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid #444;
  font-size: 15px;
  color: #aaa;
}

/* ------------------ Fin Estilos Globales (Todos los HTMLs) ------------------ */

/* ------------------ Estilos para celulares ------------------ */

@media (max-width: 768px) {
  /* Botón hamburguesa visible en móviles */
  .menu-toggle {
    display: block;
  }

  /* Menú en columna */
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #111;
    padding: 10px 0;
    text-align: left;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 10px 20px;
    color: white;
    border-bottom: 1px solid #333;
    width: 100%;
  }

  /* Banner adaptado */
  .banner {
    flex-direction: column;
    text-align: center;
  }

  /* Contenido ajustado */
  .contenido {
    max-width: 90%;
    width: 100%;
    margin: 20px;
    border-radius: 10px;
    padding: 20px;
    position: static;
  }


  /* Pie de página y contenedores flexibles */
  .pie-contenido,
  .contacto-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Imagen y texto adaptables */
  .texto,
  .imagen {
    min-width: auto;
    width: 100%;
  }

  .imagen img {
    max-width: 90%;
    height: auto;
  }

  /* Botón WhatsApp más pequeño */
  .whatsapp {
    width: 50px;
    height: 50px;
    bottom: 110px;
    right: 10px;
  }

  /* Fondos ajustados */
  .fondoinicio,
  .fondonosotros,
  .fondoservicio,
  .fondocontactanos,
  .fondo {
    background-position: top;
    height: auto;
    min-height: 60vh;
  }

/* Estilo Nosotros Moviles */

    .container-central {
        flex-direction: column;
        padding: 20px;
    }

    .imagen-lado img {
        max-width: 100%;
    }

    .contenido-lado {
        text-align: center;
    }

    .tabs {
        justify-content: center;
    }

    .grid-valores {
        grid-template-columns: 1fr;
    }
  /* Estilo Nuestra Flota Moviles */  
  .galeria-completa {
    flex-direction: column;
    align-items: center;
  }

  .miniaturas-columna {
    flex-direction: row;
    gap: 10px;
  }

  .miniaturas-columna img {
    width: 100px;
    height: 60px;
  }

 /* Estilo Servicios Moviles */   
  .contenedor-tarjetas-servicios {
    flex-direction: column;
    align-items: center;
  }

  .tarjeta-servicio-logistica {
    width: 90%;
  }

  .titulo-general-servicios {
    font-size: 20px;
  }

  .subtitulo-servicios span {
    font-size: 18px;
  }

/* Estilo Footer Moviles */

  .footer {
    text-align: center;
  }


/* Estilo Logistica */
.logistica-section {
    grid-template-columns: 1fr;
  }

  .flip-card {
    height: 220px;
  }

/* Contenido nosotros*/
.contenido-nosotros {
    flex-direction: column;
    text-align: center;
  }

  .valores-grid {
    grid-template-columns: 1fr;
  }

  .valor {
    margin-left: 0;
    width: 90%;
    max-width: 350px;
    height: auto;
  }

  .flip-card {
    height: 220px;
  }

  .seccion-nosotros {
    padding: 20px;
    height: auto;
  }

  .texto-nosotros {
    font-size: 1rem;
    max-width: 90%;
  }


}
/* ------------------ Fin Estilos para celulares ------------------ */

/* ------------------ Estilos para PC / Laptops ------------------ */

/* ================== Estilo HTML Inicio ================== */

.texto-descripcion h2,
.texto-descripcion p {
color: white;
}

/*-------------------- Boton Servicios -------------*/
.banner.cuadro .botonSV {
display: inline-block;
background-color: #ff7c00;
color: white;
padding: 12px 20px;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
margin-top: 20px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease, transform 0.2s ease;
}

/*--------- Boton Deslizar Cursor----------*/
.banner.cuadro .botonSV:hover {
background-color: #cc6400;
transform: scale(1.05);
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* brillo blanco */
}

/*-------- Imagen Transportes -------------*/
.animada {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}
.animada.visible {
  opacity: 1;
  transform: translateY(0);
}

/*---------Puntos Cambiar de Imagen-------------*/
.indicadores {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.punto {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.punto.activo {
  background-color: #ff7c00;
}

/*-------------------Fin Estilos Pagina Somos ---------------*/

/*--------------Inicio Estilos Pagina ¿Porque?-------------------*/

.seccion-beneficios h2,
.seccion-beneficios {
  margin-top: 80px;
  text-align: center;
  color: black;
}
.subtitulo {
  text-align: center;
  color: black;
}

.seccion-beneficios h2 span {
  color: #f47c00;
}

/*-------Alineacion de Tarjetas---------*/
.contenedor-beneficios {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 30px;
justify-content: center;
}

.tarjeta-beneficio {
text-align: center;
background-color: #f47c00;
color: white;
width: 250px;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

/*--------- Tarjeta Deslizar Cursor----------*/
.tarjeta-beneficio:hover {
transform: scale(1.05);
}
.tarjeta-beneficio h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.tarjeta-beneficio p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 768px) {
.contenedor-beneficios {
    flex-direction: column;
    align-items: center;
}

.tarjeta-beneficio {
    width: 80%;
}
  
}

/*--------------Fin Estilos Pagina ¿Porque?-------------------*/

/* ================== Fin Estilo HTML Inicio ================== */

/* 2 pie de pagina*/
.pie-contacto {
  background-color: #3b3b3b;
  color: white;
  padding: 40px 20px;
}

.pie-contenido {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.pie-col {
  flex: 1 1 200px;
}

.pie-col h4 {
  margin-bottom: 15px;
  color: #ff9900;
}

.pie-col ul {
  list-style: none;
  padding: 0;
}

.pie-col ul li {
  margin-bottom: 8px;
}

.logo-footer {
  max-width: 160px;
  margin-bottom: 10px;
}

/* Contacto Nuevo estilo */
.contacto-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.contacto-texto {
  max-width: 500px;
  flex: 1;
}

.contacto-texto h1 {
  margin-bottom: 15px;
}

.contacto-texto p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contacto-info p {
  margin: 5px 0;
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  max-width: 400px;
  width: 100%;
}

.formulario-contacto input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.formulario-contacto button {
  padding: 12px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.formulario-contacto button:hover {
  background-color: #1ebc58;
}

/*Whatsapp Boton*/
.whatsapp {
  position: fixed;
  bottom: 160px; /* más alto que el chat bot */
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.whatsapp img:hover {
  transform: scale(1.1);
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-bar {
    background-color: #ddd;
    padding: 5px;
    font-size: 14px;
    color: #f47c00;
    font-style: italic;
    position: sticky;
    top: 0;
    z-index: 1100;
}

/* Contenedor principal; */
.contenedor {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Header con Flexbox */
.header {
  background-color: #000080;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 32px;
  z-index: 1000;
}

.text-shadow {
    text-shadow: 2px 2px 6px #000;
}


.contenido {
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    max-width: 100%;
    width: 100%;
    width: 100%;
    margin-left: 40px;
    padding: 5px 50px;
    border-radius: 0 10px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
    position: absolute;
    top: 320px;
    left: 40px;
}


.contenido h1 {
    font-size: 2.2em;
    margin: 0 0 30px 0;
    text-align: left;
}

.contenido p {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: left;
}

.btn-servicio {
    background: #ffa600;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: bold;
    align-self: flex-start;
    box-shadow: 2px 2px 6px #000;
    transition: background 0.3s;
}
.btn-servicio:hover {
    background: #1e4d09;
}

.flota-vehiculos img {
    width: 100%;
    height: auto;
    display: block;
}

/* Style Descripción Empresa Index*/

.cuadro {
background-color: #163B7C;
border-radius: 15px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
margin-top: 40px; 
}

.banner {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.texto {
flex: 1;
min-width: auto;
}

.texto h2 {
font-size: 28px;
line-height: 1.4;
font-weight: 600;
margin-bottom: 30px;
text-shadow: 1px 1px 4px rgb(255, 255, 255);
}

.boton {
background-color: #f47c00;
color: white;
padding: 12px 24px;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
transition: background-color 0.3s ease, transform 0.2s ease;
display: inline-block;
}

.boton:hover {
background-color: #cc6400;
transform: scale(1.05);
}

.imagen {
flex: 1;
min-width: auto;
display: flex;
justify-content: center;
}

.imagen img {
width: 100%;
max-width: 600px;
border-radius: 15px;
box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.texto h2 {
font-size: 22px;
}

.contenido {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    max-width: 600px;
    padding: 40px;
    border-radius: 0 15px 15px 0;
    margin-left: 40px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}
.contenido h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.contenido p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}
.btn-servicio {
    background: #ffa600;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn-servicio:hover {
    background: #1e4d09;
}

/* ======= NUEVO ENCABEZADO ======= */

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Fondo Inicio */

.fondoinicio {
background-image: url('InicioDeWeb.jpg');
background-size: cover;
background-position: center;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
}

/* Fondo nosotrosimagen */

.fondonosotros {
background-image: url('nosotrosimagen.jpg');
background-size: cover;
background-position: center;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
}

/* Fondo fondoservicio */
.fondoservicio {
    background-image: url('camion_servicio.jpg');
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Fondo Flota */
.fondo {
    background-image: url('flota1.jpg');
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
}

.fondocontactanos {
background-image: url('contactanos.jpg');
background-size: cover;
background-position: center;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: flex-start;
}

/* ================== Estilo HTML Contacto ================== */

/* Contacto Nuevo estilo con fondo */

.contacto-fondo {
  position: relative;
  background-image: url('contactanos.jpg');
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  color: white;
  z-index: 1;
}

.contacto-fondo::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.contacto-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.contacto-texto {
  flex: 1 1 50%;
  padding: 40px;
}

.contacto-texto h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contacto-texto p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contacto-info p {
  margin: 10px 0;
}

.formulario-contacto {
  flex: 1 1 50%;
  padding: 40px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.formulario-contacto input,
.formulario-contacto button {
  margin-bottom: 15px;
  padding: 14px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
}

.formulario-contacto input {
  background-color: #f0f0f0;
}

.formulario-contacto button {
  background-color: #013a16;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.formulario-contacto button:hover {
  background-color: #018b34;
}

@media (max-width: 768px) {
  .contacto-container {
    flex-direction: column;
  }

  .contacto-texto,
  .formulario-contacto {
    flex: 1 1 100%;
  }
}
/*Fonfo contacto*/
.contacto-fondo {
  position: relative;
  background-image: url('contactanos.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: white;
  z-index: 1;
}

.contacto-fondo::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.contacto-container {
  position: relative;
  z-index: 1;
}
/* ================== Fin Estilo HTML Contacto ================== */

/* ================== Estilo HTML Nosotros ================== */

/* ESTILOS NOSOTROS MISION VISION */

/*  CONTENEDOR FLEX CENTRAL  */
.container-central {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 30px;
    box-sizing: border-box;
    flex-wrap: wrap;
    background-color: #fff;
    margin-bottom: 30px;
}

.container-central.valores {
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
}

/*  IMÁGENES  */
.imagen-lado img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
}

/*  TEXTOS  */
.contenido-lado {
    max-width: 600px;
}

.contenido-lado h1 {
    font-size: 28px;
    margin: 10px 0;
    color: #222;
}

.contenido-lado h5 {
    font-size: 14px;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 5px;
}

.intro {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
}

/*  PESTAÑAS  */
.tabs {
    display: flex;
    border-bottom: 2px solid #ccc;
    margin-bottom: 15px;
}

.tab {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #444444;
    transition: background 0.3s, color 0.3s;
}

.tab:hover {
    background-color: #dce6f7;
    color: #000;
}

.tab.active {
    background-color: #fd9533;
    color: #fff;
    border-radius: 5px 5px 0 0;
}

/*  SECCIONES DE CONTENIDO  */
.contenido-texto .seccion {
    display: none;
}

.contenido-texto .seccion.visible {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/*  LISTA DE VALORES  */
.grid-valores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin-top: 25px;
}

.valor-item {
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

.valor-item .icono {
    background-color: #ad000000;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 14px;
    margin-right: 10px;
}


/* ================== Fin Estilo HTML Nosotros ================== */
/* ================== Estilo HTML Nuestra Flota ================== */

/* MINIATURAS EN COLUMNA */
.miniaturas-columna {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.miniaturas-columna img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.miniaturas-columna img.activa {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid #ec9027;
}

/* CONTENEDOR PRINCIPAL */
.galeria-completa {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto;
  flex-wrap: wrap;
}

/* IMAGEN GRANDE */
.imagen-grande img {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
  object-fit: contain;
}

/* ENCABEZADO CON FONDO */
.fondo-flota-servicios {
  background-image: url('serviciosimagen1.jpg'); /* reemplaza con tu imagen */
  background-size: cover;
  background-position: center;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FLOTA VEHICULOS */
.flota-vehiculos img {
    width: 100%;
    height: auto;
    display: block;
}

/* Fondo Flota */
.fondo {
    background-image: url('flota1.jpg');
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* BANNER PRINCIPAL */
.banner-flota {
    position: relative;
    width: 100%;
    height: auto;
}
.banner-flota img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* SECCIÓN DETALLE DE FLOTAS */
.container-central.flota-detalle {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 30px;
    background-color: #fff;
    flex-wrap: wrap;
}

/* TEXTO INFORMATIVO ABAJO */
.texto-flota {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  font-size: 17px;
  color: #444;
  line-height: 1.7;
}

/* FONDO FLOTA */
.fondo-flota {
  background-image: url('nuestraflota1.jpg'); /* reemplaza con tu imagen */
  background-size: cover;
  background-position: center;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ================== Fin HTML Nuestra Flota ================== */
/* ================== Estilo HTML Servicios ================== */


/* ======= ESTILOS GENERALES PARA SECCIÓN DE SERVICIOS LOGÍSTICOS ======= */

/* ======= BANNER PRINCIPAL DE LA SECCIÓN ======= */

.servicios-banner-logistica {
  text-align: center;
  padding: 50px 20px 20px;
  background-color: #e9e9e9;
}

.titulo-general-servicios {
  margin: 0;
  font-size: 24px;
  color: #444;
}

.subtitulo-servicios span {
  color: #ff6600;
  font-size: 22px;
  font-weight: bold;
}

/* ======= CONTENEDOR DE TARJETAS ======= */
.contenedor-tarjetas-servicios {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 30px;
  background-color: transparent;
}

/* ======= CONTENIDO BANNER ======= */

.contenido-banner {
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  border-radius: 10px;
}

.contenido-banner h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.contenido-banner p {
  margin-top: 10px;
  font-size: 18px;
}

.contenido-banner i {
  margin-right: 5px;
}

/* ======= TARJETA INDIVIDUAL DE SERVICIO ======= */
.tarjeta-servicio-logistica {
  background: #fff;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tarjeta-servicio-logistica:hover {
  transform: translateY(-5px);
}

/* Imagen de la tarjeta */
.imagen-servicio-logistica {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Contenido textual de la tarjeta */
.contenido-tarjeta-servicio {
  padding: 20px;
}

/* Etiqueta naranja de "SERVICIO" */
.etiqueta-servicio-logistica {
  background-color: #ff6600;
  color: rgb(0, 0, 0);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Título del servicio */
.titulo-servicio-logistica {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
}

/* Descripción del servicio */
.descripcion-servicio-logistica {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.banner-logistico-vertical {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f3f3;
  padding: 20px;
}

.contenedor-logistico-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #fff;
  padding: 30px 60px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 1000px;
  width: 100%;
}

.icono-logistico {
  font-size: 60px;
  color: #ff6600;
}

.texto-logistico-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 22px;
  font-weight: bold;
  color: #333;
  text-align: center;
  max-height: 80vh;
}

.boton-contactanos {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.boton-contactanos:hover {
  background-color: #e65c00;
}


/* ================== Fin Estilo HTML Servicios ================== */


/* ------------------ Fin Estilos para PC / Laptops ------------------ */


/* ======================= */
/* Estilos Carrusel Cliente INICIO PARTE JESUS */
/* ======================= */

.cliente-carrusel-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff;
  
}

.cliente-carrusel-title {
  font-size: 2em;
  font-weight: bold;
  color: #222;
}

.cliente-carrusel-title span {
  color: orange;
}

.cliente-carrusel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
}

.cliente-carrusel-track {
  display: flex;
  gap: 50px;
  animation: cliente-carrusel-mover 10s linear infinite;
}

.cliente-carrusel-track img {
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}
.cliente-carrusel-section {
  margin-top: 60px; /* puedes ajustar a 40px, 80px, etc. */
}

/* Animación única */
@keyframes cliente-carrusel-mover {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================= */
/* Estilos Carrusel Cliente INICIO PARTE JESUS FIN */
/* ======================= */