
/*
========================================================================================================================
AUMENTO DE PECHO
========================================================================================================================
Estilos definidos para la landing page de aumento de pecho                                                            */

/* -------------- SECTION HERO -------------------------------------------------------------------------------------- */
#aumento-de-pecho {
	background-image: url('/ka/apps/drsarria/assets/img/aumento/hero-aumento.webp');
}

/* -------------- FULL-IMAGE ---------------------------------------------------------------------------------------- */
.full-image {
	height: 80vh;
	background-image: url('/ka/apps/drsarria/assets/img/aumento/full-image.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	margin-bottom: 1em;

	@media (width > 1920px) {
		height: 60vh;
	}
	@media (width < 768px) {
		height: 30vh;
		background-position: center right;
		margin-bottom: 0;
	}
}

/* -------------- CONOCE AL DR SARRIÀ ------------------------------------------------------------------------------- */
.meet-container-aumento {
	display: grid;
	grid-template-columns: 1.5fr 2fr;
	align-items: center;
	gap: 10em;
}
	.meet-container-aumento img {
		max-width: 500px;
	}

/* -------------- SECTION DURACION Y POSTOPERATORIO ----------------------------------------------------------------- */
/* -------------- Comparten algunas clases de colores con rinoplastia ----------------------------------------------- */

.steps-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2,1fr);
	gap: 5em;
	margin-top: 2em;
	padding-bottom: 0;
}
	.step {
		display: grid;
		grid-template-rows: auto auto 1fr;
		gap: 0.3em;
	}
	.step span {
		font-family: 'neue-haas-grotesk', sans-serif;
		font-size: 2vw;
	}
	.step h3 {
		margin-bottom: .5em;
	}

/* -------------- FOOTER - DATOS CONTACTO --------------------------------------------------------------------------- */
.contact-data {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.contact-data-col {
	padding: 0px 10px;
}
.phones {
	width: 100%;
}
.contact-data p {
	margin: 0%;
}

/*
========================================================================================================================
RESPONSIVE
========================================================================================================================
Estilos definidos responsive para la landing page de aumento de pecho                                                 */

@media ( max-width:768px ) {
	#aumento-de-pecho {
		background-image: url('/ka/apps/drsarria/assets/img/aumento/hero-aumento-sm.png');
	}

	.steps-container {
		padding-top: 2em;
		padding-bottom: 2em;
		grid-template-columns: 1fr;
		gap: 1em;
	}
		.step {
			grid-template-rows: repeat(3, auto);
		}
		.step span {
			font-size: 25px;
		}
		.step h3 {
			margin-bottom: 0;
		}

	.meet-container-aumento {
		grid-template-columns: 1fr;
		gap: 2em;
		padding-bottom: 1em;
	}
		.meet-container-aumento img {
			max-width: 90%;
		}
}
