@font-face {
    font-family: 'Lato';
	font-style: normal;
    font-weight: 300;
    font-display: swap;
	src:	url('fnt/Lato/Lato-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Lato';
	font-style: normal;
    font-weight: 400;
    font-display: swap;
	src:	url('fnt/Lato/Lato-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Lato';
	font-style: normal;
    font-weight: 700;
    font-display: swap;
	src:	url('fnt/Lato/Lato-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Cormorant Garamond';
	font-style: normal;
    font-weight: 400;
    font-display: swap;
	src:	url('fnt/Cormorant_Garamond/CormorantGaramond-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Cormorant Garamond';
	font-style: normal;
    font-weight: 500;
    font-display: swap;
	src:	url('fnt/Cormorant_Garamond/CormorantGaramond-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Cormorant Garamond';
	font-style: normal;
    font-weight: 600;
    font-display: swap;
	src:	url('fnt/Cormorant_Garamond/CormorantGaramond-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Cormorant Garamond';
	font-style: normal;
    font-weight: 700;
    font-display: swap;
	src:	url('fnt/Cormorant_Garamond/CormorantGaramond-Bold.ttf') format('truetype');
}

:root {
	--color-gold: #b8934c;
	--color-gold-light: #d4af61;
	--color-navy: #1a2638;
	--color-navy-light: #2a3a4d;
	--color-cream: #f9f7f3;
	--color-white: #ffffff;
	--color-text: #333333;
	--color-text-light: #666666;
	--font-display: 'Cormorant Garamond', serif;
	--font-body: 'Lato', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	vertical-align: unset;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--color-text);
	line-height: 1.7;
	background-color: var(--color-cream);
}

/* Header */
header {
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
	padding: 0.5rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-icon {
	width: 50px;
	height: 50px;
	background: var(--color-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-white);
}

.logo-text {
	color: var(--color-white);
}

.logo-text h1 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1.3;
}

.logo-text span {
	font-size: 0.65rem;
	color: var(--color-gold-light);
	text-transform: uppercase;
	letter-spacing: 2px;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

nav a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: color 0.3s ease;
	position: relative;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-gold);
	transition: width 0.3s ease;
}

nav a:hover {
	color: var(--color-gold-light);
}

nav a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	background: linear-gradient(rgba(26, 38, 56, 0.85), rgba(26, 38, 56, 0.9)),
				url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8rem 2rem 4rem;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	background: linear-gradient(to top, var(--color-cream), transparent);
}

.hero-content {
	max-width: 800px;
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-block;
	background: rgba(184, 147, 76, 0.2);
	border: 1px solid var(--color-gold);
	color: var(--color-gold-light);
	padding: 0.5rem 1.5rem;
	font-size: 0.8rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 2rem;
	animation: fadeInDown 1s ease;
}

.hero h2 {
	font-family: var(--font-display);
	font-size: 4rem;
	font-weight: 400;
	color: var(--color-white);
	margin-bottom: 1.5rem;
	line-height: 1.2;
	animation: fadeInUp 1s ease 0.3s both;
}

.hero h2 span {
	color: var(--color-gold);
	font-weight: 600;
}

.hero p {
	font-size: 1.2rem;
	color: rgba(255,255,255,0.8);
	margin-bottom: 2.5rem;
	font-weight: 300;
	animation: fadeInUp 1s ease 0.5s both;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	animation: fadeInUp 1s ease 0.7s both;
}

.btn {
	padding: 1rem 2.5rem;
	font-size: 0.9rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--color-gold);
	color: var(--color-white);
}

.btn-primary:hover {
	background: var(--color-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(184, 147, 76, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--color-white);
	border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
	border-color: var(--color-gold);
	color: var(--color-gold-light);
}

/* Section Styling */
section {
	padding: 6rem 2rem;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-label {
	color: var(--color-gold);
	font-size: 0.85rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 1rem;
	display: block;
}

.section-title {
	font-family: var(--font-display);
	font-size: 2.8rem;
	font-weight: 500;
	color: var(--color-navy);
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--color-gold);
	margin: 1.5rem auto 0;
}

/* About Section */
#about {
	background: var(--color-white);
}

.about-content {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-image {
	position: relative;
}

.about-image-main {
	width: 100%;
	height: 450px;
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.about-image-main::before {
	content: '⚖️';
	font-size: 8rem;
	opacity: 0.3;
}

.about-image-accent {
	position: absolute;
	width: 200px;
	height: 200px;
	background: var(--color-gold);
	bottom: -30px;
	right: -30px;
	z-index: -1;
}

.about-text h3 {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--color-navy);
	margin-bottom: 1.5rem;
}

.about-text p {
	color: var(--color-text-light);
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}

.about-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.about-feature-icon {
	width: 40px;
	height: 40px;
	background: rgba(184, 147, 76, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-gold);
	font-size: 1.2rem;
}

.about-feature span {
	font-size: 0.95rem;
	color: var(--color-navy);
	font-weight: 500;
}

/* Services Section */
#services {
	background: var(--color-cream);
}

.services-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.service-card {
	background: var(--color-white);
	padding: 2.5rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: var(--color-gold);
	transition: height 0.4s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(26, 38, 56, 0.1);
}

.service-card:hover::before {
	height: 100%;
}

.service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.service-card h3 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--color-navy);
	margin-bottom: 1rem;
}

.service-card p {
	color: var(--color-text-light);
	font-size: 0.95rem;
	line-height: 1.8;
}

/* Contact Section */
#contact {
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
	color: var(--color-white);
}

#contact .section-label {
	color: var(--color-gold-light);
}

#contact .section-title {
	color: var(--color-white);
}

.contact-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info h3 {
	font-family: var(--font-display);
	font-size: 1.8rem;
	margin-bottom: 2rem;
	color: var(--color-white);
}

.contact-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
	align-items: flex-start;
}

.contact-item-icon {
	width: 50px;
	height: 50px;
	background: rgba(184, 147, 76, 0.2);
	border: 1px solid var(--color-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}

.contact-item-content h4 {
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-gold-light);
	margin-bottom: 0.5rem;
}

.contact-item-content p {
	color: rgba(255,255,255,0.9);
	font-size: 1.05rem;
	line-height: 1.6;
}

.contact-item-content a {
	color: rgba(255,255,255,0.9);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item-content a:hover {
	color: var(--color-gold-light);
}

.contact-map {
	background: rgba(255,255,255,0.1);
	height: 100%;
	min-height: 400px;
	position: relative;
	overflow: hidden;
}

.contact-map iframe,
.contact-map #plgMapa {
	width: 100%;
	height: 100%;
	min-height: 400px;
	border: 0;
}

.contact-map #plgMapa {
	margin-top: 0;
}

/* Hours Badge */
.hours-badge {
	background: var(--color-gold);
	color: var(--color-white);
	padding: 1.5rem 2rem;
	margin-top: 2rem;
	display: inline-block;
}

.hours-badge h4 {
	font-size: 0.8rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	font-weight: 400;
}

.hours-badge p {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
}

/* Footer */
footer {
	background: #0f1820;
	color: rgba(255,255,255,0.6);
	padding: 3rem 2rem 1rem 2rem;
	text-align: center;
}

.footer-content {
	max-width: 800px;
	margin: 0 auto;
}

.footer-logo {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--color-white);
	margin-bottom: 1rem;
}

footer p {
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.footer-divider {
	width: 50px;
	height: 2px;
	background: var(--color-gold);
	margin: 1.5rem auto;
}

.clsW3c, .clsRejNETCopyright, .clsStat {
	background: #0f1820;
	color: rgba(255,255,255,0.6);
	margin: 0;
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 992px) {
	.header-container {
		flex-direction: column;
		gap: 1rem;
	}

	nav ul {
		gap: 1.5rem;
	}

	.hero h2 {
		font-size: 2.8rem;
	}

	.about-content,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.services-grid {
		grid-template-columns: 1fr 1fr;
	}

	.about-image-accent {
		display: none;
	}
}

@media (max-width: 768px) {
	nav ul {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero h2 {
		font-size: 2.2rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	section {
		padding: 4rem 1.5rem;
	}
}
