@charset "utf-8";

/* =========================
   RESET
========================= */
*{
	box-sizing:border-box;
	margin:0;
	padding:0;
}

body{
	font-family:font1, Arial, sans-serif;
	background:#071c29;
}

/* =========================
   FONTS
========================= */
@font-face {
	font-family:"font1";
	src:url("/fonts/1.ttf") format("truetype");
	font-display:swap;
}
@font-face {
	font-family:"font2";
	src:url("/fonts/2.ttf") format("truetype");
	font-display:swap;
}
@font-face {
	font-family:"font3";
	src:url("/fonts/3.ttf") format("truetype");
	font-display:swap;
}
@font-face {
	font-family:"font4";
	src:url("/fonts/4.ttf") format("truetype");
	font-display:swap;
}
/* =========================
   HERO
========================= */
.tabla {
	width:100%;
	min-height:100vh;
	background-image:url("../img/banerh.webp");
	background-size:cover;
	background-position:center;
	padding-bottom:40px;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}

/* =========================
   TEXTOS (FIX MOBILE)
========================= */
h1{
	font-size: clamp(22px, 5vw, 25px);
	line-height: clamp(26px, 5.5vw, 40px);
	letter-spacing:0.5px;
	color:#fff;
	margin-bottom:15px;
	font-family: font4;
}

h2{
	font-size: clamp(16px, 2.8vw, 20px);
	line-height:1.4em;
	color:#fff;
	margin-bottom:15px;
	letter-spacing: 0.1vw;
}
p{
	font-size: clamp(14px, 1.5vw, 16px);
	line-height:1.5em;
	color:#fff;
}
h3{
	font-family: font3;
	font-size: clamp(18px, 2.8vw, 25px);
	line-height: clamp(22px, 3.1vw, 35px);
	color:#fff;
	margin: 50px;
	letter-spacing: 0.1vw;
	margin: 0% 5% 0% 5%;
}
h4{
	font-family: font2;
	font-size: clamp(14px, 1.8vw, 15px);
	color:#fff;
	letter-spacing: 0.1vw;
	padding: 3%; 
	background-color: #000; 
	border-radius: 10px; 
}
.colortextnegro {
	color: #000;
}
.titulo-seccion{
font-family: font3;
	font-size: clamp(20px, 3vw, 28px);
	line-height:1.4em;
	color:#fff;
	margin: 0 auto 20px auto;
	max-width:600px;
	text-align:center;
}
.plan-item{
    margin-bottom:25px;
    text-align:left;
}
.plan-titulo{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:8px 16px;
    border-radius:10px;
    margin-bottom:8px;
    font-size: clamp(14px,1.5vw,18px);
}

.plan-item p{
    margin:0;
    line-height:1.8em;
    font-size: clamp(13px,1.4vw,16px);
}
.bloque-beneficios{
	padding:40px 20px;
}
.promo{
	font-weight:600;
	line-height:1.6em;
	margin-bottom:2%;
	color: #000;

}
.bloque-beneficios h2{
	margin-bottom:20px;
}

.bloque-beneficios ul{
	font-size:18px;
}


/* =========================
   FORM
========================= */
input, 
textarea,
select{
	width:60%;
	max-width:400px;
	padding:1.5vw 0vw 1.5vw 1vw;
	margin:12px auto;
	display:block;
	border-radius:12px;
	border:0;
	font-size: clamp(14px, 1.1vw, 16px);
	font-family: font3;
}
input::placeholder,
textarea::placeholder{
	color:#000;
	opacity:1;
}

/* =========================
   BOTON CTA
========================= */
.botonform {
	display:block;
	width:40%;
	max-width:400px;
	margin:20px auto;
	padding:1.5vw;
	font-size: clamp(12px, 1.5vw, 14px);
	font-family:font4;
	background:#5A47FF;
	color:#fff;
	border-radius:12px;
	border:0;
	cursor:pointer;
	transition:0.3s;
}

.botonform:hover{
	transform:scale(1.03);
}

/* =========================
   LAYOUT
========================= */
.div30{
	width:33%;
	float:left;
	padding:5%;
	text-align:left;
	color: #fff;
	font-family: font1;
	font-size: clamp(12px, 1.2vw, 16px);
	line-height: 150%;

}
.div40{
	width:40%;
	float:left;
	padding-top:5%;
	text-align:center;
}

.div60{
	width:60%;
	float:left;
	text-align:center;
}

.div100{
	width:100%;
	float:left;
	padding:40px 20px;
	text-align:center;
}
.seo-oculto{
position:absolute;
left:-9999px;
height:1px;
width:1px;
overflow:hidden;
}


/* =========================
   IMG SIZE
========================= */
#planes img{
	width:25%;
	float:left;
	margin-left:6%;
}
#home img{
	width:60%;
	float:left;
	margin-left:20%;
}


.vistah{
	display:block;
	}

	.vistav{
	display:none;
	}

/* =========================
   MOBILE
========================= */
@media screen and (max-width:1000px){

	.tabla{
		min-height:auto;
	}

	.div40,
	.div60{
		width:100%;
	}

	h1{
		text-align:center;
	}

	input,
	select{
		width:90%;
	}

	#planes img{
		width:90%;
		margin:5% auto;
		float:none;
		display:block;
	}

	.vistah{
		display:none;
	}

	.vistav{
		display:block;
	}

	/* =========================
   LAYOUT
	========================= */
	.div30{
		width:100%;
		float:left;
		padding:1%;
		text-align:left;
		color: #fff;
		font-family: font1;
		font-size: clamp(18px, 2.8vw, 34px);
		line-height: 150%;

	}

	/* =========================
   FORM
	========================= */
	input, 
	textarea,
	select{
		width:80%;
		max-width:400px;
		padding:6vw 0vw 6vw 2Vw;
		margin:12px auto;
		display:block;
		border-radius:12px;
		border:0;
		font-size: clamp(18px, 2.3vw, 30px);
		font-family: font3;
	}
	input::placeholder,
	textarea::placeholder{
		color:#000;
		opacity:1;
	}
	
	/* =========================
	BOTON FORM
	========================= */
	.botonform {
		display:block;
		width:80%;
		max-width:400px;
		margin:20px auto;
		padding:4vw;
		font-size: 18px;
		font-family:font4;
		background:#5A47FF;
		color:#fff;
		border-radius:12px;
		border:0;
		cursor:pointer;
		transition:0.3s;
	}

	.botonform:hover{
		transform:scale(1.03);
	}

		
	/* =========================
	IMG SIZE
	========================= */
	#planes img{
		width:100%;
		float:left;
	
	}
	#home img{
	width:80%;
	float:none;
	display:block;
	} 
	#whatsapp-widget{
	bottom:90px;
	right:10px;
	}

	/* =========================
   MOBILE FIX REAL
	========================= */

	@media (max-width:768px){

		 header{
			padding-top:20px;
			overflow:hidden;
		}

		header h1{
			margin-top:0 !important;
		}

		header h2{
			margin-top:10px !important;
		}
		.tabla{
			display:block !important;
			float:none !important;
		}

		.div60,
		.div40,
		.div30,
		.div50,
		.div100{
			width:100% !important;
			float:none !important;
			display:block !important;
		}

		/* HEADER */
		#home img{
			max-width:220px;
			margin:20px auto;
			display:block;
		}

		/* TITULOS */
		h1{
			font-size:22px !important;
			padding:0 15px;
		}

		h2{
			font-size:16px !important;
			padding:0 15px;
		}

		/* FORM */
		#form1{
			padding:0 15px;
		}

		input,
		select,
		textarea,
		.botonform{
			width:90% !important;
			box-sizing:border-box;
		}

		/* IMAGENES */
		img{
			max-width:100% !important;
			height:auto !important;
		}

		body{
			overflow-x:hidden;
		}

	}

}
