* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat.ttf");
}

:root {
	--black: #141416;
	--blue: #195481;
	--light-blue: #3e9ae3;
	--grey: #93969938;

	--very-dark-cyan: hsl(192, 100%, 9%);
	--very-pale-blue: hsl(207, 100%, 98%);

	--padding-container: 80px 0;
}

Body {
	font-family: "Montserrat";
}
/* Header */
.head {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 110px;
	background: var(--black);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 50px;
	transition: top 0.4s ease-in-out;
	z-index: 1000;
}

/* Ocultar menú en scroll hacia abajo */
.head.hidden {
	top: -110px;
}

.head__figure {
	width: 100%;
	max-width: 250px;
}

.head__logo {
	width: 100%;
	display: block;
}

/* Nav */
.head__menu {
	display: flex;
	gap: 20px;
}

.head__menu a {
	padding: 5px;
	color: white;
	text-decoration: none;
	font-family: "Montserrat";
	font-size: 18px;
	font-weight: 300;
	margin: 10px auto;
	letter-spacing: 0.05em;
	transition: background 0.3s;
}

.head__menu a:hover {
	color: var(--light-blue);
}

/* Botón Menu */
.head__menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.head__menu-toggle div {
	width: 30px;
	height: 4px;
	background: white;
	margin: 5px 0;
}
/* Fin Nav */

/* RESPONSIVE HEAD*/
@media (max-width: 1100px) {
	.head__menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 120px;
		left: 0;
		width: 100%;
		background: #333;
		text-align: center;
		padding: 10px 0;
	}

	.head__menu.show {
		display: flex;
	}

	.head__menu a {
		padding: 10px;
	}

	.head__menu-toggle {
		display: flex;
	}
}
/* Fin Header */

/* Estilos comunes */
.title__tema {
	margin-top: 90px;
	font-size: 2.6rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-align: center;
}
.title__tema__separator {
	max-width: 200px;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid var(--light-blue);
}

.subtitle__tema {
	font-size: 20px;
	margin: 20px auto;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--blue);
}

.paragraph {
	max-width: 1020px;
	line-height: 1.2;
	font-family: "Montserrat";
	font-weight: 400;
	font-size: 19px;
	text-align: center;
	padding-bottom: 20px;
}
/* Fin Estilos comunes */

/* Secciones */
.seccion {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
}

/* RESPONSIVE Valores*/
@media (max-width: 900px) {
	.seccion {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		align-content: center;
		flex-wrap: wrap;
	}
}

/* Seccion Inicio */
.seccion__inicio {
	background: url("../images/inicio_fondo.png") no-repeat center center/cover;
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden; /* Evita desbordamientos */
}
.seccion__inicio__video {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ajusta el video sin perder proporción */
}
/* Fin Inicio */

/* Seccion Nosotros */
.seccion__nosotros {
	margin: 0;
	background: var(--grey);
}

.solutec__container {
	width: 100%;
	min-height: 60vh;
	background: rgb(255, 255, 255);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.solutec__subtitle {
	margin: 20px 10px;
	font-size: 22px;
	letter-spacing: 0.02em;
	font-weight: 500;
	text-align: center;
}

.solutec__paragraph {
	max-width: 280px;
	margin: 0px 10px;
	max-width: 1020px;
	line-height: 1.2;
	font-family: "Montserrat";
	font-weight: 400;
	font-size: 19px;
	text-align: center;
}

.valores__container {
	width: 100%;
	min-height: 35vh;
	padding: 0px 10px 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
}

.valores__card {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.valores__img {
	max-width: 100px;
	display: block;
	margin: 0 auto;
}

.valores__card__title {
	font-family: "Montserrat";
	font-size: 20px;
	font-weight: 600;
	color: black;
}

.valores__paragraph {
	max-width: 280px;
	margin: 0px auto;
	line-height: 1.2;
	font-size: 16px;
	text-align: center;
}
/* FIN Nosotros */

/* Seccion Servicios */
.seccion__servicios {
	background: rgb(255, 255, 255);
}

.servicios__container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
}
.servicios__container__articles {
	width: 90%;
	max-width: 1000px;
	margin-bottom: 10px;
	padding: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
}

.servicios__article {
	width: 460px;
	margin-bottom: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
}

.servicios__article__img {
	max-width: 100px;
	display: block;
	margin: 0px auto;
}

.servicios__article__texto {
	width: 100%;
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.servicios__article__title {
	font-size: 17px;
	font-weight: 600;
	color: black;
}

.servicios__article__ul {
	max-width: 400px;
	margin: 0px;
	list-style-type: none;
	font-size: 16px;
	text-align: left;
}
/* Fin Seccion Servicios */

/* Seccion Bolsa de Trabajo */
.seccion__bolsatrabajo {
	background-color: var(--grey);
	background-image: url("../images/bolsadetrabajo_fondo.png");
	background-repeat: no-repeat;
	background-position: center cover;
	background-size: contain;
}

.bolsatrabajo__container {
	width: 100%;
	height: 100vh;
	max-width: 1000px;
	padding-top: 100px;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	align-content: center;
}

.bolsatrabajo__texto {
	margin: 40px auto;
}

.bolsatrabajo__subtitle {
	margin: 40px auto;
	font-size: 22px;
	letter-spacing: 0.02em;
	font-weight: 400;
	text-align: center;
}

.bolsatrabajo__botonEnviar {
	display: block;
	padding: 12px 100px;
	background-color: var(--blue);
	color: white;
	text-decoration: none;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.02em;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

/* Seccion contacto */
.seccion__contacto {
	background: rgb(0, 0, 0);
	background: url("../images/contacto_fondo.png") no-repeat center center/cover;
}

.contacto__container {
	width: 100%;
	height: 100vh;
	max-width: 1200px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	gap: 40px;
}

/* Imagen responsiva*/
.contacto__img {
	width: 100%;
	max-width: 450px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.contacto__text__container {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	align-content: left;
}
.contacto__text {
	padding-top: 30px;
	color: white;
}

.fotter__text__title {
	font-size: 24px;
	font-weight: 500;
	text-align: left;
}

.fotter__email {
	text-decoration: none;
	font-size: 22px;
	font-weight: 300;
	text-align: left;
	color: white;
}

.fotter__text__subtitle {
	font-size: 22px;
	font-weight: 300;
	text-align: left;
}

.fotter__social {
	display: flex;
	justify-content: left;
	align-items: center;
	align-content: center;
	gap: 10px;
}

.contacto__social_img {
	max-width: 50px;
	display: block;
	margin: 0 auto;
}
/* Fin contacto */
