:root {
	--tinto-navy: #002f58;
	--tinto-navy-dark: #002442;
	--tinto-wine: #9b003b;
	--tinto-wine-hover: #b00047;
	--tinto-coral: #ea675e;
	--tinto-gold: #efc66c;
	--tinto-white: #ffffff;
}

.tinto-header {
	position: relative;
	z-index: 1000;
	width: 100%;
	background: rgba(0, 43, 80, 0.96);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tinto-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100% - 48px, 1440px);
	min-height: 92px;
	margin-inline: auto;
	gap: 40px;
}

.tinto-header__logo img {
	display: block;
	width: 220px;
	height: auto;
}

.tinto-header__nav {
	margin-left: auto;
}

.tinto-header__menu {
	display: flex;
	align-items: center;
	gap: 44px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tinto-header__menu a {
	position: relative;
	display: block;
	padding: 34px 0 27px;
	color: var(--tinto-white);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tinto-header__menu a:hover {
	color: var(--tinto-gold);
}

.tinto-header__menu .current-menu-item > a::after,
.tinto-header__menu .current_page_item > a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 17px;
	left: 0;
	height: 3px;
	border-radius: 999px;
	background: var(--tinto-coral);
}

.tinto-whatsapp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 25px;
	border: 2px solid rgba(255, 255, 255, 0.65);
	border-radius: 999px;
	background: var(--tinto-wine);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.tinto-whatsapp-button:hover {
	background: var(--tinto-wine-hover);
	color: #fff;
	transform: translateY(-1px);
}

.tinto-whatsapp-button__icon {
	display: flex;
	width: 25px;
	height: 25px;
}

.tinto-whatsapp-button__icon svg {
	width: 100%;
	height: 100%;
}

/* Footer */

.tinto-footer {
	background: var(--tinto-navy-dark);
	color: var(--tinto-white);
}

.tinto-footer__inner {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 60px;
	width: min(100% - 48px, 1440px);
	min-height: 130px;
	margin-inline: auto;
}

.tinto-footer__logo img {
	display: block;
	width: 185px;
	height: auto;
}

.tinto-footer__contact {
	display: flex;
	align-items: center;
	gap: 45px;
}

.tinto-footer__contact a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.tinto-footer__contact a span:first-child {
	color: var(--tinto-gold);
}

.tinto-footer__copyright {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	white-space: nowrap;
}

/* Mobile toggle */

.tinto-header__toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 8px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.tinto-header__toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 6px 0;
	background: #fff;
}

/* Tablet */

@media (max-width: 1100px) {

	.tinto-header__inner {
		gap: 20px;
	}

	.tinto-header__menu {
		gap: 24px;
	}

	.tinto-header__menu a {
		font-size: 14px;
	}

	.tinto-header__logo img {
		width: 180px;
	}

	.tinto-footer__inner {
		grid-template-columns: auto 1fr auto;
		gap: 30px;
	}

	.tinto-footer__copyright {
		grid-column: 1 / -1;
		text-align: center;
	}

}

/* Mobile */

@media (max-width: 767px) {

	.tinto-header__inner {
		width: min(100% - 32px, 100%);
		min-height: 72px;
	}

	.tinto-header__logo img {
		width: 155px;
	}

	.tinto-header__nav,
	.tinto-header > .tinto-header__inner > .tinto-whatsapp-button {
		display: none;
	}

	.tinto-header__toggle {
		display: block;
	}

	.tinto-footer__inner {
		display: flex;
		flex-direction: column;
		min-height: 0;
		padding: 48px 20px;
		gap: 28px;
		text-align: center;
	}

	.tinto-footer__contact {
		flex-direction: column;
		gap: 16px;
	}

	.tinto-footer__copyright {
		white-space: normal;
	}

}