/*--- DEFAULT---*/
:root {
	--primary-color: #D8985F;
	--secondary-color: #261615;
	--third-color: #323232;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 22px;
}

body {
	width: 100%;
}

* {
	position: relative;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'PT Serif', serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 60px;
	color: var(--third-color);
}

h3 {
	color: var(--third-color);
}

.full_w {
	width: 100%;
	max-width: 100%;
}

.full_p {
	padding: 0 235px;
}

.flex_align {
	display: flex;
	align-items: center;
}

.flex_full {
	display: flex;
	align-items: center;
	justify-content: center;
}

/*CTA*/
.cta {
    background: var(--primary-color);
    border-radius: 48px;
    width: 323px;
    height: 55px;
}
.cta a {
    text-decoration: none;
    color: white;
}

#cta_mobile {
	display: none;
}

/*--- HEADER---*/
#header {
	position: absolute;
	z-index: 100;
	margin-top: 48px;
}

.item_header {
	width: 100%;
	max-width: 50%;
}

#header .call {
	display: flex;
	justify-content: flex-end;
}

/*--- BANNER---*/
#banner {
	background: transparent url(../images/bg-banner_colombianmassage.avif) top center;
	background-size: cover;
	height: 715px;
}

#banner .txt {
	flex-direction: column;
	color: white;
}

#banner .txt .cta {
	margin-top: 24px;
}

/*---IMAGES---*/
.imgs_me {
    width: 100%;
    max-width: 32%;
    margin-right: 2%;
    margin-top: 4%;
    border-radius: 16px;
}

#images_me .imgs_me:last-child {
    margin-right: 0;
}

/*--- SERVICES---*/
#services .title {
	margin: 40px 0;
}

.row_services {
	width: 100%;
	display: flex;
	margin-bottom: 32px;
}

.card_services {
  width: 100%;
  max-width: 29%;
  margin-right: 4%;
	height: 384px;
	overflow: hidden;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px #00000024;
  -webkit-box-shadow: 0 8px 32px #00000024;
  -moz-box-shadow: 0 8px 32px #00000024;
  -o-box-shadow: 0 8px 32px #00000024;
}

.row_services .card_services:last-child {
    margin-right: 0;
}

.service_img {
	margin-bottom: 16px;
}

/*--- ME---*/
#me {
	margin: 80px 0 0;
}

/*NEW SERVICES - 2025*/
.services_container .item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.services_container .img {
    width: 132px;
    align-items: center;
    gap: 16px;
}

.services_container img {
    width: 100%;
    height: auto;
}

/*--- FOOTER---*/
#footer {
    background: var(--secondary-color);
    margin-top: 48px;
}

#inside_footer {
    color: white;
    display: flex;
    padding: 64px 0;
}

.item_footer {
	width: 100%;
}

.item_footer a{
	color: white;
	text-decoration: none;
}

/*--- RESPONSIVE---*/
@media (max-width: 2400px) {
    .full_p {
    padding: 0 23em;
    }
}

@media (max-width: 1366px) {
	.full_p {
    padding: 0 140px;
	}
}

@media (max-width: 1280px) {
	.full_p {
    padding: 0 110px;
	}
}


@media (max-width: 1080px) {
	.full_p {
    padding: 0 60px;
	}
}

@media (max-width: 800px) {
	.full_p {
    padding: 0 40px;
	}

	.card_services {
		max-height: 275px;
	}

	.service_img {
    max-width: 100%;
	}

	h1 {
    font-size: 32px;
	}

	h2 {
    font-size: 40px;
	}

	p {
    font-size: 16px;
	}

	.full_p {
    padding: 0 18px;
	}

	#header .call {
    display: none;
	}

	.item_header {
    max-width: 100%;
    display: flex;
    justify-content: center;
	}

	#banner {
    padding: 40px;
    text-align: center;
    max-height: 560px;
    padding: 0 40px;
    text-align: center;
    background-position: left center;
	}

	#services {
    margin-top: 16%;
    }

	#services .title {
    margin: 0 auto;
	}

	#services .title h2 {
    text-align: center;
    margin-bottom: 16px;
	}

	.services_container .item {
    flex-direction: column;
    gap: 0;
	}

	.card_services {
    max-height: 170px;
	}

	#me {
		display: block;
    margin: 0;
	}

	#pic {
    width: 100%;
    max-width: 40%;
    margin: 0 auto;
	}

	.img_me {
    width: 100%;
	}

	#inside_footer {
    transform: translateY(0px);
    display: initial;
	}

	.item_footer {
    margin-bottom: 18px;
	}

	.item_footer br {
    display: none;
	}

	.cta a {
    font-size: 22px;
	}

	#cta_mobile {
    display: block;
    z-index: 102;
    position: fixed;
    bottom: 0;
    width: 100%;
	}

	#cta_mobile .cta {
    width: 100%;
    border-radius: 16px 16px 0 0;
	}
	
	#images_me {
    margin-top: -3em;
    margin-bottom: 8%;
    }
}