/* Que el html y body ocupen todo el alto del viewport */

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	background-image: url('../img/backgrounds/fondo estrelllas.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	font-size: 15px;
}


/* El contenido principal crece, el footer se empuja al fondo */

.main-content {
	flex: 1;
}

.body_container {
	position: relative;
	margin-top: 30em;
	border: 0;
}

.body_container_check {
	margin-top: 7em;
}

.contact-info {
	margin-top: 3em;
	margin-bottom: 0em;
	padding: 5em 10em 10em 10em;
	border: 0;
	font-size: 20px;
	background-color: white;
}

.page-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.main-content {
	flex: 1;
}

.site-footer {
	background-image: url('../img/backgrounds/footer.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 310px;
	color: white;
	margin-top: 200px;
	padding-top: 133px;
	padding-bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
	text-align: center;
	position: relative;
}

.site-footer2 {
	background-image: url('../img/backgrounds/footer.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 310px;
	color: white;
	padding-top: 133px;
	padding-bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
	text-align: center;
	position: relative;
}

.card {
	background-color: transparent !important;
	border: none;
	/* opcional, si no querés el borde del card */
	box-shadow: none;
	/* opcional, si no querés sombra */
}

.footer-icon {
	width: 30px;
	height: auto;
	transition: transform 0.3s ease;
}

.footer-icon:hover {
	transform: scale(1.1);
}

.separador {
	max-width: 50%;
	max-height: 60vh;
	height: 180px;
	display: block;
	margin-bottom: 10em;
}

.container-custom {
	max-width: 1140px;
	margin: 0 auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

.titulo-merch {
	width: 60%;
	/* ancho en pantallas medianas y grandes */
	max-width: 800px;
	/* que no se pase de este tamaño */
}

.link-limpio {
	text-decoration: none;
	color: black;
	font-family: inherit;
	font-size: inherit;
}

.link-limpio:hover,
.link-limpio:focus {
	text-decoration: none;
	color: #2e2e2e;
}

.carousel-overlay {
	z-index: 10;
}

.contenedor-principal,
.contenedor-principal * {
	border: none !important;
	box-shadow: none;
}

.row,
.col {
	border: none !important;
}

.contenedor-body {
	padding-top: 3em;
}

@font-face {
	font-family: 'Heloise';
	src: url('/assets/fonts/SpaceBreak.woff2') format('woff2'), url('/assets/fonts/SpaceBreak.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Heloise_merch';
	src: url('/assets/fonts/LegacyCaster.woff2') format('woff2'), url('/assets/fonts/LegacyCaster.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
h8 {
	font-family: 'Heloise', sans-serif;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.titulo-blanco {
	font-family: "Heloise", sans-serif;
	color: white;
	font-size: 4em;
	font-weight: normal;
	text-transform: uppercase;
}

.video-flotante {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 90%;
	z-index: 2;
	width: 97%;
	max-width: 1080px;
	margin-bottom: 10em;
}

.img-comprar {
	width: 140px;
}

.img-tienda {
	width: 20px;
}


/*CARDS PARA LA MERCH*/

.titulo-blanco_card {
	color: white !important;
	font-family: 'Heloise_merch', sans-serif !important;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.titulo-blanco_card_bk {
	color: black !important;
	font-family: 'Heloise_merch', sans-serif !important;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-align: center;
}

.titulo_card_bk_unbold {
	color: black !important;
	font-family: 'Heloise_merch', sans-serif !important;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-align: center;
	font-weight: normal;
	/* Evita que se vea en negrita */
	font-size: 0.95rem;
	padding: 1.5em;
}

.text-card {
	color: white;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	padding: 1.5em;
}

.text-card h4 {
	font-weight: 800;
	text-transform: uppercase;
}

.text-card p {
	margin-bottom: 0.5em;
	font-size: 0.95rem;
}

.modal-content {
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.body_container_merch {
	margin-top: 5em;
}

.modal-body-full {
	padding: 0;
	height: 70vh;
	/* Ajusta la altura que quieras para el modal */
}

.modal-body-full iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.custom-btn-size {
    padding: 5px 10px;
    max-width: 250px !important; 
    text-align:center;
}


/*CSS MOBILE */

@media (max-width: 768px) {
	html,
	body {
		padding-top: 35px;
	}
	.body_container_check {
		margin-top: 1em;
	}
	.body_container_merch {
		margin: 0;
	}
	.titulo-blanco {
		font-size: 2.5em;
	}
	.img-comprar {
		width: 100px;
	}
	.container-custom {
		max-width: 100%;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	.separador {
		width: 60px;
		height: 70px;
		margin-bottom: 45px;
	}
	.video-flotante {
		top: 90%;
		width: 80%;
		max-width: 100%;
	}
	.footer-icon {
		width: 25px;
		height: auto;
		display: block;
	}
	.body_container {
		position: relative;
		margin-top: 15em;
		border: 0;
		text-align: center;
	}
	.titulo-merch {
		width: 95%;
		/* que se haga más grande en pantallas pequeñas */
	}
	.site-footer {
		background-image: url('../img/backgrounds/footer.webp');
		/* Ruta de la imagen */
		color: white;
		text-align: center;
		margin-top: 80px;
		padding-top: 80px;
		padding-bottom: 10px;
		font-size: 14px;
		position: relative;
		width: 100%;
		min-height: 200px;
	}
	.site-footer2 {
		background-image: url('../img/backgrounds/footer.webp');
		/* Ruta de la imagen */
		color: white;
		text-align: center;
		padding-top: 80px;
		padding-bottom: 10px;
		font-size: 14px;
		position: relative;
		width: 100%;
		min-height: 200px;
	}
	.whatsapp-float {
		right: auto;
		left: 15px;
	}
	.whatsapp-float img {
		width: 28px;
		height: 28px;
	}
	.contact-info {
		padding: 2em 1em 5em 1em;
		margin: 0;
		border: 0;
		font-size: 20px;
		background-color: white;
	}
}

@media (max-width: 576px) {
	html,
	body {
		padding-top: 35px;
	}
	.body_container_check {
		margin-top: 1em;
	}
	.body_container_merch {
		margin: 0;
	}
	.titulo-blanco {
		font-size: 2.5em;
	}
	.img-comprar {
		width: 100px;
	}
	.container-custom {
		max-width: 100%;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	.separador {
		width: 60px;
		height: 70px;
		margin-bottom: 45px;
	}
	.video-flotante {
		top: 90%;
		width: 80%;
		max-width: 100%;
	}
	.footer-icon {
		width: 25px;
		height: auto;
		display: block;
	}
	.body_container {
		position: relative;
		margin-top: 15em;
		border: 0;
		text-align: center;
	}
	.titulo-merch {
		width: 95%;
		/* que se haga más grande en pantallas pequeñas */
	}
	.site-footer {
		background-image: url('../img/backgrounds/footer.webp');
		/* Ruta de la imagen */
		color: white;
		text-align: center;
		margin-top: 80px;
		padding-top: 80px;
		padding-bottom: 10px;
		font-size: 14px;
		position: relative;
		width: 100%;
		min-height: 200px;
	}
	.site-footer2 {
		background-image: url('../img/backgrounds/footer.webp');
		/* Ruta de la imagen */
		color: white;
		text-align: center;
		padding-top: 80px;
		padding-bottom: 10px;
		font-size: 14px;
		position: relative;
		width: 100%;
		min-height: 200px;
	}
	.whatsapp-float {
		right: auto;
		left: 15px;
	}
	.whatsapp-float img {
		width: 28px;
		height: 28px;
	}
	.contact-info {
		padding: 2em 1em 5em 1em;
		margin: 0;
		border: 0;
		font-size: 20px;
		background-color: white;
	}
}

@media (max-width: 420px) {
	html,
	body {
		padding-top: 35px;
	}
	.body_container_check {
		margin-top: 1em;
	}
	.body_container_merch {
		margin: 0;
	}
	.titulo-blanco {
		font-size: 2.5em;
	}
	.img-comprar {
		width: 100px;
	}
	.container-custom {
		max-width: 100%;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	.separador {
		width: 60px;
		height: 70px;
		margin-bottom: 45px;
	}
	.video-flotante {
		top: 90%;
		width: 80%;
		max-width: 100%;
	}
	.footer-icon {
		width: 25px;
		height: auto;
		display: block;
	}
	.body_container {
		position: relative;
		margin-top: 15em;
		border: 0;
		text-align: center;
	}
	.titulo-merch {
		width: 95%;
		/* que se haga más grande en pantallas pequeñas */
	}
	.site-footer {
		background-image: url('../img/backgrounds/footer.webp');
		/* Ruta de la imagen */
		color: white;
		text-align: center;
		margin-top: 80px;
		padding-top: 80px;
		padding-bottom: 10px;
		font-size: 14px;
		position: relative;
		width: 100%;
		min-height: 200px;
	}
	.site-footer2 {
		background-image: url('../img/backgrounds/footer.webp');
		/* Ruta de la imagen */
		color: white;
		text-align: center;
		padding-top: 80px;
		padding-bottom: 10px;
		font-size: 14px;
		position: relative;
		width: 100%;
		min-height: 200px;
	}
	.whatsapp-float {
		right: auto;
		left: 15px;
	}
	.whatsapp-float img {
		width: 28px;
		height: 28px;
	}
	.contact-info {
		padding: 2em 1em 5em 1em;
		margin: 0;
		border: 0;
		font-size: 20px;
		background-color: white;
	}
}

@media (max-width: 360px) {
	html,
	body {
		padding-top: 35px;
	}
	.body_container_check {
		margin-top: 1em;
	}
	.body_container_merch {
		margin: 0;
	}
	.titulo-blanco {
		font-size: 2.5em;
	}
	.img-comprar {
		width: 100px;
	}
	.container-custom {
		max-width: 100%;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	.separador {
		width: 60px;
		height: 70px;
		margin-bottom: 45px;
	}
	.video-flotante {
		top: 90%;
		width: 80%;
		max-width: 100%;
	}
	.footer-icon {
		width: 25px;
		height: auto;
		display: block;
	}
	.body_container {
		position: relative;
		margin-top: 15em;
		border: 0;
		text-align: center;
	}
	.titulo-merch {
		width: 95%;
		/* que se haga más grande en pantallas pequeñas */
	}
	.site-footer {
		background-image: url('../img/backgrounds/footer.webp');
		/* Ruta de la imagen */
		color: white;
		text-align: center;
		margin-top: 80px;
		padding-top: 80px;
		padding-bottom: 10px;
		font-size: 14px;
		position: relative;
		width: 100%;
		min-height: 200px;
	}
	.site-footer2 {
		background-image: url('../img/backgrounds/footer.webp');
		/* Ruta de la imagen */
		color: white;
		text-align: center;
		padding-top: 80px;
		padding-bottom: 10px;
		font-size: 14px;
		position: relative;
		width: 100%;
		min-height: 200px;
	}
	.whatsapp-float {
		right: auto;
		left: 15px;
	}
	.whatsapp-float img {
		width: 28px;
		height: 28px;
	}
	.contact-info {
		padding: 2em 1em 5em 1em;
		margin: 0;
		border: 0;
		font-size: 20px;
		background-color: white;
	}
}

.whatsapp-float {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 9999;
	width: 55px;
	height: 55px;
	background-color: #25d366;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.whatsapp-float:hover {
	transform: scale(1.05);
}

.whatsapp-float img {
	width: 30px;
	height: 30px;
}