@font-face {
	font-family: "Bebas Neue";
	src: url("../assets/fonts/BebasNeue-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

::-webkit-scrollbar {
	width: 10px; /* Ancho de la scrollbar */
}
::-webkit-scrollbar-track {
	background: #bdbdbd; /* Gris claro */
}
::-webkit-scrollbar-thumb {
	background-color: #2a007d; /* Azul fuerte */
	border-radius: 0px; /* Cuadrada */
}

body {
	margin: 0;
	padding: 0;
	font-family: Helvetica, Arial;
	transition: background 0.5s;
	align-items: center;
	background-color: #eaeaea;
}

.team-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #f5b915;
	height: 250px;
	margin-top: 93px;
	border-bottom: 4px solid #9a9a9a;
	flex-wrap: wrap;
}

.team-header__title {
	flex: 1 1 400px;
	margin: 0 90px;
	font-size: 25px;
	color: #000000;
}

.team-header__image {
	flex: 1 1 400px;
	margin: 0;
	height: 100%;
}

.team-header__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
	mask-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 1) 70%
	);
}

@media (max-width: 980px) {
	.team-header__image {
		display: none;
	}

	.team-header {
		background: linear-gradient(
				rgba(245, 185, 21, 0.85),
				rgba(245, 185, 21, 0.85)
			),
			url("../assets/images/otros/equipo-h1.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		height: 200px;
		margin-top: 70px;
	}

	.team-header__title {
		width: 100%;
		margin-left: 30px;
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.team-header {
		height: 100px;
	}

	.team-header__title {
		font-size: 12px;
	}
}

/*###########################################
#                  FOOTER                   #
###########################################*/

.footer {
	width: 100%;
	border-top: 4px solid #f5b915;
	height: 250px;
	background-color: #333;
	color: #fff;
	position: relative;
	text-align: center;
}

.footer__team-name {
	font-family: "Bebas Neue", sans-serif;
	font-size: 24px;
}

.footer__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer__nav li {
	display: inline;
	margin: 0 20px;
}

.footer__nav a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
}

.footer__nav a:hover {
	color: #ffaf2b;
	text-decoration: underline;
}

.footer__copy {
	font-size: 14px;
	margin-top: 30px;
}

.footer__social {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	gap: 15px;
}

.footer__social a img {
	width: 30px;
	height: 30px;
}

.footer__badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.footer__badge-img {
	height: 40px;
	width: auto;
}

.footer__sponsors {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	gap: 50px;
}

.footer__sponsor-logo {
	height: 40px;
	object-fit: contain;
}

@media (max-width: 768px) {
	.footer {
		height: auto;
		padding-bottom: 80px; /* más espacio por si se reubican los elementos */
	}

	.footer__nav li {
		display: block;
		margin: 10px 0;
	}

	.footer__sponsors {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.footer__social,
	.footer__badge {
		position: static;
		margin-top: 20px;
		justify-content: center;
	}

	.footer__social {
		display: flex;
	}

	.footer__badge-img {
		height: 60px;
	}

	.footer__content {
		padding-bottom: 0;
	}
}

@media (max-width: 480px) {
	.footer__team-name {
		font-size: 20px;
	}

	.footer__nav a {
		font-size: 14px;
	}

	.footer__sponsor-logo {
		height: 30px;
	}

	.footer__copy {
		font-size: 12px;
	}

	.footer__social a img {
		width: 25px;
		height: 25px;
	}
}


