@charset "utf-8";

/* ************************************
LADO IZQUIERDO */
#banner {
	background-color: slategrey;
	width: 100%;
	max-width: 600px;
	min-height: 472px;
	margin: 48px auto 0 auto;
}
/* ************************************
LADO DERECHO */
#productosBuscador {
	background: #F2F2F2;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	padding: 14px 42px;
	margin: 0 0 10px 0;
	border: solid 1px var(--color-placeholder);
	border-radius: 10px;
}
#productosBuscador label {
	display: block;
	width: 208px;
	height: 43px;
	position: relative;
}
#productosBuscador label::after {
	content: '';
	width: 0;
	height: 0;
	border-top: solid 7px red;
	border-right: solid 5px transparent;
	border-left: solid 5px transparent;
	position: absolute;
	right: 19px;
	margin-top: 18px;
}
#productosBuscador select {
	background: var(--color-blanco);
	font-family: Open Sans, sans-serif;
	font-size: 13px;
	color: var(--color-gris6);
	width: 208px;
	height: 43px;
	padding: 1px 50px 1px 10px;
	border: solid 1px #A9A9A9;
	appearance: none;
}
#productosBuscador option.hideOption {
	display: none;
}

#productoBajada {
	color: var(--color-gris6);
	font-size: 18px;
	display: flex;
	justify-content: flex-start;
	padding: 15px 16px 12px 0;
	hyphens: auto;
}
#productoBajada section {
	padding: 0 11px;
}
#productoBajada section:first-of-type {
	color: var(--color-negro);
	font-size: 16px;
	width: 233px;
}
#productoBajada section:last-of-type {
	width: calc(100% - 233px);
}

#espaciador {
	width: 100%;
	max-width: 1270px;
	height: auto;
	aspect-ratio: 127 / 8;
}
/* ZONA FICHAS */
.productoFichas {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(198px, 23.567%));
	column-gap: 1.5%;
	row-gap: 17px;
	padding: 18px 0;
}
.microFicha {
	background: var(--color-blanco);
	text-transform: uppercase;
	width: 100%;
	padding: 23px 21px;
	border: solid 1px var(--color-gris9);
	border-radius: 14px;
	filter: drop-shadow(0 0 4px #FFF);
	transition: all ease 500ms;
}
.microFicha h2 {
	font-size: 16px !important;
	font-weight: 500;
	line-height: 20px;
	margin: 0 0 9px 0;
}
.microFicha h2 a {
	color: var(--color-aguamarina);
	hyphens: auto;
}
.microFicha h2 a:hover {
	color: var(--color-negro);
}
.microFicha p {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	line-height: 18px;
	margin: 0 0 5px 0;
}
.microFicha hr {
	background: var(--color-amarillo);
	color: var(--color-amarillo);
	display: block;
	width: calc(100%  - 10px);
	height: 4px;
	border: none;
	margin: 11px auto 21px auto;
}
.microFichaPic { 
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 0 11px 0;
	aspect-ratio: 32 / 31;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.microFichaPic img { 
	width: 100%;
	object-fit: contain;
	opacity: 1;
	position: relative;
	z-index: 3;
	transition: all ease 500ms;
}
.microFichaPic section {
	text-transform: lowercase;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 18px;
	opacity: 0;
	border: solid 1px var(--color-amarillo);
	border-radius: 8px;
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	transition: all ease 500ms;
}
.microFichaPic section p {
	color: var(--color-gris6) !important;
}
.microFichaPic section p:first-child {
	color: var(--color-aguamarina) !important;
	text-transform: uppercase;
}

.microFichaContainer {
	padding: 0 5px;
}
.microFichaCat {
	color: var(--color-gris-medio);
	font-size: 13px;
	font-weight: 500;
}
.microFichaBoton {
	background: var(--color-rojo);
	color: var(--color-blanco);
	font-family: "Source Sans 3", sans-serif;
	display: inline-block;
	width: 100%;
	height: 41px;
	margin: 0 auto;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}
.microFichaBoton span {
	display: block;
	position: absolute;
	margin: -10px 0 0 -48.5px;
	top: 50%;
	left: 50%;
	transition: all ease 500ms;
}
.microFichaIcon {
	width: 22px;
	height: 16px;
	display: flex;
	align-items: center;
	opacity: 0;
	position: absolute;
	left: 30%;
	top: 50%;
	margin: -8px 0 0 0;
	transition: all ease-in-out 500ms;
}
.microFicha:hover {
	border-color: var(--color-aguamarina);
	filter: drop-shadow(0 0 4px #0003);
}
.microFicha:hover .microFichaPic img {
	opacity: 0;
}
.microFicha:hover .microFichaPic section {
	opacity: 1;
}
.microFichaBoton:hover {
	background: #B10405;
}
.microFichaBoton:hover span {
	margin-left: 0;
	left: 25px;
}
.microFichaBoton:hover .microFichaIcon {
	left: calc(100% - 50px);
	opacity: 1;
}
/* PRODUCTO DESTACADO */
.productoDestacado {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	height: auto;
	padding: 25px 25px 10px 25px;
	border: solid 1px var(--color-amarillo);
	border-radius: 8px;
}
.productoDestacado h2 {
	color: var(--color-aguamarina);
	font-size: 17px;
	text-transform: uppercase;
	margin: 0 0 7px 0;
}
.productoDestacado hr {
	background: var(--color-amarillo);
	color: var(--color-amarillo);
	display: block;
	width: 100%;
	height: 4px;
	margin: 0 0 5px 0;
	border: none;
}
.productoDestacado img {
	max-width: 120px;
}
.productoDestacado section:nth-of-type(1) {
	width: 120px;
}
.productoDestacado section:nth-of-type(2) {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 17px;
	letter-spacing: -.2px;
	width: 233px;
	padding: 0 6px;
}
.productoDestacado section:nth-of-type(2) p {
	text-transform: uppercase;
	margin: 0 0 7px 0;
}
.productoDestacado section:nth-of-type(2) p:first-child {
	font-size: 20px;
}
.productoDestacado section:nth-of-type(3) {
	color: var(--color-gris6);
	font-size: 16px;
	letter-spacing: -.2px;
	line-height: 18px;
	hyphens: auto;
	padding: 0 0 0 20px;
	width: 573px; /* width: 46.93%; */
}
.productoDestacadoTitulo {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.productoDestacadoTitulo {
	display: block;
	width: 134px;
}

#paginador {
	font-size: 28px;
	font-weight: 600;
	width: 100%;
	padding: 4.478% 30px 1.807% 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#paginador a {
	background-color: var(--color-blanco);
	color: var(--color-negro);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 43px;
	margin: 0 15px;
	padding-bottom: 3px;
	position: relative;
	z-index: 2;
	overflow: hidden;
}
#paginador a span {
	position: relative;
	z-index: 5;
}
#paginador a:hover {
	/* background: var(--color-aguamarina); */
}
#paginador a::after {
	content: '';
	display: block;
	background: var(--color-aguamarina);
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	transform: scale(0);
	transition: all ease-in-out 300ms;
}
#paginador a:hover::after {
	transform: scale(1);
}

/* ZONA OPCIONES */
#productoOpciones {
	background: #F2F2F2;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 18px 0;
	padding: 6px 20px 6px 20px;
	border: solid 1px var(--color-placeholder);
	border-radius: 10px;
}
#productoOpciones a {
	color: var(--color-negro);
	display: inline-block;
	margin: 2px clamp(5px, 1.219%, 15px);
	position: relative;
}
#productoOpciones a::after {
	content: '';
	background: var(--color-rojo);
	display: block;
	height: 1px;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	transition: all ease-in-out 300ms;
	transform: scaleX(0)
}
#productoOpciones a:hover {
	color: var(--color-rojo);
}
#productoOpciones a:hover::after {
	transform: scaleX(1)
}
/* ZONA PREGUNTAS Y RESPUESTAS */
#productosPreguntas {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 44px;
	padding: 0 30px 0 6.9275%;
}
#productosPreguntas h3 {
	color: var(--color-negro);
	font-family: "Roboto Condensed", sans-serif;
	font-size: 23px;
	display: block;
	padding: 0 0 0 56px;
	position: relative;
}
#productosPreguntas h3::before {
	content: '';
	background: url("/images/web/icono-pregunta.svg") no-repeat left top;
	background-size: 42px auto;
	width: 42px;
	height: 42px;
	position: absolute;
	top: 3px;
	left: 0;
}
#productosPreguntas section {
	width: 447px;
	margin: 0 7px 0 0;
}
#preguntasRespuetasProductos {
	width: 58.914%; /* 770px */
	padding: 4px 0 0 28px;
	position: relative;
}
#preguntasRespuetasProductos::before {
	content: '';
	background: var(--color-gris9);
	display: block;
	width: 1px;
	height: 100%;
	max-height: 145px;
	position: absolute;
	top: 0;
	left: 0;
}
#preguntasRespuetasProductos p {
	color: var(--color-gris6);
	font-size: 15px;
	line-height: 18px;
	hyphens: auto;
	margin: 0 0 12px 0;
}
#preguntasRespuetasProductos strong { 
	color: var(--color-gris3);
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
}

/* responsivo */
@media screen and (max-width: 1250px) {
	.productoFichas {
		grid-template-columns: repeat(auto-fit, minmax(198px, 32%));
	}
}
@media screen and (max-width: 1100px) {
	#productoBajada, .productoDestacado {
		flex-wrap: wrap;
	}
	#productoBajada section:first-of-type, #productoBajada section:last-of-type {
		width: 100%;
	}
	#productoBajada section:first-of-type {
		margin: 0 0 10px 0;
	}
	.productoDestacado {
		padding: 10px 25px;
	}
	.productoDestacadoTitulo { 
		width: 100%;
	}
	.productoDestacado img {
		max-width: 100%;
	}
	.productoDestacado section:nth-of-type(1) {
		width: 40%;
		min-width: 120px;
	}
	.productoDestacado section:nth-of-type(3) {
		width: 100%;
		padding: 0;
	}
	#productosPreguntas {
		flex-wrap: wrap;
	}
	#productosPreguntas {
		padding: 0;
	}
	#preguntasRespuetasProductos {
		width: 100%;
		padding: 28px 0 0 56px;
	}
	#preguntasRespuetasProductos::before {
		width: 100%;
		max-width: 265px;
		height: 1px;
		top: 10px;
		left: 56px;
	}
}
@media screen and (max-width: 950px) {
	.productoFichas {
		grid-template-columns: repeat(auto-fit, minmax(198px, 49%));
	}
}
@media screen and (max-width: 480px) {
	.productoFichas {
		grid-template-columns: 100%;
	}
}
