@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

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

:root
{
	--bg: #f8f3ee;
	--bgSoft: #fffdfb;
	--card: #ffffff;
	--text: #1f1b19;
	--muted: #766d67;
	--border: #e7ddd5;
	--highlight: #bb9479;
	--highlightDark: #9f7d66;
	--softPink: #fbf8f7;
	--footer: #221d1a;
	--radius: 28px;
	--shadow: 0 20px 50px rgba(0, 0, 0, .06);
	--container: 1280px;
	--gap: 25px;
}

html
{
	scroll-behavior: smooth;
}

body
{
	/* background: var(--bg); */
	color: var(--text);
	font-family: 'Poppins', sans-serif;
	line-height: 1.8;
	overflow-x: hidden;
}

body::before
{
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		radial-gradient(circle at top left, rgba(255, 255, 255, .8), transparent 30%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, .4), transparent 30%);
	z-index: -2;
}

img
{
	display: block;
	width: 100%;
}

a
{
	text-decoration: none;
	color: inherit;
}

ul,
menu
{
	list-style: none;
}

.container
{
	width: min(var(--container), calc(100% - 50px));
	margin: auto;
}

.container.narrow
{
	max-width: 850px;
	text-align: center;
}

section
{
	padding: 75px 0;
	position: relative;
}

header
{
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, .72);
	border-bottom: 1px solid rgba(231, 221, 213, .6);
}

header .container
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	gap: var(--gap);
}

.logo img
{
	height: 62px;
	width: auto;
}

menu
{
	display: flex;
	gap: calc(var(--gap) * 1.5);
}

menu a
{
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	position: relative;
}

menu a::after
{
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 1px;
	background: var(--highlight);
	transition: .3s ease;
}

menu a:hover::after
{
	width: 100%;
}

.menu-toggle
{
	display: none;
}

h1,
h2,
h3,
h4
{
	font-family: 'Playfair Display', serif;
	line-height: 1;
	font-weight: 700;
}

h1
{
	font-size: clamp(58px, 7vw, 92px);
	margin-bottom: 30px;
}

h2
{
	font-size: clamp(42px, 5vw, 64px);
	margin-bottom: 25px;
}

h3
{
	font-size: 28px;
	margin-bottom: 20px;
}

h4
{
	font-size: 24px;
	margin-bottom: 25px;
}

p
{
	font-size: 15px;
	color: var(--muted);
	margin: 15px 0;
}

.eyebrow
{
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 12px;
	font-weight: 600;
	color: var(--highlightDark);
	display: inline-block;
	margin-bottom: 25px;
}

.button
{
	background: linear-gradient(135deg, var(--highlight), var(--highlightDark));
	color: white;
	padding: 18px 28px;
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: .3s ease;
	box-shadow: 0 10px 25px rgba(187, 148, 121, .25);
}

.button:hover
{
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(187, 148, 121, .35);
}

.button.light
{
	background: white;
	color: var(--text);
}

.button.small
{
	padding: 14px 22px;
	font-size: 13px;
}

#hero
{
	min-height: 100vh;
	display: flex;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(248, 243, 238, .96) 0%, rgba(248, 243, 238, .85) 10%, rgba(248, 243, 238, .2) 80%),
		url('../img/hero.png');
	background-size: cover;
	background-position: center;
}

#hero .content
{
	max-width: 650px;
}

#hero p
{
	font-size: 17px;
	max-width: 560px;
}

.highlights
{
	display: flex;
	gap: 40px;
	margin-top: 50px;
	flex-wrap: wrap;
}

.highlights li
{
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
	font-size: 16px;
	color: var(--text);
}

.highlights i
{
	font-size: 48px;
	color: var(--highlight);
}

#nosotros
{
	background: var(--bgSoft);
}

#nosotros h2::after
{
	background-image: url("../img/ornament.png");
	display: block;
	height: 30px;
	content: "";
	background-size: 25%;
	background-repeat: no-repeat;
	background-position: center;
}

.services
{
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap);
	margin-top: 70px;
}

.services li.card
{
	background: rgba(255, 255, 255, .8);
	border-radius: var(--radius);
	border: 1px solid rgba(231, 221, 213, .7);
	box-shadow: var(--shadow);
	transition: .35s ease;
	backdrop-filter: blur(10px);

	display: flex;
	flex-direction: column;
}

.services li.card:hover
{
	transform: translateY(-10px);
}

.services li.card div.icon-circle
{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.services li.card i
{
	font-size: 30px;
	color: var(--highlight);
}

.services li.card h3
{
	font-size: 24px;
	margin-bottom: 15px;
}

.services li.card .card-header
{
	position: relative;
	height: 200px;
}

.services li.card .card-header img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 25px 25px 0 0;
}

.services li.card .card-body
{
	padding: 45px 25px 30px;
	text-align: center;
}

.services li.card .card-body h3
{
	color: #7d5a44;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.services li.card .card-body p
{
	color: #777;
	font-size: 0.95rem;
	line-height: 1.6;
}








#info
{
	background: white;
	text-align: center;
}

#info ul
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap);
	margin: 70px auto 50px;
	width: 85%;
}

#info li
{
	padding: 50px 35px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	transition: .3s ease;
	background-color: #faf6f6;
}

#info li:hover
{
	transform: translateY(-8px);
	box-shadow: var(--shadow);
}

#info li p *
{
	display: block;
	margin: 14px auto;
}

#info li i
{
	font-size: 38px;
	color: var(--highlight);
}

#info strong
{
	font-size: 20px;
	color: var(--text);
}

#quote
{
	padding-top: 40px;
}

#quote .card
{
	min-height: 420px;
	border-radius: 40px;
	overflow: hidden;
	padding: 80px;
	display: flex;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(243, 231, 223, .96), rgba(243, 231, 223, .8)),
		url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?q=80&w=1400&auto=format&fit=crop');
	background-size: cover;
	background-position: center;
}

#quote .card>div
{
	max-width: 520px;
}

footer
{
	background: linear-gradient(135deg, #2b2521, #1d1816);
	padding: 100px 0 50px;
	color: white;
}

.footer_content
{
	display: grid;
	grid-template-columns: 0.75fr 1fr 1.5fr;
	grid-auto-rows: 1fr;
	gap: calc(var(--gap) * 2);
}

.footer_content > div
{
	padding: 0 var(--gap);
}

.footer_content > div:nth-child(2),
.footer_content > div:nth-child(2)
{
	border: none;
	border-left: 1px solid var(--highlight);
	border-right: 1px solid var(--highlight);
}

footer h3,
footer h4
{
	color: white;
}

footer p
{
	color: rgba(255, 255, 255, .7);
	margin-bottom: 15px;
	font-size: 12px !important;
}

footer i
{
	color: var(--highlight);
	margin-right: 10px;
	font-size: 20px;
}

.social
{
	display: flex;
	gap: 15px;
	margin-top: 25px;
}

.social a
{
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	display: flex;
	transition: .3s ease;
}

.social a:hover
{
	transform: translateY(-4px);
	background: rgba(255, 255, 255, .15);
}

.social a i
{
	margin: auto;
}

.map iframe
{
	width: 100%;
	height: 200px;
	border: 0;
	border-radius: 24px;
	filter: grayscale(.15);
}

@media (max-width: 1100px)
{

	.services,
	#info ul,
	.footer_content
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px)
{
	section
	{
		padding: 90px 0;
	}

	menu,
	header .button.small
	{
		display: none;
	}

	header .container
	{
		/* width: 100%; */
		width: min(var(--container), calc(100% - 25px));
		gap: 0;
	}

	header .button {
		padding: 15px;
		box-shadow: none;
	}

	.menu-toggle
	{
		display: block;
		background: transparent;
		border: 0;
		font-size: 24px;
	}

	#hero
	{
		padding-top: 120px;
		min-height: auto;
		background-position: 70%;
	}

	#hero .content
	{
		max-width: 100%;
	}

	.services,
	#info ul,
	.footer_content
	{
		grid-template-columns: 1fr;
	}

	#quote .card
	{
		padding: 50px 35px;
		min-height: auto;
	}

	.highlights
	{
		gap: 20px;
		flex-direction: column;
	}

	.footer_content > div:nth-child(2),
	.footer_content > div:nth-child(2)
	{
		border: none;
		border-top: 1px solid var(--highlight);
		border-bottom: 1px solid var(--highlight);
	}

.footer_content > div {
	padding: var(--gap) 0;
	height: 215px;
}

.footer_content {
	gap: calc(var(--gap));
}

footer
{
	padding: var(--gap)
}
}
