@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--color-primario: #93d500;
	--color-secundario: #B1B1B1;
	--color-borde: #f1f1f1;
	--color-body: #ffffff;
	--color-fondo: #000000;
	--font-titulos: 'Montserrat', sans-serif;
	--font-texto: 'Montserrat', sans-serif;
}

* {
	box-sizing: border-box;
	/* Padding y borde no incrementan el ancho */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body {
	font-family: var(--font-texto);
	color: var(--color-body);
	background-color: var(--color-fondo);
}

h1 {
	font-size: 1.6em;
	font-weight: 900;
	color: var(--color-primario);
	letter-spacing: 0.03em;
}

h2 {
	font-size: 1.6em;
	font-weight: 900;
	color: var(--color-primario);
	letter-spacing: 0.03em;
}

h3 {}

h4 {
	font-size: 1em;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.8em;
}

p {}

ul {
	padding-left: 0;
}

ul li {
	list-style-position: inside;
}

a {}

a:link {
	color: var(--color-primario);

}

a:visited {
	color: var(--color-primario);
}

a:hover {
	text-decoration: none;
}

img {
	width: 100%;
}

img.block {
	width: inherit;
}


/*HEADER*/

header {
	position: fixed;
	width: 100%;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.8);
}

header .logo {
	padding: 15px 0;
	width: 85px;
}

/* change header */

header.hdr-small {
	background-color: rgba(0, 0, 0, 0.8);
}

header.hdr-small .logo {
	width: 85px;
}

/* end change header */

/* NAV */

.navbar {
	padding-top: 0;
	padding-bottom: 0;
}

.navbar ul.navbar-nav li {
	color: var(--color-primario);
	text-transform: uppercase;
	font-weight: 800;
}

.navbar ul.navbar-nav li a {
	color: var(--color-primario) !important;
}


/*FOOTER*/

footer {
	background-color: #000;
	padding-bottom: 100px;
}

footer .cont-rrss {
	background-image: url(../img/bg-rrss.png);
	width: 278px;
	height: 77px;
	margin-left: auto;
	margin-right: auto;
}

footer .cont-rrss ul {
	text-align: center;
	padding-left: 0;
	padding-top: 28px;
}

footer .cont-rrss ul li {
	display: inline-block;
	margin: 0 18px;
}

footer p {
	color: var(--color-secundario);
	font-size: 12px;
}

.legales ul {
	text-align: center;
}

.legales ul li {
	color: var(--color-secundario);
	font-size: 12px;
	list-style-type: none;
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
}

.legales ul li a,
footer p a {
	color: var(--color-primario);
}

.legales ul li a:hover,
footer p a:hover {
	color: var(--color-secundario);
}

.banner-bot {
	position: fixed;
	bottom: 0;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	margin-top: 40px;
	max-width: 290px;
	width: 100%;
	z-index: 999;
}


/* SLIDER */

.owl-carousel {
	z-index: auto !important;
	overflow: hidden;
}

#slider a {
	text-decoration: none;
}

#slider .owl-controls {
	margin-top: 0;
}

#slider .owl-controls .owl-nav div {
	background: none;
}

#slider .owl-dots {
	position: absolute;
	transform: rotate(90deg);
	top: 50%;
	right: 0px;
}

#slider .owl-dots .owl-dot span {
	border-radius: 50px;
	display: block;
	border: 2px solid #999;
	background: trasparent;
	height: 10px;
	width: 10px;
	margin: 5px;
}

#slider .owl-dots .owl-dot.active span {
	background: #999;
	height: 10px;
	width: 10px;
}

#slider .cont-btn {
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 200px;
	z-index: 999;
}

#slider .cont-btn .btn {
	border: 2px solid #000;
}

#slider .item-video {
	position: absolute;
	max-width: 600px;
	width: 100%;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: 18%;
}

/* -- CONTENIDO -- */

.ws {
	position: fixed;
	bottom: 10px;
	right: 20px;
	width: 40px;
	z-index: 900;
}

.ws img {
	width: 100%;
}

section.hero {
	background-image: url(../img/hero-m.jpg);
	background-size: cover;
	background-position: center center;
	margin-top: -80px;
}

section.hero .container {
	height: 550px;
}

section.modulos .ejemplos-de-uso {
	margin-top: 50px;
}

section.modulos .thumb {
	margin-top: 30px;
	margin-bottom: 50px;
	overflow: hidden;
}

section.modulos .thumb h2 {
	font-family: var(--font-texto);
	font-size: 1rem;
	font-weight: 400;
}

section.modulos .thumb:hover .txt {
	padding-bottom: 30px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

section.modulos .thumb:hover img {
	filter: grayscale(100%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

section.modulos .thumb .txt {
	position: absolute;
	/*left: 15px;*/
	bottom: 0px;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 15px 45px 15px 20px;
	width: 100%;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	z-index: 999;
}

section.modulos .thumb .txt p {
	color: var(--color-primario);
	padding-bottom: 0;
	margin-bottom: 0;
}

section.interna {
	padding: 140px 0 100px;
	background-image: url(../img/bg-interna.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center top;
}

section.interna h4 {
	margin-top: 30px;
}

section.interna .faqs,
section.interna .legales {
	margin-top: 40px;
}

section.interna .faqs h2:first-of-type {
	margin-top: 0;
}

section.interna .faqs h2 {
	font-family: var(--font-texto);
	font-size: 1em;
	font-weight: 700;
	line-height: 2em;
	margin-top: 30px;
	text-transform: uppercase;
	color: #fff;
}

section.producto .detalle {
	margin-top: 40px;
}

section.producto .detalle h2 {
	color: #ffffff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
	margin-bottom: 20px;
}

section.producto .cont-slider {
	margin-top: 40px;
}

section.prefooter {
	margin-top: -80px;
	padding: 100px 0 60px;
	background-image: url(../img/bg-prefooter.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}

section.prefooter h2 {
	margin-bottom: 25px;
}

section.prefooter p {
	max-width: 550px;
}

section.prefooter ul {
	margin-top: 0px;
}

section.prefooter .detalle-beneficios {
	color: var(--color-secundario);
	margin-top: 30px;
}

section.prefooter .detalle-beneficios ul {
	list-style-type: none;
}

section.prefooter .detalle-beneficios ul li {
	font-size: 12px;
}

.logo-3 {
	max-width: 280px;
	margin-top: 30px;
	width: 100%;
}

span.outline {
	color: transparent;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--color-primario);
}

section.marcas {
	margin-bottom: 60px
}

section.marcas .container {
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	padding-top: 60px;
	padding-bottom: 60px;
	margin-bottom: 60px
}

section.marcas h2 {
	text-transform: uppercase;
	font-weight: 900;
	color: var(--color-primario);
}

section.marcas h3 {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.6em;
	text-transform: none;
}

section.marcas ul {
	padding-left: 0;
	margin-left: 0;
}

section.marcas ul li {
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--color-primario);
	list-style-type: none;
}

section.marcas ul li a {
	color: var(--color-primario);
}

/* Carousel + thumbsnails */


.owl-thumb-item {
	border: 2px solid transparent;
	border-color: transparent;
	background: none;
	padding: 2px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.owl-thumb-item.active {
	border: 2px solid #C2D500;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

button:focus {
	outline: 1px dotted;
	outline: 0px auto -webkit-focus-ring-color;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
	font-size: 80px !important;
}

#sync1 .owl-nav .owl-prev {
	position: absolute;
	top: 25%;
	left: 15px;
}

#sync1 .owl-nav .owl-next {
	position: absolute;
	top: 25%;
	right: 15px;
}

#sync2 {
	display: none;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	padding: 0 40px;
}

#sync2 .item {
	background: #C9C9C9;
	padding: 2px;
	margin: 10px;
	color: #FFF;
	text-align: center;
	cursor: pointer;
}

#sync2 .current .item {
	background: #C2D500;
}

#sync2 .owl-nav {}

#sync2 .owl-nav .owl-prev {
	position: absolute;
	top: 0;
	left: 0;
}

#sync2 .owl-nav .owl-next {
	position: absolute;
	top: 0;
	right: 0;
}

/* Form */

.contact-form .form-control {
	color: #fff;
	border-radius: 0;
	border-left: none;
	border-right: none;
	border-top: none;
	border-bottom-color: var(--color-primario);
	background-color: #111;
}

.contact-form select.form-control {
	background-color: #111;
}

.contact-form input.form-control,
.contact-form select.form-control {
	height: calc(2em + .75rem + 2px);
	-webkit-appearance: none;
}

.contact-form .msg-error {
	color: red;
}

.formulario-pie {
	margin-top: 50px;
	margin-bottom: 80px;
}

.bold {
	font-weight: 600;
}

.verde {
	color: var(--color-primario);
}

/* Placeholders */

form.contact-form .form-control::-webkit-input-placeholder {
	color: #cccccc;
}

/* WebKit, Blink, Edge */
form.contact-form .form-control:-moz-placeholder {
	color: #cccccc;
}

/* Mozilla Firefox 4 to 18 */
form.contact-form .form-control::-moz-placeholder {
	color: #cccccc;
}

/* Mozilla Firefox 19+ */
form.contact-form .form-control:-ms-input-placeholder {
	color: #cccccc;
}

/* Internet Explorer 10-11 */
form.contact-form .form-control::-ms-input-placeholder {
	color: #cccccc;
}

/* Microsoft Edge */

/* Reset botones */

.btn {
	border: none;
	border-radius: 50px;
	font-weight: 500;
}

.btn-primary {
	color: #000 !important;
	background-color: var(--color-primario);
}

.btn-primary:hover {
	color: #fff !important;
	background-color: #333;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
	background-color: #797878;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	background-color: #333 !important;
	/* Reset Press Azul */
	box-shadow: none;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

/* Reset Glow Azul*/

.form-control:focus {
	border-color: #ced4da !important;
	-webkit-box-shadow: 0 0 5px rgba(111, 111, 111, 1) !important;
	box-shadow: 0 0 5px rgba(111, 111, 111, 1) !important;
}

.transition {
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

/****************************/


/*FUENTES*/
@font-face {
	font-family: 'fuente';
	src: url('fuente.eot');
	src: url('fuente.eot?#iefix') format('embedded-opentype'),
		url('fuente.woff') format('woff'),
		url('fuente.ttf') format('truetype'),
		url('fuente.svg#fuente') format('svg');
	font-weight: normal;
	font-style: normal;
}


/****************************/
/* MEDIA QUERIES */
/****************************/

/* 768 */
@media screen and (min-width: 768px) {

	#sync2 {
		display: block;
	}

}

/* 992 */
@media screen and (min-width: 992px) {

	header {
		background-color: rgba(0, 0, 0, 0);
	}

	header .logo {
		width: 110px;
	}

	header.hdr-small .logo {
		width: 110px;
	}

	section.hero {
		background-image: url(../img/hero.jpg);
		background-attachment: fixed;
	}

	footer {
		padding-bottom: 0;
	}

	footer .cont-rrss {
		margin-left: 20px;
		margin-bottom: 20px;
		margin-right: auto;
	}

	.banner-bot {
		position: fixed;
		left: 0;
		right: 0;
		margin-left: auto;
		margin-right: auto;
		max-width: 352px;
	}

	.ws {
		bottom: 20px;
	}

	#sync1 .owl-nav .owl-prev {
		top: 35%;
	}

	#sync1 .owl-nav .owl-next {
		top: 35%;
	}

	.logo-3 {
		max-width: 365px;
		margin-top: 0;
	}

}

/* 1280 */
@media screen and (min-width: 1280px) {

	h1 {
		font-size: 2.8em;
	}

	.hero h1 {
		font-size: 3.6em;
	}

	section.hero .container {
		height: 600px;
	}

	header .logo {
		width: 144px;
	}

	section.prefooter {
		padding: 120px 0 60px;
	}

	section.prefooter h2 {
		font-size: 2.6em;
	}

	.container {
		max-width: 1200px;
	}

	.ws {
		width: 61px;
	}

	.hero span.outline {
		-webkit-text-stroke-width: 3px;
	}

	#slider .item-video {
		max-width: 720px;
		top: 18%;
	}

}

/* 1366 */
@media screen and (min-width: 1300px) {

	h1 {
		font-size: 3em;
	}

	.hero h1 {
		font-size: 4em;
	}

	section.hero .container {
		height: 700px;
	}

	#slider .cont-btn {
		bottom: 60px;
	}

	section.prefooter {
		padding: 140px 0 60px;
	}

	section.prefooter h2 {
		font-size: 3em;
	}

	#slider .item-video {
		max-width: 900px;
		top: 18%;
	}

}


/* 1680 */
@media screen and (min-width: 1600px) {

	#slider .cont-btn {
		bottom: 65px;
	}

	#slider .item-video {
		max-width: 1000px;
		top: 18%;
	}

}

/* 1920 */
@media screen and (min-width: 1900px) {

	#slider .cont-btn {
		bottom: 80px;
	}

}

.btn-whatsapp {
	position: fixed;
	z-index: 999;
	bottom: 30px;
	right: 15px;
}