@charset "utf-8";
/* CSS Document */
*
{
	padding:0;
	margin:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*fuentes google*/
/*font-family: 'Cabin', sans-serif;
font-family: 'Poppins', sans-serif;*/
/*fuentes*/
body
{
	background-color: #F5F5F5;-
	font-family: 'Cabin', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
h1
{
	font-family: 'Poppins', sans-serif;
	 letter-spacing: -2px;
}
h2, h3, p
{
	font-family: 'Cabin', sans-serif;
}
#content
{
	width:100%;
	max-width:1100px;
	/*background-color:rgba(113, 128, 138, 0.06);*/ 
	margin:0 auto;
	margin:10px auto;
	width:90%;
}

/*****menu nav****/
.menu_bar {
	display:none;
}
 
header {
	width: 100%;
}
 
header nav {
	background-color:rgba(245, 245, 245, 0.95);
    border-top: 3px solid #D3B36C;
    margin: 0 auto;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
 
header nav ul {
   list-style: outside none none;
    margin: 0 auto;
    max-width: 1300px;
    padding: 8px 3%;
    text-align: right;
    width: 100%;
}
 
header nav ul li {
	 border-right: 1px solid rgba(211, 179, 108, 0.56);
    display: inline-block;
    list-style: outside none none;
    margin: 2px 0 0 -4px;
    position: relative;
}
.last
{
	border:none;
}
header nav ul li:hover {
	background:#D4B36B;
}
 
header nav ul li a {
	
    color: rgb(59, 60, 60);
    display: block;
    font-family: "Poppins",sans-serif;
    font-size: 0.7em;
    font-weight: bold;
    padding: 6px 9px;
    text-decoration: none;
}
header nav ul li.last 
{
	border:none;
}
header nav ul li a span {
	margin-right:10px;
}
 
header nav ul li:hover .children {
	display:block;
}
 
header nav ul li .children {
	display: none;
	background:#011826;
	position: absolute;
	width: 150%;
	z-index:1000;
}
 
header nav ul li .children li {
	display:block;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,.5);
}
 
header nav ul li .children li a {
	display: block;
}
 
header nav ul li .children li a span {
	float: right;
	position: relative;
	top:3px;
	margin-right:0;
	margin-left:10px;
}
 
header nav ul li .caret {
	position: relative;
	top:3px;
	margin-left:10px;
	margin-right:0px;
}

/*FORM RASTREO*/

.container_color{
    margin: 6vh 0;
    flex: 1;
}

.container_rastreo {
    display: flex;
    padding: 25px 0px;
    margin: 0px 20%;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

}

.container_rastreo h1{
    font-size: 2.0em;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.container_rastreo hr{
    width: 100%;
    border: 0;
    height: 3px;
    background: #D3B36C;
    margin: 25px 0;
}

.container_rastreo p{
    color: #ff0000;
    margin: 0 15px;
    text-align: center;
}

.container_rastreo form{
    display: flex;
    margin: 15px;
    gap: 10px;
}

.container_rastreo input{
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.container_rastreo input:focus {
    border-color: #D3B36C;
    box-shadow: 0 0 5px #D3B36C;
    outline: none;
}

.container_rastreo button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #D3B36C;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.container_rastreo button:hover {
    background: #8d7748;
}

.container_rastreo img{
    width: 185px;
}

/*FIN CONTAINER RASTREO*/

/*BOTON FLOTANTE DE WHATSAPP*/

#whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

#whatsapp-button:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

#whatsapp-button .fa-whatsapp {
  font-size: 32px;
  color: white;
}
/*FIN BOTON FLOTANTE DE WHATSAPP*/
#content-footer {
    display: flex;
    flex-direction: row; /* fila en escritorio */
    justify-content: space-around;
    align-items: center;
    gap: 10px; /* espacio entre elementos */
}

@media screen and (max-width: 800px) {
	body {
		padding-top:80px;
	}
    
    /*FORM RASTREO*/

.container_color{
    margin: 1.5vh 0;
    flex: 1;
}

.container_rastreo {
    display: flex;
    margin: 0px 0px;
    padding: 25px 0px;
    border-radius: 0px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

}

.container_rastreo h1{
    font-size: 1.5em;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.container_rastreo hr{
    width: 100%;
    border: 0;
    height: 3px;
    background: #D3B36C;
    margin: 25px 0;
}

.container_rastreo p{
    color: #ff0000;
    margin: 0 15px;
    text-align: center;
}

.container_rastreo form{
    display: flex;
    margin: 15px;
    flex-direction: column;
}

.container_rastreo input{
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.container_rastreo input:focus {
    border-color: #D3B36C;
    box-shadow: 0 0 5px #D3B36C;
    outline: none;
}

.form_rastreo button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #D3B36C;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.container_rastreo button:hover {
    background: #8d7748;
}

.container_rastreo img{
    width: 185px;
}

/*FIN CONTAINER RASTREO*/



	.menu_bar {
		display:block;
		width:100%;
		position: fixed;
		top:0;
		background:#D3B36C;
	}
 
	.menu_bar .bt-menu {
		display: block;
		padding: 12px 20px;
		color: #fff;
		overflow: hidden;
		font-size: 25px;
		font-weight: bold;
		text-decoration: none;
	}
 
	.menu_bar span {
		float: right;
		font-size: 40px;
	}
 
	header nav {
		width: 42%;
		height: calc(100% - 60px);
		position: fixed;
		right:100%;
		margin: -23px 0;
		overflow: scroll;
		background:rgba(215, 215, 215, 0.88) none repeat scroll 0 0;
	}
	
	header nav.open {
	right: 0; /* Cuando se abre el menú */
    }
 
	header nav ul li {
		display: block;
		border-bottom:1px solid rgba(255,255,255,.5);
	}
 
	header nav ul li a {
		display: block;
	}
 
	header nav ul li:hover .children {
		display: none;
	}
 
	header nav ul li .children {
		width: 100%;
		position: relative;
	}
 
	header nav ul li .children li a {
		margin-left:20px;
	}
 
	header nav ul li .caret {
		float: right;
	}
}
/****fin menu nav****/



/****apertura***/
#block-apertura
{
	background-image: url("../img/mula-1.png");
    background-position: right 7% bottom;
    background-repeat: no-repeat;
    background-size: 46% auto;
    margin: 0 auto;
    max-width: 1881px;
    padding-top: 50px;
    width: 100%;
}

#block-apertura .row img {
    display: block;      /* Hace que margin auto funcione */
    margin: 0 auto;      /* Centra horizontalmente */
    width: 50%;          /* Ajusta al 50% del contenedor */
    height: auto;        /* Mantiene proporción */
}
#block-apertura .row
{	width:55%;
}
#block-apertura h1
{
	  color: #3b3c3c;
    font-size: 3em;
    letter-spacing: -2px;
    line-height: 0.8em;
    margin: 26px 0;
    text-transform: uppercase;
}
#block-apertura h3
{
	font-size: 1em;
    font-weight: normal;
    line-height: 1.3em;
    text-align: justify;
}
#block-apertura a, #block-nosotros a
{
    background-color: #D4B36B;
    color: white;
    display: inline-block;
    font-family: "Poppins",sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    margin: 27px 0;
    padding: 2px 6%;
    text-align: center;
    text-transform: uppercase;
	text-decoration:none;
	
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#block-apertura a:hover, #block-nosotros a:hover
{
	background-color:#AFAFB0;
	color:#000;
}
/****fin apertura***/




/****servicios***/
#block-servicios
{
    width: 100%;
	float:left;
	padding-top: 30px;
}
#block-servicios .row-1
{
	display: inline-block;
    margin: 29px auto;
    text-align: center;
    width: 100%;
}
#block-servicios h1
{
	font-size: 3.5em;
	color:#D4B36B;
    text-transform: uppercase;
}
#block-servicios h3
{
	font-size: 1.8em;
    font-weight: normal;
    margin: 17px auto 0;
    width: 77%;
}
#block-servicios .row-2, #block-servicios .row-3
{
    float: left;
    margin: 0.8%;
    width: 48.3%;
}
#block-servicios li
{
    background: #fff none repeat scroll 0 0;
    height: 73px;
    list-style: outside none none;
    margin: 11px 0;
    padding: 15px 5%;
    text-align: left;
    width: 98%;
	
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#block-servicios li:hover
{
		box-shadow: 0 0 8px rgba(59, 60, 60, 0.15);
}
/***fin servicios***/




/***cobertura***/
#block-cobertura
{
	 background-attachment: fixed;
    background-image: url("../img/bg-cobertura.jpg");
    background-position: center top;
    background-size: cover;
	padding-top: 50px;
    float: left;
    height: auto;
    margin: 75px auto;
    padding: 115px 0;
    text-align: center;
    width: 100%;
}
#block-cobertura h1
{
	    color: #fff;
    font-size: 4em;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.78);
}
#block-cobertura h3
{
	color: #fff;
    font-size: 1.5em;
    font-weight: normal;
    margin: 0 auto;
    text-shadow: 0 1px 6px #3b3c3c;
    width: 80%;
}
/***fin cobertura***/




/***vehiculo***/
#block-vehiculos
{
    float: left;
    margin-bottom: 70px;
    width: 100%;
	padding-top: 50px;
}
#block-vehiculos h1
{
	font-size:3.5em;
	color:#3b3c3c;
	margin-bottom:30px;
}
.row-camion
{
	background-color: #fff;
    float: left;
    margin: 0.4%;
    text-align: center;
    width: 24%;
	
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.row-camion:hover
{
	box-shadow: 0 0 18px rgba(59, 60, 60, 0.25);
    background-color: rgb(244, 242, 242);
}
.row-camion:hover .peso-camion
{
	background-color:rgba(212, 179, 107, 0.23);;
}
.row-camion-5 {
    margin-left: 13%;
}
.row-camion-5, .row-camion-6, .row-camion-7
{
	margin-top:30px;
	margin-bottom:25px;
}
.tipo-camion
{
	 background: #D4B36B;
    color: white;
	line-height:1em;;
    margin-bottom: 12px;
	font-size: 1.1em;
    padding: 10px;
    text-align: center;
	font-family: 'Poppins', sans-serif;
	font-weight:bold;
    text-transform: uppercase;
	
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#block-vehiculos img
{
	margin:0 auto 12px;
	height:auto;
	max-width:150px;
}
.peso-camion
{
	background:#f4f2f2;
	padding:10px 5px;
	text-transform:uppercase;
}
.descripcion
{
  border-bottom: 1px solid rgba(204, 204, 204, 0.41);
    height: 60px;
    padding: 8px;
}
.peso
{
	font-size:1em;
}
.peso-respuesta
{
	color: #999;
    font-size: 0.8em;
    margin-top: 4px;
}
/***fin vehiculo***/




/***contacto****/
#block-contactenos
{
	background-image: url("../img/bg-mula-c-3.png");
    background-position: right 9% bottom;
    background-repeat: no-repeat;
    background-size: 50% auto;
    float: left;
	padding-top: 50px;
    padding-bottom: 100px;
    width: 100%;
}
.row-bg-formulario
{
	width:39%;
	float:left;
}
#block-fomulario
{
	    background-color: rgba(232, 232, 232, 0.31);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
    padding: 7% 7% 14px;
	max-width: 420px;
    width: 100%;
}
.row-bg-formulario h1
{
	color: #3b3c3c;
    font-size: 3.5em;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.row-escribanos
{
     border-right: 2px solid windowframe;
    float: left;
    margin-bottom: 25px;
    margin-right: 5%;
    text-transform: uppercase;
    width: 78%;
}

.row-sobre-img {
    float: left;
    margin-top: 9px;
}
.escribanos
{
	font-family: "Poppins",sans-serif;
    font-size: 1.55em;
    font-weight: bold;
    letter-spacing: -1px;
    line-height: 1em;
}
.reponderemos
{
	color: #3b3c3c;
    font-family: "Poppins",sans-serif;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: -1px;
    line-height: 1em;
}


.txt-form {
    border: 1px solid rgba(181, 189, 200, 0.4);
    border-radius: 5px;
    color: slategrey;
    font-size: 1em;
    margin: 5px 0;
    padding: 7px 12px;
    width: 100%;
	
	-webkit-box-shadow: 4px 3px 12px -8px rgba(0, 0, 0, 0.33) inset;
-moz-box-shadow: 4px 3px 12px -8px rgba(0, 0, 0, 0.33) inset);
box-shadow: 4px 3px 12px -8px rgba(0, 0, 0, 0.33) inset;
}
.txt-mensaje
{
	 border: 1px solid rgba(181, 189, 200, 0.4);
    border-radius: 5px;
    color: slategrey;
    font-size: 1em;
    margin: 5px 0;
    padding: 7px 12px;
    width: 100%;
	min-height:200px;
	font-family: "Cabin",sans-serif;
	
		-webkit-box-shadow: 4px 3px 12px -8px rgba(0, 0, 0, 0.33) inset;
-moz-box-shadow: 4px 3px 12px -8px rgba(0, 0, 0, 0.33) inset);
box-shadow: 4px 3px 12px -8px rgba(0, 0, 0, 0.33) inset;
}
.campo-boton-enviar
{
	text-align:center;
	margin:0 auto;
}
.btn-enviar {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b5bdc8+0,828c95+36,28343b+100;Grey+Black+3D */
background: #b5bdc8; /* Old browsers */
background: -moz-linear-gradient(top,  #b5bdc8 0%, #828c95 36%, #28343b 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #b5bdc8 0%,#828c95 36%,#28343b 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #b5bdc8 0%,#828c95 36%,#28343b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5bdc8', endColorstr='#28343b',GradientType=0 ); /* IE6-9 */

    border-radius: 12px;
    box-shadow: 0 0 1px inset;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    margin: 18px auto !important;
    padding: 6px 18px;
    text-align: center;
    text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	cursor:pointer;
}
.btn-enviar:hover
{
	background-color:rgb(212, 179, 107);
}
.row-info-contacto
{
	float: left;
    margin-left: 5%;
    margin-top: 150px;
    width: 40%;
}
.row-info-contacto li
{
	 font-size: 1.1em;
    letter-spacing: 0;
    list-style: outside none none;
    margin-bottom: 13px;
    margin-top: 0;
    text-transform: uppercase;
	  font-weight: bold;
}
.row-info-contacto li img
{
	margin-right:15px;
	width:100%;
	height:auto;
	max-width:13px;
}
.txt-contacto
{
	color: rgba(124, 124, 124, 1);
    font-family: "Cabin",sans-serif;
    font-size: 1em !important;
    font-weight: normal !important;
    margin-top: -13px !important;
    padding-left: 30px;
    text-transform: none !important;
	
}
img.celu
{
	 margin-left: 2px;
    width: 10px !important;
}
/***fin contacto****/





/***footer***/
/* Redes sociales del footer */
@media screen and (max-width: 800px) {
    #content-footer {
        flex-direction: column; /* solo en móvil */
    }
}
#block-footer .social-icons img {
    max-width: 36px;  /* Tamaño máximo de los iconos */
    height: auto;      /* Mantiene la proporción */
    margin: 0 5px;     /* Espacio entre los iconos */
    transition: all 0.3s ease; /* Para un hover suave */
}

#block-footer .social-icons img:hover {
    transform: scale(1.1); /* Hace un pequeño zoom en hover */
    opacity: 0.8;           /* Efecto de transparencia */
}

#block-footer {

    border-top: 1px solid rgba(0, 0, 0, 0.06);
    float: left;
    padding: 20px 0;
    width: 100%;
	max-width: 1881px;
}
#block-footer .row
{
	float:left;
}
#block-footer .row-1
{

}
#block-footer .row-2
{
    margin: 0 2%;
    text-align: center;

}
#block-footer .row-2 a
{
	color: #D4B36B;
    font-size: 0.9em;
    text-decoration: none;
}
.derechos
{
	  font-size: 0.8em !important;
    margin-top: 2px;
}
#block-footer .row-3
{
	float:right;
}
#block-footer .row-3 p
{
	 color: rgba(130, 130, 130, 0.65);
    font-size: 0.8em;
    line-height: 0;
}
#block-footer .row-3 img
{
	width:100%;
	max-width:60px;
	height:auto;
}
/***fin footer***/



/****interna nosotros****/

#block-nosotros, #block-pqr {
    padding-top: 50px;
    width: 100%;
}
#block-nosotros .row, #block-pqr .row {
    background: rgba(255, 255, 255, 0.63) none repeat scroll 0 0;
    box-shadow: 0 0 10px #e8e8e8;
    margin: 56px auto;
    padding: 45px 56px;
    width: 76%;
}
#block-nosotros h1,  #block-pqr h1
{
	font-family: "Cabin",sans-serif;
    font-size: 1.3em;
    letter-spacing: 0;
    margin: 25px 0 9px;
	text-transform:uppercase;
	float: left;
    width: 100%;
}

#block-nosotros li
{
	list-style: unset;
    margin-bottom: 15px;
    margin-left: 4%;
    padding-left: 1%;
    text-align: justify;
}

#block-nosotros h3,  #block-pqr h3 {
    font-size: 1em;
    font-weight: normal;
    line-height: 1.3em;
    text-align: justify;
}
/****interna nosotros****/


/***interna PQR***/
#block-pqr a
{
 background-color: rgb(212, 179, 107);
    color: rgb(255, 255, 255);
    display: inline-block;
    font-family: "Poppins",sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    margin: 27px 0;
    padding: 2px 6%;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

#block-pqr #block-fomulario {
      -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-color: -moz-use-text-color -moz-use-text-color threedlightshadow;
    border-image: none;
    border-radius: 0;
    border-style: none none solid;
    border-width: 0 0 1px;
    box-shadow: none;
    margin: 33px auto;
    max-width: 651px;
    padding: 0 0 28px;
    width: 94%;
}
.tipo-doc
{
     width: 100%;
}

#block-pqr .txt-mensaje
{    
    min-height: 100px; 
    width: 100%;
	font-family: "Cabin",sans-serif;
}
.renglon
{
	float: left;
    margin: 0 8px 14px;
    width: 47%;
}
.renglon-2
{
	 float: left;
    margin: 0 8px 14px;
    width: 30.3%;
}
.renglon-3
{
	 float: left;
    margin: 0 8px;
	width:96%;
}
#block-pqr p
{
	float: left;
    text-align: justify;
}

#edit-submitted-ciudad {
    border: 1px solid rgba(181, 189, 200, 0.4);
    border-radius: 5px;
    color: rgb(112, 128, 144);
    font-size: 1em;
    margin: 5px 0;
    padding: 0 3%;
    width: 96%;
}
.opcion
{
	padding: 7px 3%;
}
.politicas
{
	float: left;
    font-size: 1em !important;
    margin-top: 50px !important;
}
.txt-politicas
{
	color: rgba(136,136,136,1.00);
    font-size: 0.9em;
}
/***interna PQR***/


.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}