@charset "utf-8";

/* CSS Document */
body {
	font-family: 'Roboto', sans-serif;
}



/*BACKGROUND*/

.valorix-bg-blue {
	background-color: #021d4b;
}

.valorix-bg-blue2 {
	background-color: #071020;
}

.valorix-bg-gray {
	background-color: #f3f3f3;
}

.valorix-bg-white {
	background-color: #fff;
}

.valorix-bg-skyblue {
	background-color: #009cdd;
}


/*FONTS COLOR*/

.valorix-text-blue {
	color: #021d4b;
}

.valorix-text-blue2 {
	color: #16499e;
}

.valorix-text-green {
	color: #35bf08;
}

.valorix-text-black {
	color: #000000;
}

.valorix-text-white {
	color: #ffffff;
}

.valorix-text-skyblue {
	color: #009cdd;
}

.valorix-text-gray {
	color: #a0a0a0;
}


/*BUTTONS*/

.container {
	padding: 0px 25px;
}

/*NAV*/

nav {
	min-height: 80px;
	box-shadow: 0px 2px 10px rgba(18, 27, 60, 0.2);
	padding: 10px 0;
}

nav img[src*=".svg"]#valorix {
	max-width: 150px;
}

nav img[src*=".svg"]#bpo {
	max-width: 250px;
}

/* Mobile menu styling */
.navbar-toggler {
	border: 2px solid #021d4b;
	padding: 8px 10px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.navbar-toggler:hover {
	background-color: #021d4b;
}

.navbar-toggler:hover .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(2, 29, 75, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
	transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item {
	padding: 5px 0;
	border-bottom: 1px solid #f0f0f0;
}

.navbar-nav .nav-item:last-child {
	border-bottom: none;
}

.navbar-nav .nav-link {
	padding: 12px 20px;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	position: relative;
}

.navbar-nav .nav-link:hover {
	background-color: #f8f9fa;
	padding-left: 25px;
	color: #009cdd !important;
}

.navbar-nav .nav-link:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #35bf08;
	transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after {
	width: 100%;
}

@media (max-width: 991px) {
	.navbar-collapse {
		background: white;
		margin-top: 15px;
		border-radius: 8px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		padding: 15px 0;
	}
}

a.btn,
.btn {
	border-radius: 25px;
	border: none;
	font-size: 20px;
	font-weight: 500;
	padding: 10px 25px;
	box-shadow: 0px 2px 10px rgba(18, 27, 60, 0.2);
}

a.btn:hover,
.btn-hover,
.btn-primary:hover {
	background-color: #021d4b;
}

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

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

.btn-secondary.form:not(:disabled):not(.disabled).active,
.btn-secondary.form:not(:disabled):not(.disabled):active,
.show>.btn-secondary.form.dropdown-toggle {
	background-color: #00638c;
}

a.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus,
a.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
	box-shadow: none;
}

a.btn-secondary {
	font-size: 16px;
}

.btn-secondary.focus,
.btn-secondary:focus,
.btn-primary.focus,
.btn-primary:focus {
	box-shadow: none;
}


a.btn-secondary.form:hover {
	background-color: #00638c;
}

/*FIRST FOLD*/
.valorix-full-bg {
	background: linear-gradient(135deg, #021d4b 0%, #16499e 35%, #009cdd 65%, #35bf08 100%);
	background-size: 200% 200%;
	animation: gradientShift 15s ease infinite;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 20px 0px 40px 0px;
	margin-top: 0px;
	min-height: 85vh;
	display: flex;
	align-items: center;
}

/* Gradient animation */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/* Fade in animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Slide up animation */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Scale animation for icons */
@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Apply animations to hero elements */
.valorix-full-bg h1 {
	animation: fadeIn 1s ease-out;
}

.valorix-full-bg p {
	animation: slideUp 1s ease-out 0.2s both;
}

.valorix-full-bg .icon {
	animation: scaleIn 0.6s ease-out both;
	transition: transform 0.3s ease;
}

.valorix-full-bg .icon:hover {
	transform: translateY(-5px) scale(1.05);
}

.valorix-full-bg .btn {
	animation: slideUp 1s ease-out 0.4s both;
	transition: all 0.3s ease;
}

.valorix-full-bg .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0px 10px 25px rgba(0, 156, 221, 0.4);
}

.valorix-full-bg.error {
	background-image: url('../img/error-mobile.jpg');
	margin-top: 80px;
	min-height: calc(100vh - 150px);
}

.valorix-full-bg.typ {
	background-image: url('../img/typ-mobile.jpg');
	margin-top: 95px;
	min-height: calc(100vh - 190px);
}

.valorix-full-bg.lp {
	background-image: url('../img/lp-md.jpg');
	background-position: inherit;
	background-size: auto;
	margin-top: 75px;
	min-height: calc(100vh - 180px);
}

.valorix-full-bg h1 {
	font-size: 34px;
	line-height: 40px;
	font-family: 'PT Serif', serif;
	font-weight: 900;
}

.valorix-full-bg p {
	font-size: 16px;
	font-weight: 300;
	font-family: 'Roboto', sans-serif;
}

.valorix-full-bg p.icon {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25rem;
}

/*SECOND FOLD*/
h2 {
	font-size: 30px;
	font-family: 'PT Serif', serif;
	font-weight: 900;
	transition: color 0.3s ease;
}

h2:hover {
	color: #35bf08;
}

span.line-subtitle {
	width: 32px;
	height: 4px;
	display: block;
}

span.line-subtitle.blue {
	background-color: #021d4b;
}

span.line-subtitle.white {
	background-color: #ffffff;
}


h3 {
	font-family: 'PT Serif', serif;
	font-weight: 900;
	font-size: 16px;
	line-height: 24px;
	transition: color 0.3s ease, transform 0.3s ease;
}

h3:hover {
	color: #009cdd;
	transform: translateX(5px);
}

p {
	font-size: 16px;
}

a.link {
	font-weight: 500;
	font-size: 14px;
	transition: all 0.3s ease;
}

a.link:hover {
	color: #35bf08;
	transform: translateX(3px);
}

a.link:after {
	content: " ";
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	position: relative;
	display: inline-block;
	margin-left: 7px;
	transition: all 0.2s ease-in;
}


a.link:hover:after {
	margin-left: 20px;
	transition: all 0.2s ease-out;
}


/* TECER FOLD */

section#porque {
	min-height: 340px;
}

#porque p {
	font-size: 14px;
	font-weight: 300;
}

/* QUINTO FOLD */

img.canal {
	max-width: 40px;
	transition: transform 0.3s ease, filter 0.3s ease;
}

img.canal:hover {
	transform: scale(1.15) rotate(5deg);
	filter: brightness(1.2);
}

p.canal {
	font-weight: 500;
	transition: color 0.3s ease;
}

ul li {
	margin: 5px 0px;
	display: flex;
}

ul.servicios li {
	list-style-type: none;
	font-size: 16px;
}

ul.servicios li:before {
	content: "•";
	margin-right: 5px;
	color: #42db10;
}

.valorix-img {
	width: 75%;
	transition: transform 0.4s ease, filter 0.4s ease;
}

.valorix-img:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/*SEPTIMO FOLD*/
#contacto {
	height: auto;
}

input.form-control {
	border-radius: 0;
	box-shadow: inset 2px 2px 5px #d4d4d4;
}

.form-control {
	border-radius: 0px;
}

form {
	padding: 0px 40px;
	border-right: 0px;
}

img[src*=".svg"].contacto {
	max-width: 20px;
	max-height: 20px;
}

ul.contacto {
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
	list-style: none;
}

iframe#mapa {
	border: 0;
	width: 100%;
	min-height: 300px;
	padding: 40px 0px 10px 0px;
}

iframe#mapaMobile {
	border: 0;
	width: 100%;
	min-height: 300px;
	padding: 0px;
	margin-bottom: 40px;
}

#contacto-large {
	display: none;
}

#contacto-small {
	display: block;
}

textarea.form-control {
	resize: none;
}

/*FOOTER*/

footer {
	min-height: 70px;
}

/*LP*/
.valorix-full-bg.lp .dhx-form-container {
	border-radius: 10px;
}

.valorix-full-bg.lp .dhx-form-container .dhx-form-title {
	border-bottom: 2px solid #dcdcdc;
	margin: 0px 20px;
	font-family: 'Roboto', sans-serif;
}

.valorix-full-bg.lp .dhx-form-container .dhx-form-title h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
}

.valorix-full-bg.lp .dhx-form-container form {
	border: 0px;
}

.valorix-full-bg.lp .dhx-form-container form .form-control {
	border-radius: 0;
	box-shadow: none;
	border-bottom: 2px solid #35bf08;
}

.valorix-full-bg.lp .dhx-form-container form .dhx-terms {
	font-size: 12px;
	font-family: 'Roboto', sans-serif;
	color: #242422;
}

.valorix-full-bg.lp .dhx-form-container form .dhx-terms a {
	color: #009cdd;
}



/*MEDIA QUERY */

@media (min-width: 321px) {
	.valorix-full-bg.typ {
		margin-top: 120px;
	}
}

@media (min-width: 335px) {

	img.canal {
		max-width: 50px;
	}

	.valorix-img {
		width: 100%;
		max-width: 250px;
	}
}

@media (min-width: 355px) {
	#contacto-large {
		display: flex;
	}

	#contacto-small {
		display: none;
	}
}

@media (min-width: 575px) {
	.valorix-full-bg.typ {
		margin-top: 30px;
	}
}

@media (min-width: 576px) {
	.valorix-full-bg {
		background: linear-gradient(135deg, #021d4b 0%, #16499e 35%, #009cdd 65%, #35bf08 100%);
		min-height: 100vh;
		margin-top: 0px;
		padding: 80px 0px 60px 0px;
		background-size: 100%;
		background-position: 100% 0%;
	}

	.valorix-full-bg.typ {
		background-image: url('../img/typ.jpg');
		background-size: cover;
		background-position: 45%;
		min-height: calc(100vh - 100px);
	}

	.valorix-full-bg.error {
		background-image: url('../img/error.jpg');
		background-size: cover;
		background-position: 45%;
		min-height: calc(100vh - 150px);
	}

	.valorix-full-bg.lp {
		background-image: url('../img/lp-md.jpg');
		background-size: cover;
		margin-top: 60px;
		/* background-position: 50%; */
		min-height: calc(100vh - 130px);
	}
}

@media (min-width: 580px) {

	a.link {
		font-size: 16px;
	}

	#porque p {
		font-size: 16px;
	}

	.container {
		padding: 0px;
	}
}

@media (min-width: 767px) {

	.valorix-img {
		width: 100%;
		max-width: 434px;
	}

	.valorix-full-bg p {
		font-size: 20px;
	}

	form {
		padding: 0px 30px 0px 0px
	}

	.valorix-full-bg.typ h1 {
		line-height: 55px;
	}

	.valorix-full-bg.typ h1 span {
		font-size: 45px;
	}

	.valorix-full-bg h1 {
		font-size: 45px;
		line-height: 50px;
	}

	.valorix-full-bg {
		margin-top: 0px;
		background-size: auto;
		margin-top: 35px;
		background-size: 100%;
		background-position: 80% 0%;
	}

}

@media (min-width: 768px) {
	.valorix-full-bg.lp {
		background-image: url('../img/lp-md.jpg');
		background-size: cover;
		margin-top: 110px;
		background-position: 0% 20%;
		min-height: calc(100vh - 130px);
	}
}


@media (min-width: 992px) {

	.valorix-full-bg.lp {
		background-image: url('../img/lp.jpg');
		background-position: 50%;
		margin-top: 60px;
	}

	h2 {
		font-size: 36px;
	}

	.valorix-full-bg {
		margin-top: 0px;
		min-height: 100vh;
		padding: 100px 0px 80px 0px;
		background-size: 100%;
		background-position: 0% 0%;
	}

	.valorix-full-bg h1 {
		font-size: 65px;
		line-height: 66px;
	}

	iframe#mapa {
		border: 0;
		width: 100%;
		min-height: 100%;
		padding: 0px;
	}

	#contacto {
		height: 485px;
	}
}

@media (height: 1024px) and (width: 768px) {
	.valorix-full-bg {
		background-size: 130%;
		background-position: 100% 0%;
		min-height: calc(100vh - 100px);
	}
}

@media (min-height: 900px) and (max-width: 991px) {
	.valorix-full-bg.lp {
		background-image: url('../img/lp-md-900.jpg');
	}
}

@media (min-height: 700px) and (min-width: 580px) {
	.valorix-full-bg {
		background-size: 120%;
		background-position: 60% 10%;
	}
}





/*
     FILE ARCHIVED ON 16:25:21 Jan 17, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 03:00:20 Dec 12, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.758
  exclusion.robots: 0.057
  exclusion.robots.policy: 0.045
  esindex: 0.011
  cdx.remote: 36.241
  LoadShardBlock: 194.64 (3)
  PetaboxLoader3.datanode: 137.934 (4)
  PetaboxLoader3.resolve: 611.762 (3)
  load_resource: 560.625
*/