@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
:root{
	--deg: #00345F;
	--deg2: #027BE4;
	--azul: #00345F;
	--azul2: #027BE4;
	--morado: #660EFF;
	--rosa: #DA0080;
	--light: #C8E8F8;
	--amarillo: #FFFF00;
}
body{
    max-width: 1266px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}
section{
	padding: 30px 20px;
}
h1{
	margin: 0;
    font-size: 18pt;
}
h1 strong{
	color: var(--amarillo);
}
h2{
	margin-top: 0;
    font-size: 20px;
    color: var(--azul2);
}
h3{
	margin: 0;
	font-size: 13pt;
}
h4{
	margin: 0 0 5px;
    font-size: 14pt;
    margin-bottom: 10px;
}
h5{
	font-size: 14pt;
	margin: 0;
}
h5 strong{
	color: var(--amarillo);
}
p{
	font-size: 11pt;
	margin: 0;
}
label{
	font-size: 10pt;
}
.flex{
	display: flex;
	grid-gap: 0 15px;
    align-items: center;
}
.secform{
	display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
    background: url(../img/fondo-desk-hot-sale.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    color: #fff;
    border-radius: 10px;
    margin: 25px 0;
}
/* Estilo para el campo enfocado (cuando el usuario interactúa con él) */
.focused-field {
    border: 2px solid #ff0000;  /* Borde rojo */
    background-color: #FFF5E6;   /* Fondo suave */
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);  /* Sombra para resaltar */
}

/* Estilo para los campos invalidos (vacíos o con error) */
.invalid-input {
    border: 2px solid red;
}
form{
    color: #fff;
    padding: 20px;
}
form .subtitle{
	border-bottom: 1px solid #fff;
	margin: 10px 0 5px;
}
select, input{
	width: -webkit-fill-available;
    font-size: 12pt;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid var(--gris);
}
.center{
	text-align: center;
}
.grid2{
	display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
    align-items: start;
}
.grid3{
	display: grid;
    grid-template-columns: 32% 32% 32%;
    justify-content: space-between;
}
.terminos{
	display: grid;
    grid-template-columns: 20px 80%;
    justify-content: center;
    grid-gap: 0 5px;
    margin-bottom: 10px;
}
.terminos p, .xs-text{
	font-size: 8pt;
}
button, .btn{
	width: 200px;
	height: 40px;
	border: 1px solid #fff;
	color: #fff;
	font-size: 14pt;
	background: var(--rosa);
	border-radius: 5px;
	cursor: pointer;
}
.btn{
	border-color: var(--rosa);
}
button:hover{
	background: #FA00C8;
}
button:active, button:focus{
	background: #96007D;
}
.w80{
	width: 80%;
	margin: 0 auto;
}
.b-bottom{
	border-bottom: 4px solid var(--morado);
}
.bg-light{
	background: var(--light);
	border-radius: 10px;
}
.grid-aseguradoras img{
	object-fit: fill;
    width: -webkit-fill-available;
}
.b-right{
	border-right: 3px solid var(--morado);
	padding-right: 8px;
}
.grid-gap{
	grid-gap: 40px 0;
}
.grid-gap .flex{
	align-items: flex-start
}
.footer{
	background: var(--azul);
    display: flex;
    grid-gap: 40px;
    justify-content: space-between;
    text-align: center;
    padding: 15px 40px;
    align-items: center;
}
.footer p, .footer a{
	color: #fff;
	font-size: 9pt;
}
.movil{
	display: none;
}
.bannTemp{
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	display: grid;
	grid-template-columns: 45% 50%;
	padding: 10px;
	margin-left: 50px;
}
#img{
	position: absolute;
    width: 300px;
    margin-left: -176px;
    margin-top: -18px;
}
.temporizador{
	display: flex;
    grid-gap: 15px;
    justify-content: center;
    margin: 20px 0 0;
}
.temporizador span{
	width: 60px;
    font-size: 25pt;
    font-weight: 500;
    background: #E20613;
    height: 60px;
    border-radius: 5px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.temporizador p{
	font-size: 8pt;
    margin: 4px 0 0;
    font-weight: 600;
    text-align: center;
}
.temporizador i{
	font-style: normal;
    font-size: 30px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}
@media(max-width: 820px){
	.movil{
		display: block;
	}
	section{
		padding: 20px;
	}
	form{
		padding: 0;
	}
	.secform {
	    grid-template-columns: 100%;
	    background: linear-gradient(var(--deg), var(--deg2));
	    border-radius: 0;
	    margin: 0;
	    grid-gap: 45px 0;
	}
	#img{
		width: -webkit-fill-available;
		position: initial;
		margin-left: 0;
		margin-top: 0;
	}
	.grid2, .grid3, .grid5{
		grid-template-columns: 100%;
	} 
	.terminos {
	    grid-template-columns: 20px 92%;
	}
	.grid3-movil{
		grid-template-columns: 32% 32% 32%;
	}
	.w80, .w90{
		width: 100%;
	}
	.flex-movil2{
		flex-direction: column-reverse;
		grid-gap: 40px 0;
	}
	.footer {
	    flex-direction: column;
	    grid-gap: 20px;
	}
	.bg-light{
		border-radius: 0;
	}
	.bannTemp {
		background: transparent;
		border-radius: 0;
		grid-template-columns: 100%;
		padding: 0;
		margin-left: 0;
	}
	.bg-movil{
		margin: 10px -20px 0;
		background: rgba(0, 0, 0, 0.5);
		padding: 20px 0;
	}
}
.btn-slide{
    margin: 15px 0;
    background: transparent!important;
}
.spans{
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 5px;
}
.w3-badge {
    height: 15px;
    width: 15px;
    padding: 0;
    display: flex;
    border-radius: 100%;
    border:1px solid #7D7D7D;
    background: transparent;
}
.white{
    background: #7D7D7D!important;
    width: 25px !important;
    border-radius: 15px !important;
}