:root {
	--color-first: #fd6905; /* orange */
	--color-second: #166899; /* blue */
	--color-third: #009d00; /* green */
	--color-fourth: #fdfdfd; /* bone */
	--light-shadow: #cbcbcb;
	--dark-shadow: #757575;
	--nav-separator-color: #ff8c3e;
	--text-color: black;
	--font-main: 'M Plus Rounded 1c', sans-serif;

	/* Layout spacing variables */
	--header-padding: 1.25rem; /* 20px */
}

body {
	margin: 0;
	font-family: var(--font-main);
}
p {
	font-size: 1.05rem;
}

/***********************
 * logo and quickies
 * ********************/
.site-header {
	background: white;
}

/* --- Top Bar Wrapper --- */
.site-header__top-wrapper {
	padding: var(--header-padding);
	box-shadow: 0 2px 10px var(--light-shadow); /* Subtle shadow for depth */
}

.site-header__brand-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-header__logo img {
	width: 9.375rem; /* 150px */
	height: auto;
	display: block;
}

/* --- Hamburger (Accessible Button) --- */
.site-header__hamburger {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem; /* Space between lines */
}

.site-header__hamburger span {
	display: block;
	width: 2.2rem;  /* 35px - cleaner look */
	height: 0.25rem; /* 4px - refined thickness */
	background: var(--color-first);
	border-radius: 10px;
	transition: all 0.3s ease;
}

/* --- Quickies (Mobile) --- */
.site-header__quickies {
	margin-top: 1rem;
	text-align: center;
	font-weight: bold;
	color: var(--text-color);
	font-size: 0.9rem;
}

.quickie-item {
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.quickie-item img {
	width: 1.125rem; /* 18px */
}
/***********************
 * navigation in mobiles
 ***********************/
.site-nav {
	position: relative;
}
.site-nav__list {
	margin: 0 0 0 10px;
	padding: 10px 20px;
	list-style-type: none;
	position: absolute;
	opacity: 0;
	transition: opacity 0.5s ease;
	background: var(--color-first);
	border-radius: 5px;
}
.site-nav__list img {
	width: 22px;
	margin: 0 5px -5px 0;
}
nav a {
	color: var(--color-fourth);
	font-weight: bold;
	text-decoration: none;
}
.site-nav__list.visible {
	opacity: 1;
	box-shadow: 0 0 18px 2px var(--color-first);
}
nav li {
	padding: 7px 0 5px;
}
.hidden-xs {
	display: none;
}
h1 {
	font-size: 2rem;
	text-align: center;
	line-height: 2.2rem;
	margin: 10px 0;
}
.cta-btn {
	background: var(--color-first);
	color: var(--color-fourth);
	padding: 3px 10px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 5px;
	box-shadow: 0px 0px 20px 2px var(--dark-shadow);
}
.cta-btn img {
	width: 20px;
	margin-bottom: -4px;
}
.brands-logos-box {
	background: linear-gradient(129deg, rgba(253,105,5,1) 0%, rgba(253,157,5,1) 100%);
	padding: 10px 0;
}
.brands-logos-box li {
	list-style-type: none;
}
.brands-logos-box ul {
	display: flex;
	margin: 0;
	padding: 0;
	justify-content: space-around;
}
.brands-logos-box img {
	width: 2.7rem;
}
.colored-text {
	color: var(--color-first);
}
section {
	padding: 40px 20px;
}
h2 {
	text-align: center;
	line-height: 1.8rem;
}
h2 strong {
	color: var(--color-first);
}
/***********************
 * Benefits. 3 divs
 **********************/
.intro_img img {
	width: 100%;
}
.benefit-icon {
	width: 28px;
	margin-bottom: -12px;
}
.one-benefit {
	display: flex;
	gap: 5px;
	margin: 15px 0;
}
.one-benefit h3 {
	margin: 0;
}
/******************
 * Slider styles
 *****************/
.slider-frame {
	position: relative;
}
#sliderImg {
	width: 100%;
}
#nextPic, #prevPic {
	position: absolute;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 5;
	font-size: 40px;
	font-weight: bold;
	color: white;
}
#nextPic {
	right: 0;
}
#prevPic {
	left: 0;
}
#prevPic p, #nextPic p {
	border: 3px solid white;
	border-radius: 50px;
	padding: 5px 12px 9px 12px;
	line-height: 40px;
	background:	#16689945;
}
/***********************
 * end of slider
 **********************/

/* Footer */
footer {
	background: linear-gradient(133deg, rgba(22, 104, 153, 1) 0%, rgb(95 58 0) 100%);
	padding: 10px 25px;
	color: white;
}
#footer-logo-box {
	text-align: center;
}
#footer-logo {
	width: 60% !important;
	box-shadow: none !important; 
}
#footer-logo-box p {
	margin: 0;
	font-style: italic;
	font-size: 17px;
}
#footer-logo-box img {
	width: 25px;
	margin: 30px 10px 0 0;
	box-shadow: 0 0 15px 2px #5b3c08;
}
#footer-contact-box table img {
	width: 30px;
	margin-right: 5px;
	box-shadow: 0 0 20px 2px #5b3c08;
	border-radius: 5px;
}
#footer-contact-box table {
	text-align: left;
}
#footer-contact-box td {
	padding-bottom: 20px;
}
#footer-contact-box a {
	text-decoration: none;
	color: white;
	font-weight: 500;
	font-size: 20px;
}
footer > div {
	padding: 20px 0;
}
footer h3 {
	margin: 0;
	font-size: 23px;
}
footer h3 img {
	width: 32px;
	margin-bottom: -7px;
}
.separator {
	width: 70%;
	height: 2px;
	background: #fd9b05;
	padding: 0;
	border-radius: 20px;
	margin: 10px 0 35px 0;
	box-shadow: 0 0 20px 2px #5b3c08;
}
#footer-espec-box a {
	display: block;
	color: white;
	text-decoration: none;
	font-size: 20px;
	margin: 10px 0;
}
#footer-espec-box a img {
	width: 25px;
	margin: 0 8px -4px 0;
}
#floating-wa {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 50px;
	border-radius: 15px;
}
/* End of footer */
/* Banner de tratamientos */
.trats-banner {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	height: 170px;
	color: white;
	font-size: 18px;
	font-weight: 900;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* end of banner de tratamientos */
/* card de tratamientos */
.trats-card {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
	position: relative;
	height: 400px;
	border-radius: 20px;
	box-shadow: 0 0 20px 1px gray;
	margin: 60px 0;
}
.trats-card ul {
	padding: 0 0 0 15px;
	margin: 0;
}
.trats-txt-wrapper {
	position: absolute;
	bottom: 20px;
	left: 15px;
	right: 15px;
}
.trats-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.trats-card p {
	margin: 0;
}
.trats-card h3 {
	font-size: 27px;
	margin: 0 0 15px 0;
}
.trats-wa img {
	width: 40px;
	box-shadow: 0 0 10px 1px #515151;
	border-radius: 9px;
}
.trats-precio {
	text-align: center;
}
.trats-precio p {
	font-size: 27px;
	font-weight: bold;
	margin-top: -7px;
}
/* end of card de tratamientos */
/* start of nasty code for reviews - needs refactor */
#revs-box {
	background: linear-gradient(145deg, rgba(249, 249, 249, 1) 10%, rgb(231 231 231) 100%);
	padding: 40px 20px;
}
#revs-box section {
	border-radius: 5px 10px 10px 5px;
	padding: 20px 10px 10px 10px;
	box-shadow: 0 0 20px 2px #dfdfdf;
	margin-top: 45px;
	background: white;
}
.orange-border {
	border-left: 5px solid #fc6904;
}
.blue-border {
	border-left: 5px solid #166899;
}
.rev-body {
	display: flex;
}
.rev-body img {
	width: 130px;
	height: 130px;
	border-radius: 200px;
	margin-left: -40px;
	box-shadow: 0 0 20px 2px #474747;
}
.rev-body blockquote {
	margin: 0 0 0 10px;
}
.rev-body blockquote strong {
	font-style: italic;
	font-size: 17px;
}
.rev-footer {
	border-top: 1px solid #e5e5e5;
	margin-top: 20px;
	padding-top: 10px;
	position: relative;
}
.rev-footer img {
	position: absolute;
	right: 0;
}
.rev-footer span {
	font-size: 25px;
	font-weight: bold;
	font-style: italic;
	font-family: "Sofia Sans Extra Condensed";
}
.complemento {
	font-size: 18px;
	text-align: center;
	font-style: italic;
	margin-top: 5px;
	font-weight: bold;
	color: #fc6904;
}
/* end of reviews code */
#main-video {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 0 20px 1px gray;
}
#map {
	padding: 0;
	height: 400px;
	width: 100%;
}
#map iframe {
	width: 100%;
	height: 400px;
}
@media (min-width: 768px) {
	.trats-container {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		justify-content: space-around;
	}
	.trats-card {
		height: 380px;
		width: 320px;
		margin: 0;
	}
	section {
		padding: 40px;
	}
	.xs-flex {
		display: block;
	}
	.sm-flex {
		display: flex;
		gap: 40px;
	}
	.sm-flex > div {
		width: 50%;
	}
	.sm-flex-container {
		display: flex;
		gap: 30px;
	}
	.flex-container {
		display: flex;
		align-items: center;
	}
	.hidden-xs {
		display: block;
	}
	.visible-xs {
		display: none;
	}
	.site-header__top-wrapper {
		display: flex;
		align-items: center;
		gap: 40px;
	}
	.site-header__logo img {
		width: 140px;
	}
	.site-header__brand-bar {
		display: block;
	}
	.site-header__quickies {
		width: 100%;
		display: flex;
		margin: 0;
		justify-content: space-around;
	}
	.quickie-item span {
		display: block;
	}
	.site-nav__list {
		opacity: 1;
		border-radius: 30px;
		margin: 40px 10px;
		padding: 10px;
		box-shadow: 0 2px 10px var(--light-shadow); /* Subtle shadow for depth */
		position: static;
		display: flex;
		justify-content: space-between;
	}
	.site-nav__list li {
		display: inline;
		font-family: 'Sofia Sans Extra Condensed';
		font-size: 1.3rem;
		padding: 0 7px;
	}
	.site-nav__list img {
		display: none;
	}
	.brands-logos-box img {
		width: 60px;
		margin-bottom: -5px;
	}
	/* footer and inner */
	footer {
		display: flex;
		justify-content: space-between;
		padding: 40px 25px 10px;
	}
	.footer-wrapper {
		width: 45%;
	}
	#footer-logo-box {
		margin-bottom: 70px;
	}
	#footer-logo-box #footer-logo {
		width: 60% !important;
		margin: 0;
	}
	.revs-wrapper {
		display: flex;
		gap: 25px;
	}
	.rev-body {
		display: block;
		text-align: center;
	}
	.rev-body img {
		margin: -60px auto 30px  auto;
	}
}

@media (min-width: 1024px) {
	.quickie-item img {
		width: 25px;
		height: 25px;
	}
	section {
		padding: 60px;
	}
	.intro_img {
		text-align: center;
	}
	.brands-logos-box {
		padding: 20px 0;
	}
	.brands-logos-box img {
		width: 70px;
	}
	h2 {
		font-size: 30px;
		line-height: 34px;
	}
	.intro_img img {
		width: 80%;
	}
	footer {
		padding: 5% 9% 2%;
	}
	#footer-logo-box img {
		width: 35px;
	}
	#footer-logo-box #footer-logo {
		width: 60% !important;
	}
	#footer-contact-box table img {
		width: 35px;
	}
	#footer-espec-box a img {
		width: 30px;
	}
	footer h3 {
		font-size: 25px;
	}
	.site-header__top-wrapper {
		padding: 30px 60px;
	}
	.site-header__logo img {
		width: 190px;
	}
	.site-nav__list {
		margin: 40px 60px;
	}
	.site-nav__list li {
		font-size: 22px;
	}
	#main-video-ctr {
		text-align: center;
	}
	#main-video {
		width: 80%;
	}
	.rev-body img {
		width: 150px;
		height: 150px;
	}
}
@media (min-width: 1440px) {
	#floating-wa {
		width: 75px;
		bottom: 50px;
		right: 50px;
	}
	.trats-banner {
		height: 250px;
	}
	.site-header__top-wrapper {
		padding: 30px 160px;
	}
	.site-nav__list {
		margin: 40px 120px;
		padding: 15px 20px;
		box-shadow: 0 0 20px 2px gray;
	}
	nav a {
		font-size: 28px;
	}
	.brands-logos-box img {
		width: 90px;
	}
	section {
		padding: 60px 140px;
	}
	.intro_img img {
		width: 65%;
	}
	.one-benefit h3 {
		font-size: 22px;
	}
	h2 {
		font-size: 33px;
	}
	p {
		font-size: 20px;
	}
	#revs-box {
		padding: 40px 150px;
	}
	.rev-body img {
		width: 180px;
		height: 180px;
	}
}
