@charset "utf-8";

#portada {
	width: 100%;
	padding:180px 0 60px;
	background: var(--negro);
}
#portada main {
	color: var(--blanco);
	text-align: center;
	z-index: 3;
}
#portada main * {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#portada main h1 {
	margin: 0 auto 42px;
	z-index: 9;
}
#portada main p {
	padding:0 42px;
}
#portada .marcas {
	padding:42px 0 0;
}
#portada .marcas a {
	font-size: 1.5em;
	color: var(--blanco);
	display: block;
	margin: 0 0 9px;
}
#portada .marcas a:last-child {
	margin: 0;
}
#portada .marcas a:hover {
	color: var(--amarillo);
	text-decoration: underline;
}
#portada .fondo {
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	overflow: hidden;
	z-index: 1;
}
#portada .fondo img {
	width: 102%;
	height:102%;
	object-fit: cover;
	opacity: 0.3;
}

.portaCatalogos {
	padding:60px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 48px 60px;
	text-align: center;
}
.portaCatalogos.esp {
	padding:120px 0 60px;
}
.portaCatalogos .box {
	width: calc(33.3% - 60px);
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.portaCatalogos .box:nth-child(2n) {
	animation-delay: 1.2s;
}
.portaCatalogos .box .imagen {
	width: calc(100% - 60px );
	aspect-ratio: 1/1.3;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
.portaCatalogos .box .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.9s ease-in-out;
}
.portaCatalogos .box .imagen a:hover img {
	transform: translate(-50%,-50%) scale(1.2);
}
.portaCatalogos .box h2 {
	font-size: 1.2em;
	padding:18px 0 3px;
}
.portaCatalogos .box p {
	font-size: 0.8em;
}

.portaCatalogos .noResultados {
	color: var(--gris);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

#fotos {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: stretch;
	justify-content: center;
	padding:60px 0 0;
}
#fotos .box {
	width: calc(25% - 12px);
	aspect-ratio: 1/0.7;
	position: relative;
	overflow: hidden;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#fotos .box:nth-child(2n) {
	animation-delay: 1.2s;
}
#fotos .box:nth-child(6n - 3),
#fotos .box:nth-child(6n - 2) {
	width: calc(50% - 9px);
	aspect-ratio: 1/0.5;
}
#fotos .box img {
	width: 102%;
	height:102%;
	object-fit: cover;
}

.portaBtns {
	padding:60px 15% 75px;
}

@media screen and (max-width:666px) {
	
	#portada {
		padding:150px 0 48px;
	}
	#portada main h1 {
		margin: 0 auto 36px;
	}
	#portada main p {
		padding:0 24px;
	}
	#portada .marcas {
		padding:36px 0 0;
	}
	#portada .marcas a {
		font-size: 1.3em;
	}

	.portaCatalogos {
		padding:48px 0;
		gap: 42px 0;
		justify-content: space-between;
	}
	.portaCatalogos.esp {
		padding:60px 0 48px;
	}
	.portaCatalogos .box {
		width: calc(50% - 12px);
	}
	.portaCatalogos .box .imagen {
		width: calc(100% - 30px );
	}
	.portaCatalogos .box h2 {
		font-size: 1.1em;
	}

	#fotos {
		gap: 24px;
		padding:48px 0 0;
	}
	#fotos .box {
		width: calc(50% - 12px);
		aspect-ratio: 1/1;
	}
	#fotos .box:nth-child(6n - 3),
	#fotos .box:nth-child(6n - 2) {
		width: 100%;
		aspect-ratio: 1/0.5;
	}

	.portaBtns {
		padding:24px 15px 60px;
	}
	
}