html{
	--azul: #005CB9;
	--amarillo: #F5A800;
	--gris: #4D4D4D;
	font-family: 'Poppins', sans-serif;
	font-size: 10px;
}

.anchoMax{
	max-width: 1700px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5vw;
	padding-right: 5vw;
	box-sizing: border-box;
}

.oculto{
	opacity: 0;
	cursor: default;
}

.eliminar{
	display: none;
}

/********************
TEXTOS - ESTILOS
********************/

h1{
	font-size: 6rem;
	font-weight: 600;
}

h2{
	font-size: 4.8rem;
	font-weight: 500;
}

h3{
	font-size: 2.4rem;
	font-weight: 600;
}

h4{
	font-size: 1.6rem;
	line-height: 2rem;
	font-weight: 400;
}

h5{
	font-size: 3.6rem;
	font-weight: 500;
	line-height: 4.2rem;
}

h6{
	font-size: 1.2rem;
	font-weight: 300;
	transition: all 0.3s ease;
}

h6 i{
	font-size: 1rem;
}

p{
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: 300;
}

.textoCentro{
	text-align: center;
}

.bold{
	font-weight: 600;
}

/********************
COLORES - ESTILOS
********************/

.azul{
	color: var(--azul);
}

.amarillo{
	color: var(--amarillo);
}

.gris{
	color: var(--gris);
}

.blanco{
	color: #fff;
}

.fondoAmarillo{
	background-color: var(--amarillo);
}

.fondoAzul{
	background-color: var(--azul);
}

/********************
ANCHOS - ESTILOS
********************/

.ancho100{
	width: 100%;
}

.ancho75{
	width: 75%;
}

.ancho50{
	width: 50%;
}

.ancho45{
	width: 45%;
}

.ancho40{
	width: 40%;
}

.ancho30{
	width: 30%;
}

.ancho25{
	width: 25%;
}

/********************
FLEX - ESTILOS
********************/

.flex{
	display: flex;
	flex-wrap: wrap;
}

.center{
	justify-content: center;
}

.between{
	justify-content: space-between;
}

.end{
	justify-content: flex-end;
}

.alignTop{
	align-items: flex-start;
}

.alignCenter{
	align-items: center;
}

.alignBottom{
	align-items: flex-end;
}

.contentBetween{
	align-content: space-between;
}

.contentBottom{
	align-content: flex-end;
}

/********************
BOTONES - ESTILOS
********************/

.boton{
	border-radius: 30px;
	border: solid 2px;
	font-weight: 600;
	transition: all 0.3s ease;
	background-color: #fff;
}

.botonMediano{
	padding: 3px 25px;
	font-size: 1.8rem;
}

.botonMediano i{
	font-size: 1.4rem;
	margin-left: 5px;
}

.botonGrande{
	padding: 3px 30px;
	font-size: 2.4rem;
}

.botonAzul{
	color: var(--azul);
	border-color: var(--azul);
}

.botonAzul:hover{
	background-color: var(--azul);
	color: #fff;
}

.botonAmarillo{
	color: var(--amarillo);
	border-color: var(--amarillo);
}

.botonAmarillo:hover{
	background-color: var(--amarillo);
	color: #fff;
}

.botonBlanco{
	color: #fff;
	border-color: #fff;
}

.botonBlanco:hover{
	background-color: #fff;
	color: var(--azul);
}

/********************
SEPARADORES - ESTILOS
********************/

.separadorHorizontal{
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,0.5);
}

.separadorVertical{
	width: 1px;
	height: 35px;
	background-color: var(--azul);
}

/********************
FORMULARIOS - ESTILOS
********************/

.formulario label{
	margin-left: 20px;
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: 300;
}

.formularioBlanco label{
	color: var(--azul);
}

.formularioAzul label{
	color: #fff;
}

.formulario input, .formulario textarea{
	background: none;
	margin: 10px 0 30px 0;
	padding: 8px 20px;
	box-sizing: border-box;
	border-radius: 18px;
	font-size: 1.4rem;
	font-weight: 400;
}

.formularioBlanco input, .formularioBlanco textarea{
	border: 1px solid var(--azul);
	color: var(--gris);
}

.formularioAzul input, .formularioAzul textarea{
	border: 1px solid #fff;
	color: #fff;
}

.formulario input::placeholder, .formulario textarea::placeholder{
	color: var(--azul);
	opacity: 0.4;
}

.formularioBlanco input::placeholder, .formularioBlanco textarea::placeholder{
	color: var(--azul);
}

.formularioAzul input::placeholder, .formularioAzul textarea::placeholder{
	color: #fff;
}

.formulario button{
	background: none;
	margin-top: 20px;
}

.formulario label i{
	cursor: pointer;
	margin-left: 5px;
	font-size: 1rem;
	vertical-align: super;
}

/********************
HEADER - ESTILOS
********************/

header{
	position: fixed;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 990;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,1);
}

#menuHeader{
	align-items: center;
	cursor: pointer;
}

#menuHeader p{
	color: var(--azul);
	font-size: 1.8rem;
	font-weight: 600;
	margin-left: 8px;
}

#iconoMenu{
	position: relative;
	z-index: 999;
	width: 40px;
}

#iconoMenu .linea-iconoMenu{
	height: 3px;
	border-radius: 1.5px;
	margin-bottom: 5px;
	background-color: var(--azul);
}

#iconoMenu #linea1{
	width: 40px;
}

#iconoMenu #linea2{
	width: 30px;
}

#iconoMenu #linea3{
	width: 20px;
}

#logoHeader{
	width: 15%;
}

#logoHeader img{
	width: 100%;
}

#botonWhatsapp{
	font-size: 1.6rem;
	font-weight: 600;
}

#botonWhatsapp i{
	font-size: 1.7rem;
	margin-right: 3px;
}

/********************
MENÚ - ESTILOS
********************/

#menu{
	position: fixed;
	z-index: 980;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 18vh 0 10vh 0;
	box-sizing: border-box;
	background-color: var(--amarillo);
	
	clip-path: inset(0px 100% 0px 0px);
}

#contenedorMenu{
/*	background-color: red;*/
	height: 100%;
}

#primerBloque{
	width: 100%;
}

#listaMenu li{
	margin-bottom: 35px;
}

#listaMenu li:last-of-type{
	margin: 0;
}

#listaMenu li::after{
	content: " ";
	position: absolute;
	top: 0;
	left: 2px;
	width: 8px;
	height: 100%;
	background-color: var(--azul);
	clip-path: inset(0px 0px 100% 0px);
	transition: all 0.5s ease;
}

#listaMenu li:last-of-type::after{
	background-color: #fff;
}

#listaMenu li:hover::after{
	clip-path: inset(0% 0px 0px 0px);
}

#listaMenu li a{
	display: flex;
	align-items: center;
	font-size: 4.8rem;
	font-weight: 600;
}

#contactoMenu{
	text-align: right;
}

#contactoMenu li{
	margin-top: 15px;
}

#contactoMenu li:hover a{
	color: var(--azul);
}

#redesMenu li{
	margin-right: 50px;
}

#redesMenu li a, #contactoMenu li a{
	color: #fff;
	font-weight: 300;
	font-size: 1.8rem;
}

#redesMenu li a span, #contactoMenu li a span{
	font-weight: 600;
}

#redesMenu li a:hover{
	color: var(--azul);
}

#segundoBloque{
	width: 100%;
}

#logoMenu{
	width: 15%;
	transition: all ease 0.5s;
}

#logoMenu img{
	width: 100%;
}

#logoMenu:hover{
	transform: rotate3d(1, -1, 0, 45deg);
}

/********************
HOME - CABECERA - ESTILOS
********************/

#cabeceraHome{
	padding-top: 12vh;
	box-sizing: border-box;
}

#cabeceraHome h2{
	margin-bottom: 50px;
}

/********************
HOME - SLIDER SERVICIOS - ESTILOS
********************/

#sliderServicios{
	position: relative;
	margin: 100px 0;
	background: linear-gradient(to right, var(--amarillo) 20%, #fff 20%);
}

#img-servicios{
	position: absolute;
	top: 0px;
	right: 100px;
}

#bolsaCafe{
	position: relative;
	z-index: 10;
	width: 135px;
	transform: rotate(-12deg);
}

#botellaJugo{
	width: 110px;
	transform: rotate(17deg) translate(0, 50px);
	box-shadow: 70px 150px 40px rgba(0,0,0,0.1);
}

.slider-servicios{
	width: 90%;
	padding: 260px 10vw 100px 5vw;
	box-sizing: border-box;
	background-image: url(../img/bg_serviciosHome.svg);
	background-size: contain;
	background-position: 0;
	background-repeat: no-repeat;
}

.slider-servicios .flickity-button,  .slider-servicios .flickity-button:hover{
	background: transparent;
}

.slider-servicios .flickity-prev-next-button.next{
	right: 50px;
	top: calc(50% + 80px);
}

.slider-servicios .flickity-prev-next-button.previous {
	display: none;
}

.slider-servicios button.flickity-prev-next-button.next::before {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: var(--amarillo);
  font-size: 30px;
}

.slider-servicios .flickity-prev-next-button.next svg{
	display: none;
}

.slider-servicios .flickity-page-dots {
	bottom: 0px;
}

.slider-servicios .flickity-page-dots .dot {
	width: 14px;
	height: 14px;
	opacity: 1;
	background: var(--amarillo);
	border: none;
}

.slider-servicios .flickity-page-dots .dot.is-selected {
	background: var(--azul);
}

.slider-servicios .tarjeta{
	min-height: 100%;
	width: 28%;
	margin-right: 6%;
	padding: 30px 20px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 25px;
}

.tarjetaAmarilla{
	border: 2px solid var(--amarillo);
}

.tarjetaAzul{
	border: 2px solid var(--azul);
}

.slider-servicios .tarjeta p{
	margin: 25px 0 50px 0;
}

/********************
HOME - PRODUCTOS - ESTILOS
********************/

#nuestrosProductos{
	position: relative;
	margin-top: 250px;
}

#img-productos{
	position: absolute;
	top: -200px;
	left: 100px;
}

#bolsaPapel{
	position: relative;
	top: 100px;
	z-index: 10;
	width: 330px;
	transform: rotate(0deg);
}

#bandejaPostobon{
	position: relative;
	top: 250px;
	left: -150px;
	z-index: 9;
	width: 300px;
	transform: rotate(7deg);
}

#ristraBimbo{
	position: relative;
	top: 10px;
	left: -340px;
	z-index: 7;
	width: 260px;
	transform: rotate(8deg);
}

#tituloProductos{
	width: 100%;
	background: linear-gradient(to left, var(--azul) 20%, #fff 20%);
}

#tituloProductos div{
	text-align: right;
	padding: 300px 5vw 250px 0;
	box-sizing: border-box;
	background-image: url(../img/bg_productosHome.svg);
	background-size: contain;
	background-position: 100% 0;
	background-repeat: no-repeat;
}

#productos{
	position: relative;
	margin-top: -150px;
}

.productoHome{
	width: 23%;
	margin-bottom: 3%;
	padding: 25px;
	box-sizing: border-box;
	border-radius: 25px;
	background-color: #fff;
	transition: all 0.3s ease;
	
	background-repeat: no-repeat;
	background-position: 3px 3px;
	background-size: 60px;
}

.productoAzul{
	color: var(--azul);
	border: 2px solid var(--azul);
	background-image: url(../img/bg_puntosAzules.svg);
}

.productoAmarillo{
	color: var(--amarillo);
	border: 2px solid var(--amarillo);
	background-image: url(../img/bg_puntos.svg);
}

.productoAzul:hover{
	background-color: var(--azul);
	color: #fff;
	background-image: url(../img/bg_puntosBlancos.svg);
}

.productoAmarillo:hover{
	background-color: var(--amarillo);
	color: #fff;
	background-image: url(../img/bg_puntosBlancos.svg);
}

.productoHome img{
	width: 125px;
	height: 125px;
	margin-bottom: 20px;
	border-radius: 25px;
}

.contain{
	object-fit: contain;
}

.cover{
	object-fit: cover;
}

.productoHome div h4{
	width: 80%;
	min-width: 160px;
}

.productoHome div i{
	font-size: 2rem;
}

/********************
HOME - LOGOS CLIENTES - ESTILOS
********************/

#tituloClientes{
	width: 100%;
	margin-top: -250px;
	background: linear-gradient(to right, var(--amarillo) 20%, #fff 20%);
}

#tituloClientes div{
	padding: 400px 0 100px 5vw;
	box-sizing: border-box;
	background-image: url(../img/bg_clientesHome.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.slider-clientes{
	width: 90%;
	margin-top: 150px;
	margin-bottom: 250px;
}

.slider-clientes .flickity-page-dots {
	bottom: -75px;
}

.slider-clientes .logoCliente{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 25%;
	min-height: 100%;
}

.slider-clientes div img{
	width: 100%;
	max-width: 250px;
	max-height: 60px;
	object-fit: contain;
}

/********************
HOME - VALORES EMPRESA - ESTILOS
********************/

#valores{
	margin-top: 200px;
	padding-left: calc((100vw - 1700px) / 2);
	box-sizing: border-box;
}

#textoValores{
	padding-left: 5vw;
	box-sizing: border-box;
}

#textoValores div{
	margin-bottom: 50px;
}

#textoValores div h3{
	margin-bottom: 20px;
}

#textoValores div h3 i{
	margin-right: 10px;
}

#tituloValores{
	padding-right: calc((100vw - 1700px) / 2);
	box-sizing: border-box;
	background: linear-gradient(to left, var(--azul) 70%, #fff 70%);
}

#tituloValores div{
	position: relative;
	padding: 250px 0 250px 450px;
	background-image: url(../img/bg_valoresHome.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 100% 0;
}

#tituloValores div img{
	position: absolute;
	bottom: 15%;
	left: -180px;
	width: 230px;
}

/********************
HOME - CONTACTO - ESTILOS
********************/

#contactoHome{
	position: relative;
	margin-top: 150px;
}

#img-contacto{
	position: absolute;
	top: -150px;
	right: 100px;
}

#ristraMonster{
	position: relative;
	top: 0px;
	left: 200px;
	z-index: 10;
	width: 190px;
	transform: rotate(22deg);
}

#cuadernos{
	position: relative;
	top: 230px;
	left: 10px;
	z-index: 9;
	width: 340px;
	transform: rotate(7deg);
}

#ristraAguardiente{
	position: relative;
	top: 30px;
	left: -120px;
	z-index: 7;
	width: 130px;
	transform: rotate(-18deg);
}

#tituloContacto{
	width: 100%;
	margin-top: 50px;
	background: linear-gradient(to right, var(--amarillo) 20%, #fff 20%);
}

#tituloContacto div{
	padding: 400px 0 100px 5vw;
	box-sizing: border-box;
	background-image: url(../img/bg_contactoHome.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

#contenidoContacto{
	margin-top: 100px;
}

#ubicacionHome{
	position: relative;
}

#mapa{
	height: 100%;
}

#datosMapa{
	position: absolute;
	bottom: 20px;
	left: 20px;
	padding: 25px;
	box-sizing: border-box;
	border-radius: 10px;
}

#datosMapa ul li a{
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: 300;
	color: #fff;
}

#datosMapa ul li a span{
	font-weight: 600;
}

/********************
HOME - LLAMAR - ESTILOS
********************/

#llamar{
	margin-top: 100px;
	margin-bottom: 100px;
}

#llamar form{
	margin-top: 50px;
}

#llamar form div{
	margin: 0 25px;
}

/********************
FOOTER - PIE DE PAGINA - ESTILOS
********************/

footer{
	width: 100%;
	padding-left: calc((100vw - 1700px) / 2);
	box-sizing: border-box;
	
}

#contenidoFooter{
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 5vw;
	padding-right: calc((100vw - 1700px) / 2);
	box-sizing: border-box;
	border-radius: 25px 0 0 0;
}

@media (max-width: 1900px){
	footer{
		padding-left: 5vw;
	}
	#contenidoFooter{
		padding-right: 5vw;
	}
}

footer div img{
	width: 75%;
}

footer div ul li a{
	color: #fff;
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 2.6rem;
	transition: all 0.2s ease;
}

footer div ul li a:hover{
	color: var(--amarillo);
}

footer div ul li a span{
	font-weight: 600;
}

#copyFooter{
	margin-top: 30px;
}

#copyFooter p{
	color: #fff;
	font-size: 1.2rem;
}

#copyFooter p a{
	color: #fff;
	font-weight: 600;
}

/********************
COTIZACIÓN
********************/

#tituloCotizacion{
	position: relative;
	box-sizing: border-box;
	text-align: right;
	padding-top: 35vh;
	padding-bottom: 5px;
	background-image: url(../img/bg_cotizacion.svg);
	background-position: center bottom;
	background-size: 100%;
	background-repeat: no-repeat;
}

#tituloCotizacion img{
	position: absolute;
	top: 40%;
	left: 7%;
	width: 10vw;
	transform: rotate(90deg);
}

/********************
COTIZACIÓN - FORMULARIO
********************/

#formularioCotizacion{
	margin-top: -2px;
	padding-top: 75px;
	padding-bottom: 50px;
	background-color: var(--azul);
}

/********************
COTIZACIÓN - TOOLTIP AYUDA
********************/

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
	font-family: 'Poppins', sans-serif;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.2rem;
  	visibility: hidden;
  	width: 250px;
  	background-color: #fff;
  	color: var(--azul);
  	text-align: center;
  	padding: 5px 0;
  	border-radius: 6px;

  	position: absolute;
  	z-index: 1;
  	bottom: 160%;
  	left: 50%;
  	margin-left: -125px;
  	opacity: 0;
  	transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/********************
PÁGINA DE PRODUCTO - TÍTULO E IMAGEN PRINCIPAL
********************/

#paginaProducto{
	padding-top: 20vh;
	padding-bottom: 50px;
	box-sizing: border-box;
}

#contenidoProducto a{
	display: block;
	margin-bottom: 20px;
}

#contenidoProducto a h6:hover{
	color: var(--amarillo);
}

#contenidoProducto p{
	margin-top: 50px;
}

#imagenProducto{
	position: relative;
}

#imagenProducto .puntos{
	position: absolute;
	top: 0;
	left: 0;
	width: 30%;
}

#imagenProducto .img{
	position: relative;
	z-index: 2;
	width: 100%;
	max-height: 400px;
}

/********************
PÁGINA DE PRODUCTO - GALERÍA DE IMÁGENES
********************/

#galeriaProducto{
	margin-top: 100px;
	margin-bottom: 100px;
}

.slider-producto .carrousel-cell{
	width: 20%;
}

.slider-producto .flickity-button,  .slider-producto .flickity-button:hover{
	background: none;
}

.slider-producto button.flickity-prev-next-button.previous::before, .slider-producto button.flickity-prev-next-button.next::before{
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	color: var(--amarillo);
	font-size: 30px;
}

.slider-producto button.flickity-prev-next-button.previous::before {
  content: '\f060';
}

.slider-producto button.flickity-prev-next-button.next::before {
  content: '\f061';
}

.slider-producto .flickity-prev-next-button.previous svg, .slider-producto .flickity-prev-next-button.next svg{
	display: none;
}

.slider-producto .flickity-page-dots {
	bottom: -40px;
}

.slider-producto .flickity-page-dots .dot {
	width: 12px;
	height: 12px;
	opacity: 1;
	background: var(--amarillo);
	border: none;
}

.slider-producto .flickity-page-dots .dot.is-selected {
	background: var(--azul);
}

.slider-producto .carrousel-cell a{
	width: 100%;
}

.slider-producto .carrousel-cell a img{
	width: 100%;
}

/********************
PÁGINA DE PRODUCTO - COTIZACIÓN
********************/

#tituloCotiProducto{
	position: relative;
	padding-top: 100px;
	text-align: right;
}

#tituloCotiProducto img{
	position: absolute;
	top: 0%;
	left: 3vw;
	width: 10vw;
	max-width: 150px;
	transform: rotate(90deg);
}

#cotizacionProducto form{
	margin-top: 100px;
}




#respuestaMensaje{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 200px 0 100px 0;
    box-sizing: border-box;
    text-align: center;
    color: var(--azul);
}

#respuestaMensaje h2{
    width: 100%;
    margin-bottom: 12px;
}




