body {
	font-family: "Roboto", sans-serif;
	margin: 0;
}

h1, h2, h3 {
	font-family: "Roboto", sans-serif;
}

.navBar {
	display: flex;
	background-color: rgb(255, 255, 255);
	position: fixed;
	width: 100%;
	height: 56px;
	top: 0;
	margin: 0;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	padding: 0 14px;
	box-sizing: border-box;
	transition: height 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.navBar.scrolled {
	height: 50px;
	background-color: rgba(255, 255, 255, 0.96);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.navBar .listBar {
	font-family: "Source Sans 3";
	text-transform: uppercase;
	letter-spacing: 0.6px;
	list-style: none;
	display: flex;
	font-size: 13px;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 8px;
}

.navBar .listBar li {
	display: flex;
	align-items: center;
	min-width: 0;
	height: 50px;
}

.listBar .contact {
	background: transparent;
	border-radius: 0;
}

.listBar .contact a {
	background: #e6e6e6;
	border-radius: 8px;
	color: #111;
}

.listBar .contact a:hover {
	background: #000;
	color: #fff;
}

.listBar .contact p {
	color: inherit;
}

.navBar .listBar p {
	margin: 0;
}

.navBar a {
	text-decoration: none;
	color: black;
}

.navBar .listBar li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 16px;
	border-radius: 8px;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.navBar .listBar .contact a {
	min-width: 132px;
	padding: 0 18px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	margin-left: 10px;
}

.logoNav {
	height: 42px;
	align-self: center;
}

.brandSub {
	font-family: "Source Sans 3", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 13px;
	font-weight: 600;
	color: #1d2b24;
	padding-left: 9px;
	border-left: 1px solid #e6e6e3;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	margin-right: 20px;
	padding: 6px;
	z-index: 1100;
}

.hamburger span {
	width: 24px;
	height: 2px;
	background: black;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.formulario {
	padding: 100px;
	background-color: white;
	display: flex;
	justify-content: center;
}

.contact-form-container {
	background: #ffffff;
	padding: 40px;
	border-radius: 15px;
	width: 100%;
	max-width: 600px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	font-family: 'Roboto', sans-serif;
}

.contact-form-container h2 {
	margin-bottom: 30px;
	font-weight: 700;
	font-size: 26px;
	color: #222;
	text-align: center;
}

.form-intro {
	margin: -10px 0 24px;
	text-align: center;
	color: #5a5a5a;
	font-size: 15px;
}

.contact-form {
	display: flex;
	flex-direction: column;
}

.contact-form label {
	margin-bottom: 8px;
	font-weight: 400;
	font-size: 14px;
	color: #555;
}

.contact-form input,
.contact-form textarea {
	padding: 14px 16px;
	margin-bottom: 20px;
	border-radius: 8px;
	border: 1px solid #ddd;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	transition: all 0.3s ease;
	outline: none;
}

.contact-form input.input-error,
.contact-form textarea.input-error {
	border-color: #c13f3f;
	box-shadow: 0 0 0 3px rgba(193, 63, 63, 0.12);
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #272727;
	box-shadow: 0 0 0 3px rgba(39, 39, 39, 0.1);
}

.boton {
	background-color: #e6e6e6;
	color: #111;
	padding: 16px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.boton:hover {
	background-color: #000;
	color: #fff;
	transform: translateY(-2px);
}

.boton:active {
	transform: translateY(0);
}

.boton:disabled {
	opacity: 0.75;
	cursor: not-allowed;
	transform: none;
}

.form-note {
	margin: -4px 0 12px;
	font-size: 13px;
	color: #6a6a6a;
}

.form-status {
	min-height: 20px;
	margin: 0 0 14px;
	font-size: 14px;
	font-weight: 500;
	color: #444;
}

.form-status.error {
	color: #b53434;
}

.form-status.success {
	color: #2f7a37;
}

.hp-field {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.reveal {
	opacity: 0;
	transform: translateY(2px);
	transition: all 1s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

.footer {
	background: #000;
	color: #fff;
	padding: 70px 50px 30px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	gap: 50px;
}

.footer h3,
.footer h4 {
	margin-bottom: 18px;
	font-weight: 500;
}

.footer h3 {
	font-size: 22px;
}

.footer h4 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

.footer p,
.footer a {
	color: #cfcfcf;
	font-size: 15px;
	line-height: 1.8;
	text-decoration: none;
	display: block;
}

.footer a:hover {
	color: #fff;
}

.footer-bottom {
	max-width: 1200px;
	margin: 55px auto 0;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}

.footer-bottom p {
	margin: 0;
	font-size: 14px;
	color: #cfcfcf;
}

.footer-social {
	display: flex;
	gap: 22px;
}

.footer-social a {
	font-size: 14px;
	color: #cfcfcf;
	text-decoration: none;
}

.footer-social a:hover {
	color: #fff;
}

@media (max-width: 900px) {
	.footer-container {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.formulario {
		padding: 88px 12px 40px;
	}

	.contact-form-container {
		max-width: none;
		padding: 28px 18px;
		border-radius: 12px;
	}

	.footer {
		padding: 34px 22px 20px;
	}

	.footer-container {
		grid-template-columns: 1fr 1fr;
		gap: 20px 24px;
	}

	.footer h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.footer h4 {
		margin-bottom: 10px;
	}

	.footer p,
	.footer a {
		font-size: 13px;
		line-height: 1.55;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 22px;
		padding-top: 16px;
		gap: 12px;
	}

	.footer-social {
		gap: 18px;
	}
}

.whatsappIcon {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 6;
}

.whatsappIcon img {
	width: 55px;
	height: 55px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 50px;
}

.whatsappIcon img:hover {
	filter: brightness(1.2) sepia(10%) saturate(2);
}

@media (max-width: 680px) {
	body {
		overflow-x: hidden;
	}

	body.menu-open::after {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		z-index: 980;
	}

	.navBar .listBar {
		display: flex;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		height: 100vh;
		width: 62%;
		max-width: 210px;
		background: white;
		flex-direction: column;
		padding: 60px 0 24px;
		box-shadow: -14px 0 34px rgba(0, 0, 0, 0.22);
		gap: 0;
		justify-content: flex-start;
		align-items: stretch;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 990;
		overflow-y: auto;
	}

	.navBar .listBar.active {
		transform: translateX(0);
	}

	.navBar .listBar li {
		padding: 0;
		width: 100%;
		min-width: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		border-bottom: none;
		flex: 0 0 auto;
	}

	.navBar .listBar li:last-child {
		border-bottom: none;
	}

	.navBar .listBar li a {
		padding: 16px 18px;
		width: 100%;
		height: auto;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background-color 0.25s ease;
		border-radius: 0;
		min-width: auto;
	}

	.navBar .listBar li a p {
		margin: 0;
		padding: 0;
	}

	.navBar .listBar li:not(.contact) a {
		background: transparent;
		color: black;
	}

	.navBar .listBar .contact {
		border-radius: 0;
	}

	.navBar .listBar .contact a {
		background: transparent;
		color: black;
		min-width: auto;
		padding: 0 18px;
	}

	.hamburger {
		display: flex;
	}

}

@media (max-width:400px) {
	.formulario {
		padding: 88px 10px 28px;
	}

	.contact-form-container {
		padding: 22px 14px;
	}

	.contact-form-container h2 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.galleryBox h2 {
		font-size: 36px;
	}

	.aboutContainer h2 {
		font-size: 36px;
	}

	.hero2 .heroLabel {
		font-size: 18px;
	}

	.hero2 .heroTitle {
		font-size: 24px;
	}

}