:root {
	--white-bg: #fff;
	--black-bg: #000;
	--perla-soft-green: #e7f8cc;
	--light-yellow: #FBE7C6;
	--salmon-color: #FC8578;
	--light-pink: #f5dff8;
	--white-bone: #fffbf4;
	--perla-yellow: #fffefa;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scrollbar-width: thin;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	color: #333;
	overflow-x: hidden;
}

nav a {
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

/* Base Nav Link Style (Clean and Scalable) */
.nav-btn {
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

/* Mobile & Tablet Styles (< 1024px) */
@media (max-width: 1023px) {
	.nav-btn {
		background: rgba(255, 255, 255, 0.2) !important;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-radius: 9999px;
		border: 1px solid rgba(255, 255, 255, 0.3) !important;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.nav-btn:active {
		background: rgba(255, 255, 255, 0.5) !important;
		transform: scale(0.96);
	}
}

/* Desktop Hover Styles (>= 1024px) */
@media (min-width: 1024px) {
	.nav-btn:hover {
		border-bottom-color: #fbbf24;
		/* yellow-400 */
		color: #ffffff;
	}
}

.brand-logo {
	font-family: "Caveat Brush", cursive;
	font-weight: 400;
	font-style: normal;
}

/*Snow effect*/
.initial-snow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	/* Un valor bajo para estar sobre el fondo, pero bajo el z-index de tu contenido (si lo tiene) */
	pointer-events: none;
}

/* Base para todos los copos de nieve */
.initial-snow>* {
	color: white;
	position: absolute;
	top: -5vh;
	/* Inicia la animación fuera de la vista */
	font-size: var(--size, 80px);
	/* El valor por defecto es 50px si JS falla */

	/* Propiedades de animación genéricas aplicadas a todos */
	animation-name: snowfall;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes snowfall {
	0% {
		/* Variables definidas por JS para la deriva horizontal inicial */
		transform: translate3d(var(--left-ini, 0vw), 0, 0);
	}

	100% {
		/* Variables definidas por JS para la deriva horizontal final */
		transform: translate3d(var(--left-end, 0vw), 110vh, 0);
	}
}

/*Snow effect*/
/*Cupcake banner falling*/
@keyframes dropBounce {
	0% {
		transform: translateY(-160px);
		opacity: 0;
	}

	20% {
		transform: translateY(-90px);
		opacity: 0;
	}

	60% {
		transform: translateY(0);
		opacity: 1;
	}

	75% {
		transform: translateY(-14px);
	}

	90% {
		transform: translateY(8px);
	}

	100% {
		transform: translateY(0);
	}
}

.animate-drop-bounce {
	animation: dropBounce 1.1s ease-out 1;
}

/*End Cupcake banner falling*/
/*Da estilo a los sabores de los ponches*/
.badge {
	background: rgb(247 72 216 / 50%);
	border-radius: 20px;
	padding: 6px 10px;
	margin: 4px;
	backdrop-filter: blur(4px);
}

.badge:hover {
	transform: scale(1.05);
	transition: all 0.2s ease;
}

/*Products cards sliders*/
.catalog {
	background-color: var(--perla-yellow);
	display: flex;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 50px;
}

.catalog>.title {
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

.catalog .gallery {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}

.slide {
	padding-bottom: 70px;
}

.img-box .img-container {
	width: 300px;
	height: 258px;
	max-height: 260px;
	overflow: hidden;
	margin-right: 8px;
}

.img-box .img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-container:hover img {
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: 0.2s ease-in-out;
}

/* Carousel */
@media(width >=769px) and (width <=992px) {
	.catalog .gallery {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		flex-wrap: nowrap;
		overflow-x: scroll;
	}

	.img-box .img-container {
		width: 300px;
		height: 292px;
		overflow: hidden;
		margin-right: 8px;
	}

	.img-box {
		flex: 0 0 auto;
		max-width: 300px;
	}
}

@media(width<=768px) {
	.catalog .gallery {
		display: flex;
		flex-direction: row;
		justify-content: center;
		flex-wrap: nowrap;
		overflow-x: scroll;
	}

	.img-box .img-container {
		width: 300px;
		height: 292px;
		overflow: hidden;
		margin-right: 8px;
	}

	.img-box {
		flex: 0 0 auto;
		max-width: 300px;
	}

	.testimonials {
		height: auto;
	}

	#services {
		height: auto;
	}
}

/*End Products cards sliders*/
.testimonials #testimonialas-container>.title {
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

@keyframes fade-in {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.animate-fade-in:not([open]) {
	animation: fade-in 0.11s ease-out forwards;
}

/* End modal animation */
.scrollbar-hide::-webkit-scrollbar {
	display: none;
}

.scrollbar-hide {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.scrollbar-show::-webkit-scrollbar {
	height: 8px;
}

.scrollbar-show::-webkit-scrollbar-thumb {
	background-color: #ec4899;
	border-radius: 9999px;
}

#services-cards-father-container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	align-items: center;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	/* scrollbar-width: thin;
	scrollbar-color: #ec4899 #fce7f3; */
	scroll-snap-type: x mandatory;
}

#services-cards-father-container::-webkit-scrollbar {
	height: 8px;
	transition: opacity 0.3s ease-in-out;
}

#services-cards-father-container::-webkit-scrollbar-track {
	background: #fce7f3;
	border-radius: 4px;
}

#services-cards-father-container::-webkit-scrollbar-thumb {
	background-color: #ec4899;
	border-radius: 4px;
	border: 2px solid #fce7f3;
}

@media (max-width: 992px) {
	#services-cards-father-container {
		display: flex;
		flex-wrap: nowrap;
		justify-content: start;
		align-items: center;
		overflow-x: auto;
		padding-bottom: 50px;
	}

	#services-cards-father-container::-webkit-scrollbar {
		display: none;
	}

	#services-cards-father-container {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
}

.scrollbar-hide::-webkit-scrollbar {
	display: none;
}

.scrollbar-hide {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* Testimonials Swiper Custom Styles */
.testimonialSwiper {
	padding: 20px 0 80px 0 !important;
	max-width: 90%;
	margin: 0 auto !important;
	overflow: visible !important;
}

@media (min-width: 1024px) {
	.testimonialSwiper {
		/* If a 3-card grid is ~1200px, 2 cards should be around 800px */
		max-width: 820px !important;
	}
}

.testimonialSwiper .swiper-slide {
	height: auto !important;
	/* Allow slides to equal height of tallest slide */
	display: flex;
	justify-content: center;
	align-items: stretch;
	/* Crucial for h-full to work on child */
	transition: transform 0.3s ease;
}

.testimonialSwiper .swiper-slide>div {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.testimonialSwiper .stars-container svg {
	filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.4));
}

.testimonial-pagination {
	bottom: 20px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
	background: #ec4899;
	opacity: 0.3;
}

.testimonial-pagination .swiper-pagination-bullet-active {
	background-color: #ec4899 !important;
	opacity: 1;
	width: 20px;
	border-radius: 5px;
}

/* Fix Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
	background: white !important;
	width: 50px !important;
	height: 50px !important;
	border-radius: 50% !important;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1) !important;
	color: #ec4899 !important;
	z-index: 50 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 18px !important;
	font-weight: 900 !important;
}

.swiper-button-prev {
	left: -25px !important;
}

.swiper-button-next {
	right: -25px !important;
}

@media (max-width: 1023px) {

	.swiper-button-next,
	.swiper-button-prev {
		display: none !important;
		/* Hide on smaller screens to avoid overlap */
	}
}