
/*********************************
    CONTACTO - REGLAS GENERALES
**********************************/

/* Espaciado vertical base de las secciones */
main > div {
	padding: 4.5rem 0;
}

main > .rutaDeNagigacion {
	color: #fff;
}

/* Títulos grandes reutilizados en varias secciones */
main > .tiendas > div:nth-of-type(2) {
	display: flex;
}
main > .tiendas > div:nth-of-type(2) > h2,
 main > .bannerAbajo > div > h2 {
	display: inline-block;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-family: var(--fontMSR);
	margin: 0 auto;
}


/*********************************
    BANNER
**********************************/

main > .banner {
	background-image: url("./../png/nuestras-tiendas_banner.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-inline: 1rem;
	height: 395px;
}

main > .banner > div {
	width: 55%;
	margin: 5rem auto;
}

main > .banner > div > p {
	font-family: var(--fontMSR);
	font-size: clamp(2rem, 4vw, 3.5rem);
	text-align: center;
	color: #fff;
}

main > .banner > div > h1 {
	display: inline-flex;
	font-size: 2rem;
	font-family: var(--fontBL);
	text-align: center;
}

/*********************************
    NUESTRAS TIENDAS
**********************************/

main > .tiendas {
	background-image: url("./../png/nuestras-tiendas_fundo.png");
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: inherit;
}

main > .tiendas > .iconoEfectoEstilo {
	background-image: url("./../png/iconoDecoracion.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	height: 124px;
}

main > .tiendas > p {
	text-align: justify;
	font-size: 1.25rem;
	width: 60%;
	margin: 0 auto;
	text-align-last: center;
}

main > .tiendas > p:not(:first-of-type) {
	margin-top: 2rem;
}

main > .tiendas > .textoIncitacion {
	background-color: var(--marron);
	font-family: var(--fontMSR);
	color: #fff;
	margin: 5rem auto;
	width: 60%;
	border-radius: .5rem;
	text-align: center;
	padding: .5rem;
	font-size: 1.5rem;
}

main > .tiendas > .textoIncitacion > p {
	margin: 0;
	padding: 0;
}

main > .tiendas > .listaTiendas {
	width: 55%;
	margin: 0 auto;
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 3rem;
	justify-content: space-between;
}

main > .tiendas .tienda {
	background-color: var(--naranja);
	border-radius: .5rem;
	color: #fff;
	width: calc(50% - 2rem);
}

main > .tiendas .tienda > div {
	height: fit-content;
}

main > .tiendas .tienda > .fotoTienda img {
	width: 405px;
	height: 285px;
}

main > .tiendas .tienda > .textoTienda {
	width: 90%;
	margin: 1rem auto;
	text-align: justify;
	border-bottom: 1px solid #fff;
	padding-bottom: 2rem;
	padding-top: 1rem;
	text-align-last: center;
}

main > .tiendas .tienda > .infosTienda {
	display: grid;
	gap: 2rem 0;
	width: 75%;
	margin: 0 auto;
	margin-top: 2rem;
	padding-bottom: 1rem;
}

main > .tiendas .tienda > .infosTienda strong::after {
	content: ': ';
}

main > .tiendas .tienda > .infosTienda i {
	font-size: 2.8rem;
}

main > .tiendas .tienda .direccionTienda,
 main > .tiendas .tienda .horariosTienda {
	display: flex;
	gap: .5rem;
}

main > .tiendas .tienda .direccionTienda {
	line-height: 1;
}

main > .tiendas .tienda .horariosTienda {
	line-height: 1;
}

main > .tiendas .tienda .horariosTienda strong {
	display: block;
}

main > .tiendas .tienda .horariosTienda p {
	display: inline;
}

main > .tiendas .tienda .mapsEnlace {
	text-align: center;
}

main > .tiendas .tienda .mapsEnlace a {
	font-size: 1rem;
	background-color: var(--marron);
	color: #fff;
	border: 1px solid var(--marron);
	border-radius: 1rem;
	padding: .5rem;
}

main > .tiendas .tienda .mapsEnlace a:hover {
	background-color: var(--naranja);
	border: 1px solid #fff;
	text-decoration: none;
}

main > .tiendas .tienda .nuna {
	display: none;
}

main > .bannerAbajo {
	background-image: url("./../png/nuestras-tiendas_banner_abajo.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

main > .bannerAbajo > div {
	text-align: center;
}

main > .bannerAbajo > div > p:first-of-type {
	width: 50%;
	margin: 0 auto;
}

main > .bannerAbajo > div > p:last-of-type {
	margin-top: 2rem;
}

main > .bannerAbajo > div > p:last-of-type > a {
	font-size: 1rem;
	background-color: var(--naranja);
	color: #fff;
	border: 1px solid var(--naranja);
	border-radius: 1rem;
	padding: .5rem;
}

main > .bannerAbajo > div > p:last-of-type > a:hover {
	background-color: #fff;
	border: 1px solid var(--naranja);
	text-decoration: none;
	color: var(--naranja);
}

/*********************************
    MEDIA QUERIES
**********************************/

@media (max-width: 1260px) {
	main .tiendas .tienda > div:first-of-type img {
		width: 100%;
	}
}

@media (max-width: 1060px) {
	main > .tiendas {
		background-size: 100%;
	}
	main > .tiendas > .iconoEfectoEstilo {
		height: 100px;
	}
	main > .tiendas > div:nth-of-type(2) {
		text-align: center;
	}
	main > .tiendas > .textoIncitacion {
		width: 95%;
		margin: 2rem auto;
	}
	main > .tiendas > .listaTiendas {
		width: 90%;
	}
	main .tiendas .tienda .direccionTienda {
		font-size: 1rem;
	}
	main .tiendas .tienda .direccionTienda::before {
		width: 40px;
		height: 60px;
	}
	main .tiendas .tienda .mapsEnlace span {
		font-size: 1.2rem
	}
	main .tiendas .tienda .mapsEnlace a {
		font-size: 1.2rem
	}
}

/* Tablet grande */
@media (max-width: 960px) {
	main > .banner {
		height: 177px;
		padding: 2rem;
	}
	main > .banner > div {
		width: 80%;
		margin: auto;
	}
	main > .tiendas > div:last-of-type {
		width: 90%;
	}
}

/* Tablet */
@media (max-width: 760px) {
	main .tiendas .tienda .direccionTienda {
		font-size: 1rem;
	}
	main .tiendas .tienda .direccionTienda::before {
		width: 35px;
		height: 50px;
	}
	main .tiendas .tienda .mapsEnlace span {
		font-size: 1rem
	}
	main .tiendas .tienda .mapsEnlace a {
		font-size: 1rem
	}
	main > .bannerAbajo > div > h2 {
		width: 95%;
	}
	main > .bannerAbajo > div > p:first-of-type {
		width: 80%;
	}
}

@media (max-width: 700px) {
	main > .tiendas > div:first-of-type {
		text-align: center;
		margin-bottom: 1rem;
	}
	main > .tiendas > div:first-of-type > h2 {
		line-height: 2rem;
	}
	main > .tiendas > p {
		width: 80%;
		margin: 0 auto;
	}
	main > .tiendas .tienda {
		width: 100%;
	}
	main .tiendas .tienda > div:first-of-type img {
		margin: 0 auto;
		width: 100%;
	}
	main > .tiendas .tienda:not(:first-of-type) {
		margin-top: 3rem;
	}
	main > .tiendas > div:last-of-type {
		flex-direction: column;
	}
}
