:root{
	--rojo-mareabrava : #E24839;
	--azul-mareabrava : #1F3C84;
	--amarillo-mareabrava : #F8B133;
}
::-webkit-scrollbar {
    display: none;
}
body{
	padding: 0;
	margin: 0;
	height: 100vh;
	font-size: 1rem;
}
main{
	width: 100%;
	height: 100%;
	background-image: url("../Images/fondo1.webp");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: 50% 50%;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.principal-selector{
	background: linear-gradient(45deg, rgba(226, 72, 57, 0.75), rgba(248, 177, 51, 0.75));
    width: 100%;
    height: 100vh;
    overflow: scroll;
}
.info{
    display: flex;
    flex-direction: row;
    margin-left: 1rem;
	margin-top: 1rem;
    align-items: center;
}
.info span{
    background: #FFFFFF;
    color: var(--rojo-mareabrava);
    font-size: 3rem;
    padding: .5rem;
    border-radius: 8rem;
}
.info-texto{
    color: #FFFFFF;
    margin-left: 1rem;
}
.info p{
    font-family: "Bebas neue";
    letter-spacing: 1px;
    font-weight: 500;
	margin: 0;
}
.opciones{
	width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
	overflow: scroll;
}
.opcion{
	font-family: "Bebas neue";
    letter-spacing: 1px;
    font-size: 2rem;
}
.selector{
	display: flex;
    flex-direction: column;
    justify-content: start;
    width: 50%;
    margin-left: 25%;
	overflow: hidden;
    min-height: 30rem;
	height: 100%;
}
.pagination{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	padding: 15px 20px;
	font-family: "Bebas neue";
}
.pagination .number{
	width: 28px;
	height: 28px;
	text-align: center;
	line-height: 28px;
	border-radius: 50%;
	background: #00AAEE;
	color: #FFFFFF;
	font-size: 15px;
}
.pagination .bar{
	width: 50px;
	height: 4px;
	background: #00AAEE;
	border-radius: 5px;
}
.pagination .back{
	width: 6rem;
    height: 2rem;
    background: rgb(200, 200, 200, .5);
    color: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: .5rem;
    font-family: "Bebas neue";
    font-size: 1rem;
    letter-spacing: 1px;
	transition: color 0.3s ease;
	display: none;
}
.pagination .back:hover{
    background: rgb(200, 200, 200, .8);
    color: #111111;
}
.pagination .active ~ div{
	background: #DDDDDD;
	color: #111111;
}
.steps{
	width: 200%;
	display: flex;
	max-height: 80vh;
	transition: all 300ms ease-in-out;
}
.steps .step{
	width: 98vw;
	max-width: 98vw;
	padding: 5px 15px 15px;
}
.cabecera{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.cabecera .c-titulo{
	font-family: "Bebas neue";
    color: #FFFFFF;
    font-size: 3.4rem;
}
.cabecera .sub-titulo{
	font-family: "Bebas neue";
    color: #DDDDDD;
    font-size: 1.1rem;
}
.opcion{
	width: 15rem;
    height: 15rem;
    border-radius: 1rem;
    border: none;
	transition: transform 0.3s ease;
	cursor: pointer;
}
.opcion:hover{
    box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.5);
	transform: scale(1.1);
}
.opcion-info{
	display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 15rem;
}
.opcion-rol{
	display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 15rem;
}
.opcion-rol span{
	background: var(--rojo-mareabrava);
    color: #FFFFFF;
    font-size: 3rem;
    padding: .5rem;
    border-radius: 8rem;
}
.opcion-nombre{
	font-family: 'Bebas Neue';
    font-size: 2rem;
}
.direction{
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	width: 81%;
}
.direction label{
	font-family: 'Bebas Neue';
    letter-spacing: 1px;
    color: #555555;
	font-size: .9rem;
}
.contenedor-principal{
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(45deg, rgba(226, 72, 57, 0.75), rgba(248, 177, 51, 0.75));
	width: 100%;
	height: 100%;
}
.contenedor-secundario{
	width: 30rem;
    height: 30rem;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    flex-direction: column;
	box-shadow: 15px 15px 10px rgba(0, 0, 0, .7);
	border-radius: 1rem;
}
.contenedor-secundario img{
	width: 50%;
}
form{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.contenedor-formulario{
	display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
	width: 100%;
	height: 100%;
}
.titulo{
	font-family: "Bebas Neue";
	font-weight: 300;
	letter-spacing: .5px;
	font-size: 3rem;
}
.texto_simple{
	font-family: "Bebas Neue";
	font-weight: 300;
	letter-spacing: .5px;
	font-size: 1rem;
}
.error-text{
	color: var(--rojo-mareabrava);
}
.contenedor-formulario input{
	width: 70%;
    border-radius: .5rem;
    border: 1px solid #999;
    font-size: 1rem;
    padding: 0.5rem;
    padding-left: 1.5rem;
    outline: none;
}
.contenedor-formulario button{
	width: 70%;
    background: var(--azul-mareabrava);
    border-radius: .5rem;
    color: #FFFFFF;
    font-size: 1rem;
    border: none;
    padding: .7rem;
}
.contenedor-formulario button:hover{
	background: #0F2C74;
}
@media(max-width:768px){
	.info span{
		font-size: 2rem;
	}
	.titulo{
		font-size: 2rem;
	}
	.cabecera .c-titulo{
		font-size: 2rem;
	}
	.opcion{
		width: 10rem;
		height: 10rem;
	}
	.opcion-info{
		height: 10rem;
	}
	.opcion-rol{
		height: 10rem;
	}
	.opcion-rol span{
		font-size: 1.4rem;
	}
	.opcion-rol label{
		font-size: 1.4rem;
	}
	.opcion-nombre{
		font-size: 1.4rem;
	}
	.direction{
		display: none;
	}
	.selector{
		width: 95%;
		margin-left: 2.5%;
	}
	.contenedor-puesto{
		width: 6rem;
		min-width: 6rem;
		height: 6rem;
	}
	.contenedor-puesto span{
		font-size: 3rem;
		padding: .5rem;
	}
	.contenedor-puesto label{
		font-size: .8rem;
	}
	.contenedor-secundario{
		width: 90%;
        height: 24rem;
	}
	body{
		height: 100vh;
	}
	
}
@media(min-width: 769px) and (max-width: 1440px){
	.info span{
		font-size: 2rem;
	}
	.titulo{
		font-size: 2rem;
	}
	.cabecera .c-titulo{
		font-size: 2rem;
	}
	.opcion{
		width: 10rem;
		height: 10rem;
	}
	.opcion-info{
		height: 10rem;
	}
	.opcion-rol{
		height: 10rem;
	}
	.opcion-rol span{
		font-size: 2rem;
	}
	.opcion-rol label{
		font-size: 1.4rem;
	}
	.opcion-nombre{
		font-size: 1.4rem;
	}
	.direction label{
		font-size: .6rem;
	}
    .contenedor-imagen{
		height: 25rem;
		width: 25rem;
	}
	.contenedor-secundario{
		height: 25rem;
		width: 25rem;
	}
}
