/*--------------------------------------------------------------------- Variables ------------------------------------------------------------------------*/
:root {
	--lila: #BE78BF;
	--verde_base: #B1F2C2;
	--rosa: #F475B8;
	--verde_claro: #78BFB3;
	--verde_obscuro: #2E8C7D;
	--texto: #5F5F5F;
}

/* how to use fonts
	font-family: 'Belleza', sans-serif;
	font-family: 'Great Vibes', cursive;
	font-family: 'Manjari', sans-serif;
	font-family: 'Comfortaa', cursive;
	font-family: 'Italianno', cursive;

	--lila: #BE78BF; 190, 120, 191
	--verde_base: #B1F2C2; 177, 242, 194
	--rosa: #F475B8; 244, 117, 184
	--verde_claro: #78BFB3; 120, 191, 179
	--verde_obscuro: #2E8C7D; 46, 140, 125
	--texto: #5F5F5F;
*/

/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

* {
     box-sizing: border-box !important;
}

body {
     font-family: 'Belleza', sans-serif;
     font-weight: normal;
 }

 main {
 	margin-top: 50px;
 }

a {
     text-decoration: none !important;
}

h2 {
     color: var(--lila);
     font-weight: bolder;
     text-align: center;
     font-size: 2.5rem;
}

h3 {
     color: var(--rosa);
     font-weight: bolder;
	font-size: 1rem;
	text-align: center;
	line-height: 2;
}

p {
     color: var(--texto);
     font-size: 1.25rem;
     line-height: 1.5;
     margin-bottom: 30px;
     text-align: justify;
}

ul,
li {
     margin: 0px;
     padding: 0px;
     list-style: none;
     color: var(--texto);
}

/**	sticky header	*/
.menu {
	background-color: var(--verde_base);
}

/**	menu responsivo	*/
.navbar-light .navbar-nav .nav-link {
  color: var(--texto);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--verde_obscuro);
}

/**	logo **/
.logo {
	text-align: center;
}

/**	header contact **/

.row .email{
	text-align: right;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.row ul.email li {
	display: inline-block;
	font-size: 13px;
	padding-top: 20px;
}

.row ul.email li a {
	color: var(--texto);
}

.row ul.email li a:hover {
	color: var(--verde_obscuro);
	transition: color 0.15s ease-in-out;
}

/** social-bar **/
.social-bar {
	position: fixed;
	right: 0;
	top: 1.5rem;
	font-size: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 100;
	padding-top: 55px;
}

.icon {
	color: white;
	text-decoration: none;
	padding: 0.7rem;
	display: flex;
	transition: all .5s;
}

.icon-facebook2 {
     background: var(--verde_claro);
     color: #FFF;
}

.icon-instagram {
     background: var(--verde_obscuro);
}

.icon-whatsapp {
     background: var(--rosa);
}

.icon-tiktok {
     background: var(--lila);
}

.icon:first-child {
     border-radius: 1rem 0 0 0;
}

.icon:last-child {
     border-radius: 0 0 0 1rem;
}

.icon:hover {
     padding-right: 3.5vw;
     border-radius: 1rem 0 0 1rem;
     box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.5);
     background: #FFF;
     color: var(--verde_base);
}

/** end social bar **/

/** carrusel **/
.carrusel {
	margin-right: auto;
	margin-left: auto;
	background-color: rgb(190, 120, 191, 0.5);
}
.carousel-item img {
     max-width: 100%;
     height: auto;
}

.carrusel h1 {
	text-transform: uppercase;
	color: var(--rosa);
	font-size: 0.75rem;
	font-family: 'Comfortaa', cursive;
	font-weight: bold;
}

.carrusel p {
	font-size: 0.5rem;
	color: #FFF;
	text-shadow: 0 0 5px var(--verde_claro);
	margin-bottom: 0rem;
	text-align: center;
	line-height: 1.2;
}

.carousel-caption {
	width: 70%;
	height: 100%;
	top: 1%;
	left: 15%;
	bottom: unset;
	text-align: center;
}

.caption2 img {
	width: 60%;
}

.caption3,
.caption1,
.caption4 {
	width: 35%;
}

.btn-outline-dark {
 	border-color: var(--verde_obscuro);
 	color: #FFF;
 	background-color: rgb(120, 191, 179, 0.7);
 	font-size: 0.4rem;
 	border-radius: 1rem;
}

.btn-outline-dark:hover {
	background-color: rgb(177, 242, 194, 0.7);
 	border-color: var(--verde_obscuro);
  	border-radius: 1em;
}

.about,
.service,
.location,
.contact,
.regulares,
.premium,
.tratamientos,
.promociones {
	padding: 30px 5vw;
}

/** service section **/

.service {
	background-color: var(--verde_claro);
}

.service_box {
     background: #fff;
     text-align: center;
     padding: 50px 20px 20px 20px;
     border: var(--verde_obscuro) solid 1px;
     transition: ease-in all 0.5s;
     margin-bottom: 30px;
}

.service_box h3,
.location h3,
.contact h3 {
     font-size: 25px;
     text-transform: uppercase;
}

.service_box i {
     padding-bottom: 10px;
     display: block;
}

#hover_chang:hover.service_box {
     background: var(--verde_obscuro);
     transition: ease-in all 0.5s;
     border-radius: 20px;
}

#hover_chang:hover.service_box h3 {
     transition: ease-in all 0.5s;
     color: var(--lila);
}

#hover_chang:hover.service_box p {
     color: #fff;
     transition: ease-in all 0.5s;
}

#hover_chang:hover.service_box ul,
#hover_chang:hover.service_box li {
     color: #fff;
     transition: ease-in all 0.5s;
}

#hover_chang:hover.service_box .btn-outline-dark {
	background-color: rgb(177, 242, 194, 0.7);
 	border-color: var(--verde_obscuro);
  	border-radius: 1em;
}

.location p,
.contact p {
	text-align: center;
}

.contact {
	background-color: var(--verde_obscuro);
	text-align: center;
}

.contact a {
	color: #FFF;
	line-height: 1;
}

.contact a:hover {
	color: var(--rosa);
	transition: ease-in all 0.25s;
}

.contact .icon-tiktok {
	background: transparent;
}

.contact img {
	width: 75%;
}

.contact p {
	color: white;
}

.copyright {
	background-color: var(--verde_claro);
}

.copyright p {
	text-align: center;
	color: #FFF;
	margin-bottom: 10px;
	margin-top: 10px;
}

.premium {
	background-color: var(--lila);
}

.premium h2 {
	color: #FFF;
}

.embed-responsive {
	text-align: center;
}

@media screen and (min-width: 360px) {
	.carrusel p {
		font-size: 1rem;
	}

	.carrusel h1 {
		font-size: 0.75rem;
	}

	.btn-outline-dark {
	 	font-size: 0.6rem;
	}
}

@media screen and (min-width: 576px) {
	.carrusel p {
		font-size: 1.5rem;
	}

	.carrusel h1 {
		font-size: 1.25rem;
	}

	.btn-outline-dark {
	 	font-size: 0.8rem;
	}
}

@media screen and (min-width: 768px) {
	.carrusel p {
		font-size: 2rem;
	}

	.carrusel h1 {
		font-size: 1.75rem;
	}

	.btn-outline-dark {
	 	font-size: 1rem;
	}
}

@media screen and (min-width: 992px) {
	.carrusel p {
		font-size: 3rem;
	}

	.carrusel h1 {
		font-size: 2.75rem;
	}

	.btn-outline-dark {
	 	font-size: 1.25rem;
	}
}

@media screen and (min-width: 1200px) {
	.carrusel p {
		font-size: 4rem;
	}

	.carrusel h1 {
		font-size: 3.75rem;
	}

	.caption1 {
		top: 20%;
		width: 30%;
	}

	.btn-outline-dark {
	 	font-size: 1.5rem;
	}

	.container-fluid {
		max-width: 1200px;
		margin: auto;
	}
}
