@charset "utf-8";
/* CSS Document */

/* plus-jakarta-sans-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Plus Jakarta Sans';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/plus-jakarta-sans-v12-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	url('fonts/plus-jakarta-sans-v12-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* plus-jakarta-sans-600 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Plus Jakarta Sans';
	font-style: normal;
	font-weight: 600;
	src: url('fonts/plus-jakarta-sans-v12-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	url('fonts/plus-jakarta-sans-v12-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* plus-jakarta-sans-700 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Plus Jakarta Sans';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	url('fonts/plus-jakarta-sans-v12-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}



::-moz-selection { /* Code for Firefox */
	color: #FFF;
	background: #2799BF;
}
::selection {
	color: #FFF;
	background: #2799BF;
}

*, *::before, *::after {
	box-sizing: border-box;
}

body
{
	font-family: "Plus Jakarta Sans";
	overflow: auto;
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #042C4F;
	background-color: #f3f3f3;
}

a {
	color: #666;
	text-decoration: none;
}

.flex
{
	display: flex;
}
.col-izq
{
	width: 25%;
	background-color: #17132A;
	height: 100vh;
	padding: 40px;
}

.col-der{
	width: 75%;
	height: 100vh;
	background-image: url(fondo.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: bottom right;
	min-height: 650px;
	padding: 40px 140px 140px 140px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#logo
{
	margin-bottom: 32px;
}
.titulo{
	color: #FFF;
	text-align: center;
	font-family: "Plus Jakarta Sans";
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 100px 0 65px;
}
.texto{
	color: #FFF;
	text-align: center;
	font-family: "Plus Jakarta Sans";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; /* 150% */
}

.bloque
{
	padding-top: 40px;
	padding-bottom: 50px;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 20px;
	background: #FFF;
	box-shadow: 5px 10px 70px 0 rgba(183, 186, 195, 0.20);
	position: relative;
	width: 350px;
	height: 260px;
}
.bloque-imagen{
	position: absolute;
	top: -55px;
	left: 0;
}
.texto-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.bloque-titulo{
	color: #17132A;
	font-family: "Plus Jakarta Sans";
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 10px 0;
}
.subtitulo {
	display: block;
	font-size: 22px;
}
.bloque-texto{
	color: #666;
	font-family: "Plus Jakarta Sans";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px; /* 138.889% */
}

@media only screen and (max-width: 991px)
{
	.col-izq{
		width: 40%;
	}
	.col-der{
		width: 60%;
		flex-direction: column;
		padding: 110px 40px;
		gap: 80px;
	}
	.col-izq,
	.col-der {
		height: auto;     /* que crezca según el contenido */
		min-height: unset; /* limpiar si lo pusiste antes */
	}
}

@media only screen and (max-width: 575px)
{
	.flex
	{
		flex-direction: column;
	}
	.col-izq{
		width: 100%;
		padding-bottom: 62px;
	}
	.col-der{
		width: 100%;
	}
	.titulo {
		margin-top: 30px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px)
{
	.col-izq{
		width: 40%;
	}
	.col-der{
		width: 60%;
		flex-direction: column;
		padding: 170px 40px;
		gap: 80px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px)
{
	.col-der {
		padding: 40px 20px 140px 20px;
	}
	.bloque {
		width: 220px;
		height: 170px;
	}
	.titulo {
		font-size: 25px;
		margin: 30px 0 50px;
	}
	.texto {
		font-size: 16px;
	}
	.bloque-titulo {
		font-size: 16px;
	}
	.bloque-texto {
		font-size: 14px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1599px)
{
	.col-der {
		padding: 40px 20px 140px 20px;
	}
	.bloque {
		width: 300px;
	}
	.titulo {
		font-size: 25px;
		margin: 30px 0 50px;
	}
	.texto {
		font-size: 16px;
	}
}

@media only screen and (min-width: 1600px) and (max-width: 1919px)
{
	.col-der {
		padding: 40px 20px 140px 20px;
	}
}