@charset "utf-8";
/* CSS Document */

/* Panel Inicio de opciones */
.sec-inicio{
	position:relative; width:100%; height: auto; margin: 0px; padding:0%; z-index:350;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}
.inicio-content{
	position: relative; width: 100%; height: auto; 
}
.inicio-content h1{
	text-align: center; margin-top: 0px; 
}
.inicio-content h2{
	font-size: 20px; margin-bottom: 40px; 
}
.inicio-100{
	float:left; position: relative; width: 100%; height: auto; overflow-x: hidden; 
    }
.inicio-pnls{ /*3 elementos*/
	float:left; position: relative; width: calc(100% - 60px); /*height: auto;*/ padding: 30px;
	
	max-height: 468px; /* **AJUSTA ESTE VALOR** si tu altura de panel cambia */
    overflow: hidden;
    transition: max-height 0.6s ease-in-out; 
	
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: start;
	-ms-justify-content: start;
	justify-content: start;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	
	-moz-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
	
	gap:20px
    
    }

.inicio-pnls.expanded {
    max-height: 1106px; /* Un valor grande para mostrar ambas filas */
    overflow: visible; 
}

.inicio-pnl{
	/*width: calc(25% - 17px);*/ border:1px solid rgb(41,41,41); height: 478px; overflow: hidden; text-align: center; /*padding: 1%; *//*cursor: pointer;*/
	
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	/*-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;*/
	
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	
	-moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
	
	gap: 30px;
	
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px; 
	
	flex: 1 1 20%; /* Here's a change to handle the 4 panels per row */
  transition: flex 0.5s ease-in-out;
	box-sizing: border-box; /* Ensures padding and borders are included in the element's total width and height */

}
/* Cuando se hace hover sobre el contenedor */
.inicio-pnls:hover .inicio-pnl {
  flex: 1 1 20%; /* Los paneles se achican */
}

/* El panel que recibe hover directo se agranda */
.inicio-pnls:hover .inicio-pnl:hover {
  flex: 1 1 30%; /* Se ensancha un 30% más */
  background-color: #FFF;
}

.pnl1{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../../include/img/pnls/01.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pnl2{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../../include/img/pnls/02.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pnl3{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url("../../include/img/pnls/03.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pnl4{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../../include/img/pnls/04.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pnl5{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../../include/img/pnls/05.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pnl6{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../../include/img/pnls/06.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pnl7{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../../include/img/pnls/07.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pnl8{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../../include/img/pnls/08.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.pnl1:hover{
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("../../include/img/pnls/01.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
.pnl2:hover{
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("../../include/img/pnls/02.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
.pnl3:hover{
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("../../include/img/pnls/03.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
.pnl4:hover{
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("../../include/img/pnls/04.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
.pnl5:hover{
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("../../include/img/pnls/05.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
.pnl6:hover{
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("../../include/img/pnls/06.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
.pnl7:hover{
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("../../include/img/pnls/07.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
.pnl8:hover{
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("../../include/img/pnls/08.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.pnl-ttl{
	width: 60%; padding-left: 20%; padding-right: 20%; 
	font-weight: bold;
	font-style: normal;
	font-size: 30px;
} 
.pnl-btn{
  	width: 200px; height: 50px; line-height: 50px; text-align: center; color: rgb(255,255,255); background-color: transparent; border: 2px solid rgb(255,255,255); cursor: pointer; max-width: 100%; 
	
	-webkit-border-radius:27px;
	-moz-border-radius:27px;
	border-radius:27px;
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pnl-btn:hover{
	color: rgb(255,255,255); background-color: rgb(24,50,157); border: 2px solid rgb(24,50,157);
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
}
/* Estilo para el botón de expandir/colapsar */
/*.pnls-btn{
  	position: relative; width: 260px; height: 60px; line-height: 60px; text-align: center; color: rgb(255,255,255); background-color: rgb(24,50,157); border: none; cursor: pointer; max-width: 100%; 
	
	-webkit-border-radius:27px;
	-moz-border-radius:27px;
	border-radius:27px;
	
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pnls-btn:hover{
	color: rgb(41,41,41); background-color: rgb(255,255,255); 
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
}*/
/* Estilos Base del Icono */
.icono-toggle {
    /* Esto garantiza un giro suave */
    transition: transform 0.3s ease; 
    /* Posición inicial (la flecha mira hacia abajo) */
    transform: rotate(0deg); 
}

/* Estado Expandido: Cuando el contenedor del botón (pnls-btn) no tiene la clase 'closed' */
.pnls-btn:not(.closed) .icono-toggle {
    /* Gira la flecha 180 grados para que apunte hacia arriba */
    transform: rotate(180deg); 
}

/* Si quieres que el icono y el texto estén alineados y espaciados: */
/* CSS para el Botón (pnls-btn) */
.pnls-btn {
    /* Flexbox para alinear el texto y el icono en el centro */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /*cursor: pointer;*/ /* Indica al usuario que es clicable */
    /*padding: 10px 20px;*/
    /*background-color: #f0f0f0;*/ /* Color de fondo de ejemplo */
    /*border: 1px solid #ccc;*/
    /*font-weight: bold;*/
	
	width: 260px; height: 60px; line-height: 60px; text-align: center; color: rgb(255,255,255); background-color: rgb(24,50,157); border: none; cursor: pointer; max-width: 100%; 
	
	-webkit-border-radius:27px;
	-moz-border-radius:27px;
	border-radius:27px;
}

/* Estilos Base para el Icono de Toggle */
.icono-toggle {
    font-size: 24px; /* Tamaño adecuado para un botón */
    margin-left: 8px; /* Espacio entre el texto y el icono */
    color: inherit; /* Hereda el color del texto */

    /* Prepara el icono para la rotación */
    transition: transform 0.3s ease; /* Giro suave */
    transform: rotate(0deg); /* Posición inicial: mirando hacia abajo */
}

/* ESTADO DESPLEGADO: Rota el icono cuando el BOTÓN NO tiene la clase 'closed' */
.pnls-btn:not(.closed) .icono-toggle {
    transform: rotate(180deg); /* Gira la flecha 180 grados (mirando hacia arriba) */
}


.sec-mensaje{
	position:relative; width:100%; height: auto; margin: 0px; padding:0%; z-index:350;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}
.mensaje-content{
	position: relative; width: 1200px; max-width: 90%; margin: 5%;
	text-align: center; font-size: 60px; 
}

.mensaje-txt span {
  color: gray;
  transition: color 0.2s ease;
}

.mensaje-txt span.encendido {
  color: white;
}

.sec-vision{
	position:relative; width:100%; height: auto; margin: 0px; padding:0%; z-index:350;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}
.vision-content{
	position: relative; width: 1200px; max-width: 90%; margin: 5%;
	text-align: center; 
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	/*-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;*/
	
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	
	-moz-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
}

.vision-col1 {
  width: 46%;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
  position: relative;
	
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.vision-col2{
	width: 44%; padding: 5%;
	
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	/*-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;*/
	
	-webkit-justify-content: start;
	-ms-justify-content: start;
	justify-content: start;
	
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	
	-moz-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
	
	/*gap:30px;*/
}
.vision-col2 h1{
	text-align: left;
}

.vision-col2 p{
	text-align: left; color: grey; font-size: 20px; 
}

.vis-pnls{
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;

}

.vis-pnl{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.3);
  transition: opacity 3s ease, transform 3s ease;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  z-index: 0;
  pointer-events: none;

}

.vis-pnl.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  pointer-events: auto;

}


/* Paneles con imágenes */
.vis-pnl1 {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url("../../include/img/vision/01.jpg");
}
.vis-pnl2 {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url("../../include/img/vision/02.jpg");
}
.vis-pnl3 {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url("../../include/img/vision/03.jpg");
}

/* Botones */
.vis-btn {
  position: absolute; display: none; /* no los quiero */
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
  z-index: 10;
}
.prev { left: 10px; }
.next { right: 10px; }

.sec-flota{
	position:relative; width:90%; height: auto; margin: 0px; z-index:350; padding: 5%;
	
	/*background-image: radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1)), url("../../include/img/flota/flota.jpg");
    background-position: center;
    background-attachment: contain;
	background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;*/
	
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.9) 100%), url("../../include/img/flota/flota.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}
.flota-content{
	position: relative; width: 800px; max-width: 90%; margin: 10% 5% 10% 5%; /*border:1px solid grey;*/ padding: 40px; text-align: center; background-color: rgba(41,41,41,0.5);
	
	backdrop-filter: blur(10px); /* efecto borroso */
    -webkit-backdrop-filter: blur(10px); /* soporte para Safari */
	
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}

.flota-content h2{
	font-size: 60px;
}
.flota-content p{
	font-size: 20px; color:grey; margin-top: 20px; margin-bottom: 0px;
}

.sec-forma{
	position:relative; width:100%; height: auto; margin: 0px; padding:0%; z-index:350;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}
.forma-content{
	position: relative; width: 1200px; max-width: 90%; margin: 5%;
	text-align: center; 
}
.items-forma{
	position: relative; width: 100%;
	
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-moz-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
	
	gap: 5%;
}
.item-forma{
	position: relative; width: calc(30% - 40px); border-top: 2px solid rgb(24,50,157); padding: 20px;
	
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	-moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
	
	/*gap:30px;*/
}
.item-forma h2{
	color: white;
}
.item-forma p{
	color: grey;
}

.sec-contacto{
	position:relative; width:100%; height: auto; margin: 0px; padding:0%; z-index:350;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}
.contacto-content{
	position: relative; width: 1200px; max-width: 90%; margin: 5%;
	text-align: center; 
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	/*-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;*/
	
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	
	-moz-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
	
	gap:30px;
}
.contacto-col1 {
	width: 50%; text-align: left; 

	/*margin: auto;
	overflow: hidden;
	position: relative;*/
	
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	
	-moz-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
	align-items: flex-start;
	
	/*gap:10px;*/

}
.contacto-col2{
	width: 50%; text-align: left;
	margin: auto;
	overflow: hidden;
	position: relative;
	
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	/*-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;*/
	
	-webkit-justify-content: start;
	-ms-justify-content: start;
	justify-content: start;
	
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	
	-moz-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
	
	gap:30px;
}
.contacto-col1 h1{
	
}
.contacto-col1 h2{
	
}
.contacto-col1 p{
	color:grey;
}
.items-contacto{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: start;
	-ms-justify-content: start;
	justify-content: start;
	
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	
	-moz-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
	
	gap:10px;
}
.item-contacto {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    
    padding: 10px 20px;
    
    border: 2px solid white;
    color: white;
    font-size: 14px;
    cursor: pointer;
    
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;

    /*background: none !important;*/
    background-repeat: no-repeat; 
    background-position: left center;
    background-size: 20px 20px;
}

.item-contacto::before {
    content: ""; 
    width: 20px;
    height: 20px;
    margin-right: 8px; 
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
	filter: invert(100%) brightness(200%); 
}
.whatsapp::before {
    background-image: url("../../include/img/ico-whatsapp.png");
}
.facebook::before {
    background-image: url("../../include/img/ico-facebook.png");
}
.instagram::before {
    background-image: url("../../include/img/ico-instagram.png");
}
.linkedin::before {
    background-image: url("../../include/img/ico-linkedin.png");
}

.item-contacto:hover {
    background-color: rgb(24, 50, 157);
    border: 2px solid rgb(24, 50, 157);
}


/* Mostrar solo un panel en pantallas chicas */
@media (max-width: 999px) {
	
  .inicio-pnl {
    display: none;
    flex: 1 1 100%;
  }

  .inicio-pnl.activo {
    display: flex;
  }

  .panel-nav {
    display: flex; width: 100%; position: absolute; height: 100%;  top:0px; lef:0px; 
    justify-content: space-between;
    flex-wrap: wrap;
    /*gap: 10px;*/
    /*margin-top: 20px;*/
	  
	  -webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
  }

  .panel-nav div {
    /*padding: 10px 15px;*/
    font-size: 30px;
    /*border-radius: 8px;
    border: 1px solid #333;*/
    width: 25px; height: 100%; color: rgba(255,255,255,0.5); user-select: none;
    cursor: pointer; 
	  
	  display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	  
	  -webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
  }

  .panel-nav div:hover {
    color: rgba(255,255,255,1);
  }
	.vision-content {
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.vision-col1 {
  		width: 100%; max-width: 100%; overflow: hidden;
		-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	}
	.vision-col2{
		width: 90%; max-width: 100%; padding: 5%; 
		gap:0px;
	}
	.vision-col1 h1{
		text-align: center;
	}
	.vis-pnls{
		overflow: hidden;
		-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	}
	.mensaje-content{
		font-size: 40px; 
	}
	.flota-content h2{
	font-size: 30px; 
}
.flota-content p{
	font-size: 30px; /*color:grey;*/
}
	
	
	.items-forma{
		position: relative; width: 100%;
	
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	-moz-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
	
	gap: 5%;
}
.item-forma{
	position: relative; width: calc(100% - 40px); border-top: 2px solid rgb(24,50,157); padding: 20px;
	}
	
	.contacto-content{

	
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	
	gap:30px;
}
	
	.contacto-col1 {
		width: 100%;
	}
	.contacto-col2 {
		width: 100%;
	}

}

/* En pantallas grandes, mostrar todos los paneles y ocultar los botones */
@media (min-width: 1000px) {
  .panel-nav {
    display: none;
  }

  .inicio-pnl {
    display: flex;
  }
}
