/*
Theme Name: pine
Theme URI: https://pine.pt/
Author: pine
Author URI: https://pine.pt/
Description: pine
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pine
*/

:root {
	--eq-teal: #1ab4ba;
	--eq-teal-dark: #088178;
	--eq-teal-light: #d0f8fa;
	--eq-teal-shadow: rgba(8, 129, 120, 0.16);
	--eq-price: #c9a227;
	--eq-text: #212529;
	--eq-text-muted: #495057;
	--eq-placeholder: #919eab;
	--eq-border: #dfe3e8;
	--eq-white: #ffffff;
	--eq-icon-bg: #dfe3e8;
	--eq-sobre-icon-bg: rgba(208, 248, 250, 0.55);
	--eq-font: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--eq-font);
	color: var(--eq-text);
	background: var(--eq-white);
}

img {
	max-width: 100%;
	height: auto;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
   Breadcrumb (global)
   ========================================================================== */

.eq-breadcrumb {
	padding: 30px 0 20px;
}

.eq-breadcrumb__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 100px;
	padding-right: 100px;
}

.eq-breadcrumb__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eq-breadcrumb__home,
.eq-breadcrumb__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--eq-text);
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
}

.eq-breadcrumb__home:hover,
.eq-breadcrumb__home:focus,
.eq-breadcrumb__link:hover,
.eq-breadcrumb__link:focus {
	color: var(--eq-teal);
	text-decoration: none;
}

.eq-breadcrumb__home img {
	display: block;
	width: 20px;
	height: 20px;
}

.eq-breadcrumb__sep {
	color: var(--eq-placeholder);
	font-size: 16px;
	line-height: 24px;
}

.eq-breadcrumb__current {
	color: var(--eq-placeholder);
	font-family: var(--eq-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
}

@media (max-width: 1199.98px) {
	.eq-breadcrumb__container {
		padding-left: 24px;
		padding-right: 24px;
	}
}

button {
	font-family: inherit;
	border: 0;
	background: none;
	cursor: pointer;
	padding: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.eq-header {
	position: relative;
	z-index: 1000;
	background: var(--eq-white);
	font-family: var(--eq-font);
}

.eq-header__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.eq-header__top {
	padding: 15px 0;
}

.eq-header__top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
	width: 100%;
}

.eq-header__logo {
	display: block;
	flex: 0 0 auto;
	width: 212px;
	height: 61px;
}

.eq-header__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.eq-header__logo-fallback {
	font-weight: 700;
	font-size: 18px;
	color: var(--eq-teal);
}

/* Sobre */

.eq-header__sobre {
	position: relative;
	flex: 0 0 auto;
}

.eq-header__sobre-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 160px;
	height: 50px;
	padding: 0 16px 0 22px;
	background: var(--eq-teal);
	border-radius: 8px;
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
	color: var(--eq-white);
}

.eq-header__sobre-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.eq-header__sobre-icon img {
	width: 16px;
	height: 16px;
	display: block;
}

.eq-header__sobre-label {
	font-size: 14px;
	font-weight: 600;
	line-height: 26px;
	color: var(--eq-white);
}

.eq-header__sobre-chevron {
	display: inline-flex;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	margin-left: auto;
	transition: transform 0.2s ease;
}

.eq-header__sobre-chevron img {
	width: 20px;
	height: 20px;
	display: block;
}

.eq-header__sobre.is-open .eq-header__sobre-chevron {
	transform: rotate(180deg);
}

.eq-header__sobre-menu {
	position: absolute;
	top: calc(100% + 0px);
	left: 0;
	z-index: 20;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 160px;
	padding: 20px 10px 10px;
	background: var(--eq-white);
	border-radius: 8px;
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
}

.eq-header__sobre-menu[hidden] {
	display: none !important;
}

.eq-header__sobre-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--eq-text);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	white-space: nowrap;
}

.eq-header__sobre-item:hover {
	color: var(--eq-teal);
}

.eq-header__sobre-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 50%;
	background: var(--eq-sobre-icon-bg);
	overflow: hidden;
}

.eq-header__sobre-item-icon img {
	width: 22px;
	height: 22px;
	display: block;
	object-fit: contain;
}

.eq-header__sobre-item-icon--full {
	background: transparent;
}

.eq-header__sobre-item-icon--full img {
	width: 40px;
	height: 40px;
}

/* Search */

.eq-header__search {
	position: relative;
	flex: 1 1 auto;
	max-width: 425px;
	display: flex;
	align-items: center;
	border: 1px solid var(--eq-border);
	border-radius: 100px;
	padding: 0 14px;
	height: 52px;
	background: transparent;
}

.eq-header__search-input {
	flex: 1 1 auto;
	border: 0;
	outline: none;
	background: transparent;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	color: var(--eq-text);
	min-width: 0;
}

.eq-header__search-input::placeholder {
	color: var(--eq-placeholder);
}

.eq-header__search-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
}

.eq-header__search-btn img {
	width: 20px;
	height: 20px;
	display: block;
}

/* Actions */

.eq-header__actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 0 0 auto;
}

.eq-header__action-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	border-radius: 50%;
	background: var(--eq-teal);
	overflow: hidden;
}

.eq-header__action-circle img {
	width: 24px;
	height: 24px;
	display: block;
	object-fit: contain;
}

.eq-header__wishlist .eq-header__action-circle img {
	width: 20px;
	height: 20px;
}

.eq-header__action-label {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: var(--eq-text-muted);
}

.eq-header__action-value {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text);
}

.eq-header__account {
	position: relative;
}

.eq-header__account-btn,
.eq-header__cart {
	display: flex;
	align-items: center;
	gap: 10px;
	text-align: left;
}

.eq-header__account-text,
.eq-header__cart-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.eq-header__account-chevron {
	display: inline-flex;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	transition: transform 0.2s ease;
}

.eq-header__account-chevron img {
	width: 24px;
	height: 24px;
	display: block;
}

.eq-header__account.is-open .eq-header__account-chevron {
	transform: rotate(180deg);
}

.eq-header__account-menu {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 30;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 280px;
	padding: 10px 20px;
	background: var(--eq-white);
	border-radius: 10px;
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
}

.eq-header__account-menu[hidden] {
	display: none !important;
}

.eq-header__account-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text);
	white-space: nowrap;
}

.eq-header__account-item:hover {
	color: var(--eq-teal);
}

.eq-header__account-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	border-radius: 50%;
	background: var(--eq-icon-bg);
	overflow: hidden;
}

.eq-header__account-item-icon img {
	width: 24px;
	height: 24px;
	display: block;
	object-fit: contain;
}

.eq-header__account-item-icon--full {
	background: transparent;
}

.eq-header__account-item-icon--full img {
	width: 48px;
	height: 48px;
}

.eq-header__account-sep {
	width: 100%;
	height: 1px;
	background: var(--eq-border);
	margin: 4px 0;
}

/* Category nav */

.eq-header__nav {
	border-top: 1px solid var(--eq-border);
	border-bottom: 1px solid var(--eq-border);
}

.eq-header__nav-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: auto;
}

.eq-header__nav-item {
	position: relative;
	flex: 0 0 auto;
}

.eq-header__nav-link {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 26px 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 16.8px;
	color: var(--eq-text);
	white-space: nowrap;
	background: transparent;
}

.eq-header__nav-item.is-open > .eq-header__nav-link,
.eq-header__nav-link:hover {
	color: var(--eq-teal);
}

.eq-header__nav-chevron {
	width: 20px;
	height: 20px;
	display: block;
	flex: 0 0 20px;
	transition: transform 0.2s ease;
}

.eq-header__nav-item.is-open .eq-header__nav-chevron {
	transform: rotate(180deg);
}

.eq-header__cat-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 40;
	display: flex;
	flex-direction: column;
	gap: 30px;
	min-width: 212px;
	padding: 30px 20px;
	background: var(--eq-white);
	border-radius: 10px;
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
}

.eq-header__nav-item--align-end .eq-header__cat-menu {
	left: auto;
	right: 0;
}

.eq-header__cat-menu[hidden] {
	display: none !important;
}

.eq-header__cat-item {
	position: relative;
}

.eq-header__cat-link {
	display: flex;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 32px;
	color: var(--eq-text);
	white-space: nowrap;
}

.eq-header__cat-link:hover,
.eq-header__cat-item:hover > .eq-header__cat-link {
	color: var(--eq-teal);
}

.eq-header__cat-chevron {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	display: block;
}

.eq-header__cat-submenu {
	display: none;
	position: absolute;
	top: 0;
	left: 100%;
	min-width: 212px;
	padding: 20px;
	background: var(--eq-white);
	border-radius: 10px;
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
	flex-direction: column;
	gap: 16px;
}

.eq-header__nav-item--align-end .eq-header__cat-submenu {
	left: auto;
	right: 100%;
}

.eq-header__cat-item--has-children:hover > .eq-header__cat-submenu {
	display: flex;
}

.eq-header__cat-sublink {
	font-size: 16px;
	font-weight: 300;
	line-height: 32px;
	color: var(--eq-text);
	white-space: nowrap;
}

.eq-header__cat-sublink:hover {
	color: var(--eq-teal);
}

/* Responsive */

@media (max-width: 1199.98px) {
	.eq-header__top-inner {
		flex-wrap: wrap;
		gap: 16px;
	}

	.eq-header__search {
		order: 4;
		max-width: 100%;
		width: 100%;
		flex: 1 1 100%;
	}

	.eq-header__actions {
		margin-left: auto;
		gap: 16px;
	}

	.eq-header__account-text,
	.eq-header__cart-text {
		display: none;
	}

	.eq-header__account-chevron {
		display: none;
	}

	.eq-header__nav-list {
		justify-content: flex-start;
	}
}

@media (max-width: 767.98px) {
	.eq-header__logo {
		width: 160px;
		height: 46px;
	}

	.eq-header__sobre-btn {
		min-width: 48px;
		width: 48px;
		padding: 0;
	}

	.eq-header__sobre-label,
	.eq-header__sobre-chevron {
		display: none;
	}

	.eq-header__wishlist {
		display: none;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */

.eq-footer {
	position: relative;
	margin-top: 72px;
	color: var(--eq-white);
	font-family: var(--eq-font);
}

.eq-footer__main {
	position: relative;
	background: var(--eq-teal);
	border-top-left-radius: 60px;
	border-top-right-radius: 60px;
	padding: 100px 0 0;
	overflow: visible;
}

.eq-footer__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.eq-footer__grid {
	padding-bottom: 36px;
}

.eq-footer__newsletter-wrap {
	position: absolute;
	top: -84px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	width: min(932px, calc(100% - 40px));
	overflow: visible;
}

.eq-footer__newsletter {
	position: relative;
	z-index: 2;
	background: var(--eq-white);
	border-radius: 164px;
	height: 184px;
	padding: 24px;
	text-align: center;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.eq-footer__newsletter-side {
	position: absolute;
	top: 84px;
	width: 145px;
	height: 100px;
	z-index: 0;
	pointer-events: none;
	line-height: 0;
	overflow: hidden;
}

.eq-footer__newsletter-side img {
	position: absolute;
	top: 0;
	left: -0.69%;
	display: block;
	width: 100.69%;
	height: 80%;
	max-width: none;
}

.eq-footer__newsletter-side--left {
	left: -23px;
}

.eq-footer__newsletter-side--right {
	right: -23px;
}

.eq-footer__newsletter-title,
.eq-footer__newsletter-text,
.eq-footer__newsletter-form {
	position: relative;
	z-index: 1;
}

.eq-footer__newsletter-title {
	margin: 0;
	color: var(--eq-text);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
}

.eq-footer__newsletter-text {
	margin: 3px 0 20px;
	color: var(--eq-placeholder);
	font-size: 16px;
	font-weight: 400;
	line-height: 19.2px;
}

.eq-footer__newsletter-form {
	position: relative;
	display: flex;
	align-items: center;
	width: min(420px, 100%);
	height: 48px;
	margin: 0 auto;
	padding: 5px 5px 5px 15px;
	border: 1px solid var(--eq-placeholder);
	border-radius: 100px;
	background: transparent;
}

.eq-footer__newsletter-icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	margin-right: 8px;
}

.eq-footer__newsletter-icon img {
	width: 24px;
	height: 24px;
	display: block;
}

.eq-footer__newsletter-input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	outline: none;
	background: transparent;
	color: var(--eq-text);
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	padding: 0 12px 0 0;
}

.eq-footer__newsletter-input::placeholder {
	color: var(--eq-placeholder);
}

.eq-footer__newsletter-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 35px;
	border-radius: 100px;
	background: var(--eq-teal);
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
	color: var(--eq-white);
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	flex: 0 0 auto;
}

.eq-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.eq-footer__brand-logo {
	display: block;
	width: 248px;
	max-width: 100%;
}

.eq-footer__brand-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.eq-footer__brand-fallback {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
}

.eq-footer__brand-badge {
	width: 330px;
	max-width: 100%;
}

.eq-footer__brand-badge img {
	display: block;
	width: 100%;
	height: auto;
}

.eq-footer__col {
	display: flex;
	flex-direction: column;
}

.eq-footer__col--secondary {
	margin-top: 60px;
}

.eq-footer__heading {
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(145, 158, 171, 0.24);
	color: #d0f8fa;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
}

.eq-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.eq-footer__menu li {
	margin: 0;
}

.eq-footer__menu-link {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 8px 0;
	color: #d0f8fa;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.eq-footer__menu-link img {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	margin-top: 2px;
}

.eq-footer__menu-link:hover {
	color: var(--eq-white);
}

.eq-footer__contact-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 16px;
}

.eq-footer__contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.eq-footer__contact-item--top {
	align-items: flex-start;
}

.eq-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
}

.eq-footer__contact-icon img {
	width: 24px;
	height: 24px;
	display: block;
}

.eq-footer__contact-text,
.eq-footer__contact-mail {
	color: #d0f8fa;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.eq-footer__contact-text small {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #d0f8fa;
}

.eq-footer__contact-mail {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.eq-footer__socials {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 20px;
}

.eq-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.eq-footer__social-link img {
	width: 24px;
	height: 24px;
	display: block;
}

.eq-footer__social-link:hover {
	background: rgba(255, 255, 255, 0.2);
}

.eq-footer__bottom {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px 20px 10px;
	text-align: center;
}

.eq-footer__bottom-curve {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(1026px, calc(100% - 40px));
	pointer-events: none;
}

.eq-footer__bottom-curve img {
	display: block;
	width: 100%;
	height: auto;
}

.eq-footer__bottom-text {
	position: relative;
	z-index: 1;
	color: var(--eq-white);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding-top: 10px;
}

.eq-footer__payments {
	position: relative;
	z-index: 1;
	width: 330px;
	max-width: 100%;
}

.eq-footer__payments img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 1199.98px) {
	.eq-footer__newsletter {
		border-radius: 64px;
	}

	.eq-footer__newsletter-wrap {
		width: min(932px, calc(100% - 24px));
	}
}

@media (max-width: 991.98px) {
	.eq-footer {
		margin-top: 32px;
	}

	.eq-footer__main {
		padding-top: 220px;
	}

	.eq-footer__newsletter-wrap {
		top: -28px;
	}

	.eq-footer__col--secondary {
		margin-top: 40px;
	}
}

@media (max-width: 767.98px) {
	.eq-footer__newsletter {
		height: auto;
		min-height: auto;
		padding: 24px 20px;
		border-radius: 32px;
	}

	.eq-footer__newsletter-side {
		display: none;
	}

	.eq-footer__newsletter-title {
		font-size: 24px;
		line-height: 32px;
	}

	.eq-footer__newsletter-text {
		margin-bottom: 20px;
	}

	.eq-footer__newsletter-form {
		flex-wrap: wrap;
		height: auto;
		gap: 12px;
		padding: 14px;
		border-radius: 24px;
	}

	.eq-footer__newsletter-btn {
		width: 100%;
	}

	.eq-footer__main {
		padding-top: 260px;
	}

	.eq-footer__brand-logo {
		width: 210px;
	}

	.eq-footer__bottom-curve {
		width: calc(100% - 20px);
	}

	.eq-footer__bottom-text {
		font-size: 14px;
		line-height: 22px;
	}
}

/* -------------------------------------------------------------------------
   Homepage
   ------------------------------------------------------------------------- */

.eq-home {
	padding-bottom: 40px;
}

.eq-home__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.eq-home__section-title {
	margin: 0 0 20px;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
	color: var(--eq-text);
}

/* Banner */

.eq-home__banner {
	padding-top: 20px;
}

.eq-home__banner-slider {
	margin: 0;
}

.eq-home__banner-inner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 600px;
	border-radius: 24px;
	overflow: hidden;
	background: #8ec8d4;
}

.eq-home__banner-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
	pointer-events: none;
}

.eq-home__banner-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
	max-width: 553px;
	padding: 48px 40px 48px 12.7%;
}

.eq-home__banner-copy {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.eq-home__banner-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 48px;
	font-weight: 700;
	line-height: 64px;
	color: var(--eq-white);
}

.eq-home__banner-subtitle {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-white);
}

.eq-home__banner-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	padding: 8px 10px 8px 16px;
	border-radius: 60px;
	background: var(--eq-teal);
	color: var(--eq-white);
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.eq-home__banner-btn:hover,
.eq-home__banner-btn:focus {
	color: var(--eq-white);
	opacity: 0.92;
	text-decoration: none;
}

.eq-home__banner-btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--eq-white);
	overflow: hidden;
}

.eq-home__banner-btn-icon img {
	display: block;
	width: 28px;
	height: 28px;
}

.eq-home__banner-slider .slick-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin: 0;
	padding: 10px 0 0;
	list-style: none;
	z-index: 2;
}

.eq-home__banner-slider .slick-dots li {
	margin: 0;
	width: auto;
	height: auto;
}

.eq-home__banner-slider .slick-dots li button {
	display: block;
	width: 14px;
	height: 14px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--eq-border);
	font-size: 0;
	line-height: 0;
	opacity: 1;
}

.eq-home__banner-slider .slick-dots li button:before {
	display: none;
}

.eq-home__banner-slider .slick-dots li.slick-active button {
	width: 78px;
	height: 14px;
	background: var(--eq-white);
}

/* USPs */

.eq-home__usps {
	padding: 30px 0;
}

.eq-home__usp {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	min-height: 193px;
	padding: 32px 40px;
	border-radius: 16px;
	background: var(--eq-teal);
	text-align: center;
}

.eq-home__usp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}

.eq-home__usp-icon img {
	display: block;
	max-width: 100%;
	height: auto;
}

.eq-home__usp-icon--circle {
	border-radius: 50%;
	background: var(--eq-white);
}

.eq-home__usp-text {
	width: 100%;
}

.eq-home__usp-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: var(--eq-white);
}

.eq-home__usp-sub {
	margin: 4px 0 0;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.5);
}

/* Categorias */

.eq-home__categories {
	padding: 20px 0 40px;
}

.eq-home__cat {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 106px;
	padding: 13px;
	border: 1px solid var(--eq-border);
	border-radius: 16px;
	background: var(--eq-white);
	color: var(--eq-text);
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eq-home__cat:hover,
.eq-home__cat:focus {
	border-color: var(--eq-teal);
	color: var(--eq-text);
	text-decoration: none;
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
}

.eq-home__cat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 8px;
}

.eq-home__cat-icon img {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.eq-home__cat-name {
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	max-width: 96px;
}

/* Novidades / produtos */

.eq-home__novidades {
	padding: 20px 0 40px;
}

.eq-home__product {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
	padding: 18px;
	border: 1px solid var(--eq-border);
	border-radius: 16px;
	background: var(--eq-white);
}

.eq-home__product-media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 12px;
	background: var(--eq-border);
}

.eq-home__product-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eq-home__product-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--eq-border);
}

.eq-home__product-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.eq-home__product-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 50px;
	background: var(--eq-teal);
	color: var(--eq-white);
	font-family: var(--eq-font);
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
}

.eq-home__product-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: var(--eq-text);
	text-decoration: none;
}

.eq-home__product-title:hover,
.eq-home__product-title:focus {
	color: var(--eq-teal);
	text-decoration: none;
}

.eq-home__product-price {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	color: var(--eq-teal);
}

.eq-home__product-price del {
	margin-right: 6px;
	opacity: 0.55;
	font-weight: 500;
	color: var(--eq-text-muted);
}

.eq-home__product-price ins {
	text-decoration: none;
}

.eq-home__product-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
}

.eq-home__product-wish {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border: 1px solid var(--eq-border);
	border-radius: 999px;
	background: #f9fafb;
	text-decoration: none;
}

.eq-home__product-wish img {
	display: block;
	width: 20px;
	height: 20px;
}

.eq-home__product-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 1 1 auto;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--eq-teal);
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
	color: var(--eq-white);
	font-family: var(--eq-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 24px;
	text-decoration: none;
	white-space: nowrap;
}

.eq-home__product-cart:hover,
.eq-home__product-cart:focus {
	color: var(--eq-white);
	opacity: 0.94;
	text-decoration: none;
}

.eq-home__product-cart img {
	display: block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

@media (max-width: 1199.98px) {
	.eq-home__banner-content {
		padding-left: 48px;
		max-width: 480px;
	}

	.eq-home__banner-title {
		font-size: 40px;
		line-height: 52px;
	}
}

@media (max-width: 991.98px) {
	.eq-home__banner-inner {
		min-height: 480px;
	}

	.eq-home__banner-content {
		padding: 40px 32px;
		max-width: 100%;
	}

	.eq-home__usp {
		min-height: 160px;
		padding: 28px 24px;
	}

	.eq-home__cat-name {
		max-width: none;
	}
}

@media (max-width: 767.98px) {
	.eq-home__banner-inner {
		min-height: 420px;
	}

	.eq-home__banner-title {
		font-size: 32px;
		line-height: 40px;
	}

	.eq-home__banner-content {
		gap: 20px;
		padding: 32px 24px 56px;
	}

	.eq-home__section-title {
		font-size: 28px;
		line-height: 36px;
	}

	.eq-home__product-cart span {
		font-size: 13px;
	}

	.eq-home__banner-slider .slick-dots li.slick-active button {
		width: 48px;
	}
}

/* -------------------------------------------------------------------------
   Página Sobre
   ------------------------------------------------------------------------- */

.eq-sobre {
	padding-bottom: 40px;
}

.eq-sobre__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.eq-sobre__intro {
	padding: 10px 0 40px;
}

.eq-sobre__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 20px;
	max-width: 660px;
}

.eq-sobre__claim {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 48px;
	font-weight: 700;
	line-height: 64px;
	color: var(--eq-text);
}

.eq-sobre__intro-text {
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-sobre__intro-text p {
	margin: 0 0 24px;
}

.eq-sobre__intro-text p:last-child {
	margin-bottom: 0;
}

.eq-sobre__block {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 10px;
}

.eq-sobre__block-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: var(--eq-text);
}

.eq-sobre__block-text {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-sobre__stats {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	margin-top: 20px;
	padding: 20px 30px;
	border: 1px solid var(--eq-border);
	border-radius: 16px;
}

.eq-sobre__stat {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-align: center;
	min-width: 0;
}

.eq-sobre__stat-value {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
	color: var(--eq-text);
}

.eq-sobre__stat-label {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--eq-text-muted);
}

.eq-sobre__stats-divider {
	display: block;
	width: 1px;
	height: 72px;
	flex-shrink: 0;
	background: var(--eq-border);
}

.eq-sobre__media {
	height: 100%;
	min-height: 480px;
	border-radius: 16px;
	overflow: hidden;
	background: var(--eq-border);
}

.eq-sobre__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 40% center;
}

.eq-sobre__features {
	padding: 40px 0 60px;
}

.eq-sobre__features-wrap {
	position: relative;
	margin-top: 100px;
	padding: 120px 40px 40px;
	border-radius: 60px;
	background: var(--eq-teal);
	overflow: visible;
}

.eq-sobre__features-head {
	position: absolute;
	left: 50%;
	top: -84px;
	transform: translateX(-50%);
	z-index: 3;
	width: min(697px, calc(100% - 48px));
	height: 184px;
	padding: 0 48px;
	border-radius: 164px;
	background: var(--eq-white);
	text-align: center;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.eq-sobre__features-head::before,
.eq-sobre__features-head::after {
	display: none;
}

.eq-sobre__features-curve {
	position: absolute;
	top: 84px;
	width: 145px;
	height: 100px;
	display: block;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
	line-height: 0;
}

.eq-sobre__features-curve img {
	position: absolute;
	top: 0;
	left: -0.69%;
	display: block;
	width: 100.69%;
	height: 80%;
	max-width: none;
}

.eq-sobre__features-curve--left {
	left: -23px;
}

.eq-sobre__features-curve--right {
	right: -23px;
}

.eq-sobre__features-title,
.eq-sobre__features-sub {
	position: relative;
	z-index: 1;
}

.eq-sobre__features-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
	color: var(--eq-text);
}

.eq-sobre__features-sub {
	margin: 8px 0 0;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-sobre__features-body {
	position: relative;
	z-index: 1;
	padding-top: 20px;
}

.eq-sobre__feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	min-height: 198px;
	height: 100%;
	padding: 25px;
	border: 1px solid var(--eq-border);
	border-radius: 16px;
	background: var(--eq-white);
	text-align: center;
}

.eq-sobre__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #d0f8fa;
	overflow: hidden;
}

.eq-sobre__feature-icon--raw {
	background: transparent;
}

.eq-sobre__feature-icon img {
	display: block;
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.eq-sobre__feature-icon--raw img {
	width: 56px;
	height: 56px;
}

.eq-sobre__feature-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--eq-text);
}

.eq-sobre__feature-text {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: rgba(33, 37, 41, 0.5);
}

@media (max-width: 1199.98px) {
	.eq-sobre__features-wrap {
		margin-top: 72px;
		padding: 100px 24px 32px;
		border-radius: 40px;
	}

	.eq-sobre__features-head {
		top: -56px;
		height: auto;
		min-height: 140px;
		padding: 32px 28px;
		border-radius: 72px;
	}

	.eq-sobre__features-curve {
		display: none;
	}

	.eq-sobre__features-body {
		padding-top: 8px;
	}

	.eq-sobre__stat-value {
		font-size: 24px;
		line-height: 36px;
	}
}

@media (max-width: 991.98px) {
	.eq-sobre__claim {
		font-size: 40px;
		line-height: 52px;
	}

	.eq-sobre__content {
		max-width: none;
		padding-top: 0;
	}

	.eq-sobre__media {
		min-height: 420px;
		max-height: 560px;
	}

	.eq-sobre__stats {
		flex-wrap: wrap;
		gap: 16px 0;
		padding: 20px;
	}

	.eq-sobre__stat {
		flex: 1 1 40%;
		padding: 8px;
	}

	.eq-sobre__stats-divider {
		display: none;
	}
}

@media (max-width: 767.98px) {
	.eq-sobre__claim {
		font-size: 32px;
		line-height: 40px;
	}

	.eq-sobre__features-title {
		font-size: 24px;
		line-height: 32px;
	}

	.eq-sobre__features-wrap {
		margin-top: 56px;
		padding: 88px 16px 24px;
		border-radius: 32px;
	}

	.eq-sobre__features-head {
		top: -40px;
		width: calc(100% - 24px);
		height: auto;
		min-height: 120px;
		padding: 24px 16px;
		border-radius: 48px;
	}

	.eq-sobre__feature {
		min-height: 0;
	}

	.eq-sobre__media {
		min-height: 320px;
	}
}

/* ==========================================================================
   Z-med
   ========================================================================== */

.eq-zmed {
	font-family: var(--eq-font);
	color: var(--eq-text);
	background: var(--eq-white);
}

.eq-zmed__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 50px;
	padding-right: 50px;
}

.eq-zmed__intro,
.eq-zmed__areas {
	padding: 20px 0 40px;
}

.eq-zmed__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 662px;
}

.eq-zmed__block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.eq-zmed__title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
	color: var(--eq-text);
}

.eq-zmed__text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-zmed__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eq-zmed__list li {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-zmed__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--eq-teal);
}

.eq-zmed__check img {
	display: block;
	width: 16px;
	height: 16px;
}

.eq-zmed__hero-media {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 480px;
	border-radius: 24px;
	overflow: hidden;
}

.eq-zmed__hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
}

.eq-zmed__clientes {
	padding: 40px 0 60px;
}

.eq-zmed__clientes-wrap {
	position: relative;
	margin-top: 100px;
	padding: 120px 40px 40px;
	border-radius: 60px;
	background: var(--eq-teal-light);
	overflow: visible;
}

.eq-zmed__clientes-head {
	position: absolute;
	left: 50%;
	top: -84px;
	transform: translateX(-50%);
	z-index: 3;
	width: min(697px, calc(100% - 48px));
	height: 184px;
	padding: 0 48px;
	border-radius: 164px;
	background: var(--eq-white);
	text-align: center;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.eq-zmed__clientes-curve {
	position: absolute;
	top: 84px;
	width: 145px;
	height: 100px;
	display: block;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
	line-height: 0;
}

.eq-zmed__clientes-curve img {
	position: absolute;
	top: 0;
	left: -0.69%;
	display: block;
	width: 100.69%;
	height: 80%;
	max-width: none;
}

.eq-zmed__clientes-curve--left {
	left: -23px;
}

.eq-zmed__clientes-curve--right {
	right: -23px;
}

.eq-zmed__clientes-title {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
	color: var(--eq-text);
}

.eq-zmed__clientes-body {
	position: relative;
	z-index: 1;
	padding-top: 20px;
}

.eq-zmed__cliente {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	min-height: 160px;
	height: 100%;
	padding: 25px;
	border: 1px solid var(--eq-border);
	border-radius: 16px;
	background: var(--eq-white);
	text-align: center;
}

.eq-zmed__cliente-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--eq-teal-dark);
}

.eq-zmed__cliente-icon img {
	display: block;
	width: 24px;
	height: 24px;
}

.eq-zmed__cliente-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--eq-text);
}

.eq-zmed__visual {
	position: relative;
	width: 100%;
	min-height: 570px;
	padding-bottom: 80px;
}

.eq-zmed__visual-arc {
	position: absolute;
	right: 40px;
	bottom: 60px;
	width: 320px;
	height: 320px;
	border: 3px solid var(--eq-teal);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.eq-zmed__visual-photo {
	position: relative;
	z-index: 1;
	width: min(450px, 100%);
	height: 570px;
	border-radius: 16px;
	overflow: hidden;
}

.eq-zmed__visual-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.eq-zmed__visual-logo {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: min(287px, 55%);
	aspect-ratio: 1;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.25);
	background: var(--eq-white);
}

.eq-zmed__visual-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

@media (max-width: 1199.98px) {
	.eq-zmed__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.eq-zmed__clientes-wrap {
		margin-top: 72px;
		padding: 100px 24px 32px;
		border-radius: 40px;
	}

	.eq-zmed__clientes-head {
		top: -56px;
		height: auto;
		min-height: 140px;
		padding: 32px 28px;
		border-radius: 72px;
	}

	.eq-zmed__clientes-curve {
		display: none;
	}

	.eq-zmed__visual {
		min-height: 480px;
		padding-bottom: 60px;
	}

	.eq-zmed__visual-photo {
		height: 480px;
	}
}

@media (max-width: 991.98px) {
	.eq-zmed__title {
		font-size: 28px;
		line-height: 40px;
	}

	.eq-zmed__hero-media {
		min-height: 360px;
	}

	.eq-zmed__visual-arc {
		width: 240px;
		height: 240px;
		right: 20px;
	}
}

@media (max-width: 767.98px) {
	.eq-zmed__title {
		font-size: 24px;
		line-height: 32px;
	}

	.eq-zmed__clientes-title {
		font-size: 24px;
		line-height: 32px;
	}

	.eq-zmed__clientes-wrap {
		margin-top: 56px;
		padding: 88px 16px 24px;
		border-radius: 32px;
	}

	.eq-zmed__clientes-head {
		top: -40px;
		width: calc(100% - 24px);
		min-height: 120px;
		padding: 24px 16px;
		border-radius: 48px;
	}

	.eq-zmed__cliente {
		min-height: 0;
	}

	.eq-zmed__hero-media {
		min-height: 280px;
	}

	.eq-zmed__visual {
		min-height: 0;
		padding-bottom: 48px;
	}

	.eq-zmed__visual-photo {
		width: 85%;
		height: 360px;
	}

	.eq-zmed__visual-logo {
		width: min(180px, 48%);
	}

	.eq-zmed__visual-arc {
		width: 180px;
		height: 180px;
	}
}

/* ==========================================================================
   Contactos
   ========================================================================== */

.eq-contactos {
	font-family: var(--eq-font);
	color: var(--eq-text);
	background: var(--eq-white);
}

.eq-contactos__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 100px;
	padding-right: 100px;
}

.eq-contactos__intro {
	padding: 20px 0 40px;
}

.eq-contactos__intro-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
	margin-bottom: 20px;
}

.eq-contactos__claim {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
	color: var(--eq-text);
	max-width: 760px;
}

.eq-contactos__sub {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-contactos__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15.5px;
	min-height: 188px;
	height: 100%;
	padding: 24px;
	border: 1px solid var(--eq-border);
	border-radius: 16px;
	background: var(--eq-white);
}

.eq-contactos__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(145, 158, 171, 0.08);
}

.eq-contactos__card-icon img {
	display: block;
	width: 24px;
	height: 24px;
}

.eq-contactos__card-icon--raw {
	background: transparent;
	padding: 0;
}

.eq-contactos__card-icon--raw img {
	width: 48px;
	height: 48px;
}

.eq-contactos__card-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--eq-text);
}

.eq-contactos__card-text {
	display: flex;
	flex-direction: column;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-contactos__card-text a {
	color: var(--eq-text-muted);
	text-decoration: underline;
}

.eq-contactos__card-text a:hover {
	color: var(--eq-teal);
}

.eq-contactos__form-section {
	padding: 40px 0 60px;
}

.eq-contactos__form-wrap {
	position: relative;
	margin-top: 76px;
	padding: 100px 40px 40px;
	border-radius: 60px;
	background: var(--eq-teal-light);
	overflow: visible;
}

.eq-contactos__form-head {
	position: absolute;
	left: 50%;
	top: -76px;
	transform: translateX(-50%);
	z-index: 3;
	width: min(697px, calc(100% - 48px));
	height: 152px;
	padding: 0 48px;
	border-radius: 164px;
	background: var(--eq-white);
	text-align: center;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.eq-contactos__form-curve {
	position: absolute;
	top: 72px;
	width: 145px;
	height: 100px;
	display: block;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
	line-height: 0;
}

.eq-contactos__form-curve img {
	position: absolute;
	top: 0;
	left: -0.69%;
	display: block;
	width: 100.69%;
	height: 80%;
	max-width: none;
}

.eq-contactos__form-curve--left {
	left: -23px;
}

.eq-contactos__form-curve--right {
	right: -23px;
}

.eq-contactos__form-title {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
	color: var(--eq-text);
}

.eq-contactos__form-card {
	position: relative;
	z-index: 1;
	max-width: 1157px;
	margin: 0 auto;
	padding: 40px;
	border-radius: 16px;
	background: var(--eq-white);
}

.eq-contactos__input {
	display: block;
	width: 100%;
	height: 50px;
	padding: 16px 14px;
	border: 1px solid var(--eq-border);
	border-radius: 100px;
	background: transparent;
	color: var(--eq-text);
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	outline: none;
}

.eq-contactos__input::placeholder,
.eq-contactos__textarea::placeholder {
	color: var(--eq-placeholder);
}

.eq-contactos__input:focus,
.eq-contactos__textarea:focus {
	border-color: var(--eq-teal);
}

.eq-contactos__textarea {
	display: block;
	width: 100%;
	min-height: 200px;
	padding: 20px;
	border: 1px solid var(--eq-border);
	border-radius: 30px;
	background: transparent;
	color: var(--eq-text);
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	resize: vertical;
	outline: none;
}

.eq-contactos__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 11px 35px;
	border: 0;
	border-radius: 100px;
	background: var(--eq-teal);
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
	color: var(--eq-white);
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	cursor: pointer;
}

.eq-contactos__submit:hover {
	filter: brightness(0.96);
}

@media (max-width: 1199.98px) {
	.eq-contactos__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.eq-contactos__form-wrap {
		margin-top: 56px;
		padding: 88px 24px 32px;
		border-radius: 40px;
	}

	.eq-contactos__form-head {
		top: -48px;
		height: auto;
		min-height: 120px;
		padding: 28px 24px;
		border-radius: 72px;
	}

	.eq-contactos__form-curve {
		display: none;
	}

	.eq-contactos__form-card {
		padding: 28px;
	}
}

@media (max-width: 767.98px) {
	.eq-contactos__claim,
	.eq-contactos__form-title {
		font-size: 24px;
		line-height: 32px;
	}

	.eq-contactos__card {
		min-height: 0;
	}

	.eq-contactos__form-wrap {
		margin-top: 40px;
		padding: 72px 16px 24px;
		border-radius: 32px;
	}

	.eq-contactos__form-head {
		top: -32px;
		width: calc(100% - 24px);
		min-height: 96px;
		padding: 20px 16px;
		border-radius: 48px;
	}

	.eq-contactos__form-card {
		padding: 20px;
	}

	.eq-contactos__submit {
		width: 100%;
	}
}

/* ==========================================================================
   Textos Legais
   ========================================================================== */

.eq-legal {
	font-family: var(--eq-font);
	color: var(--eq-text);
	background: var(--eq-white);
}

.eq-legal__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 100px;
	padding-right: 100px;
}

.eq-legal__main {
	padding: 20px 0 60px;
}

.eq-legal__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 11.5px;
	text-align: center;
	margin-bottom: 30px;
}

.eq-legal__title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
	color: var(--eq-text);
}

.eq-legal__subtitle {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-legal__body {
	max-width: 1161px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.eq-legal__badge-wrap {
	display: flex;
	justify-content: center;
	width: 100%;
}

.eq-legal__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 20px;
	border-radius: 100px;
	background: rgba(208, 248, 250, 0.55);
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
	color: var(--eq-teal);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

.eq-legal__prose {
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-legal__prose > *:first-child {
	margin-top: 0;
}

.eq-legal__prose > *:last-child {
	margin-bottom: 0;
}

.eq-legal__prose p {
	margin: 0 0 16px;
}

.eq-legal__prose ul,
.eq-legal__prose ol {
	margin: 0 0 16px;
	padding-left: 1.25em;
}

.eq-legal__prose li {
	margin-bottom: 8px;
}

.eq-legal__prose strong,
.eq-legal__prose b {
	color: var(--eq-text);
	font-weight: 700;
}

.eq-legal__prose a {
	color: var(--eq-teal);
}

.eq-legal__accordion {
	width: 100%;
}

.eq-legal__item {
	border-bottom: 1px solid var(--eq-border);
}

.eq-legal__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	color: var(--eq-text);
}

.eq-legal__trigger-text {
	flex: 1 1 auto;
	font-family: var(--eq-font);
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	color: var(--eq-text);
}

.eq-legal__trigger-icon {
	display: inline-flex;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	transition: transform 0.2s ease;
}

.eq-legal__trigger-icon img {
	display: block;
	width: 20px;
	height: 20px;
}

.eq-legal__item.is-open .eq-legal__trigger-icon {
	transform: rotate(45deg);
}

.eq-legal__panel {
	display: none;
	padding: 0 0 21px;
}

.eq-legal__item.is-open .eq-legal__panel {
	display: block;
}

.eq-legal__panel-inner {
	padding-right: 36px;
}

@media (max-width: 1199.98px) {
	.eq-legal__container {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media (max-width: 767.98px) {
	.eq-legal__title {
		font-size: 28px;
		line-height: 36px;
	}

	.eq-legal__trigger-text {
		font-size: 16px;
		line-height: 24px;
	}

	.eq-legal__panel-inner {
		padding-right: 0;
	}
}

/* ==========================================================================
   Shop / Archive produtos
   ========================================================================== */

.eq-shop-page #primary,
.eq-shop-page .content-area,
.eq-shop-page .site-main {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
	float: none;
}

.eq-shop-page .woocommerce-products-header,
.eq-shop-page .page-title,
.eq-shop-page .term-description,
.eq-shop-page .woocommerce-products-header__title {
	display: none !important;
}

.eq-shop {
	padding-bottom: 60px;
	width: 100%;
}

.eq-shop__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 50px;
	padding-right: 50px;
}

.eq-shop__layout {
	display: grid;
	grid-template-columns: 351px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
}

.eq-shop__filters {
	border: 1px solid var(--eq-border);
	border-radius: 16px;
	overflow: hidden;
	background: var(--eq-white);
}

.eq-shop__filters-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 24px;
	background: #f4f6f8;
}

.eq-shop__filters-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: var(--eq-text);
}

.eq-shop__filters-clear {
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	color: var(--eq-teal);
	text-decoration: none;
	text-align: right;
}

.eq-shop__filters-clear:hover,
.eq-shop__filters-clear:focus {
	color: var(--eq-teal-dark);
	text-decoration: none;
}

.eq-shop__filters-body {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 24px;
}

.eq-shop__filter-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--eq-border);
}

.eq-shop__filter-block:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.eq-shop__filter-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.eq-shop__filter-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	color: var(--eq-text);
}

.eq-shop__filter-reset {
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: var(--eq-text-muted);
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.eq-shop__filter-reset:hover,
.eq-shop__filter-reset:focus {
	color: var(--eq-teal);
}

.eq-shop__search {
	position: relative;
	display: flex;
	align-items: center;
}

.eq-shop__search-input {
	width: 100%;
	height: 37px;
	padding: 8px 44px 8px 14px;
	border: 1px solid var(--eq-border);
	border-radius: 100px;
	background: transparent;
	font-family: var(--eq-font);
	font-size: 16px;
	line-height: 18px;
	color: var(--eq-text);
	outline: none;
}

.eq-shop__search-input::placeholder {
	color: var(--eq-placeholder);
}

.eq-shop__search-input:focus {
	border-color: var(--eq-teal);
}

.eq-shop__search-icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	pointer-events: none;
}

.eq-shop__cat-list,
.eq-shop__brand-list,
.eq-shop__cat-children {
	margin: 0;
	padding: 0;
	list-style: none;
}

.eq-shop__cat-list {
	max-height: 220px;
	overflow: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 8px 4px 8px 0;
}

.eq-shop__brand-list {
	max-height: 260px;
	overflow: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-right: 4px;
}

.eq-shop__cat-item.has-children > .eq-shop__cat-row {
	display: flex;
	align-items: center;
	gap: 4px;
}

.eq-shop__cat-row {
	display: flex;
	align-items: center;
	gap: 4px;
	width: 100%;
}

.eq-shop__cat-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.eq-shop__cat-toggle img {
	display: block;
	width: 16px;
	height: 16px;
}

.eq-shop__cat-item.is-open > .eq-shop__cat-row .eq-shop__cat-toggle {
	transform: rotate(180deg);
}

.eq-shop__cat-toggle--spacer {
	visibility: hidden;
	pointer-events: none;
}

.eq-shop__cat-children {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 10px 0 0 28px;
}

.eq-shop__cat-children[hidden] {
	display: none;
}

.eq-shop__check {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-width: 0;
	cursor: pointer;
	font-family: var(--eq-font);
	font-size: 16px;
	line-height: 24px;
	color: var(--eq-text);
}

.eq-shop__check input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.eq-shop__check-box {
	display: inline-block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border: 2px solid var(--eq-border);
	border-radius: 4px;
	background: var(--eq-white);
}

.eq-shop__check input:checked + .eq-shop__check-box {
	border-color: var(--eq-teal);
	background: var(--eq-teal);
	box-shadow: inset 0 0 0 3px var(--eq-white);
}

.eq-shop__check-label {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.eq-shop__check-count {
	flex-shrink: 0;
	color: var(--eq-text-muted);
}

.eq-shop__price-slider {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.eq-shop__price-track {
	position: relative;
	height: 20px;
	margin: 4px 0 0;
}

.eq-shop__price-track::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 4px;
	transform: translateY(-50%);
	border-radius: 4px;
	background: var(--eq-border);
}

.eq-shop__price-range {
	position: absolute;
	top: 50%;
	height: 4px;
	transform: translateY(-50%);
	border-radius: 4px;
	background: var(--eq-teal);
	z-index: 1;
}

.eq-shop__price-thumb {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 20px;
	margin: 0;
	padding: 0;
	background: transparent;
	pointer-events: none;
	appearance: none;
	-webkit-appearance: none;
	z-index: 2;
}

.eq-shop__price-thumb::-webkit-slider-thumb {
	pointer-events: auto;
	appearance: none;
	-webkit-appearance: none;
	width: 28px;
	height: 16px;
	border-radius: 999px;
	border: 0;
	background: var(--eq-teal);
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(8, 129, 120, 0.28);
	margin-top: 0;
}

.eq-shop__price-thumb::-moz-range-thumb {
	pointer-events: auto;
	width: 28px;
	height: 16px;
	border-radius: 999px;
	border: 0;
	background: var(--eq-teal);
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(8, 129, 120, 0.28);
}

.eq-shop__price-thumb::-webkit-slider-runnable-track {
	height: 4px;
	background: transparent;
	border: 0;
}

.eq-shop__price-thumb::-moz-range-track {
	height: 4px;
	background: transparent;
	border: 0;
}

.eq-shop__price-inputs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.eq-shop__price-input {
	flex: 1 1 0;
	width: auto;
	min-width: 0;
	max-width: 120px;
	height: 34px;
	padding: 5px 14px;
	border: 1px solid var(--eq-border);
	border-radius: 100px;
	background: var(--eq-white);
	font-family: var(--eq-font);
	font-size: 16px;
	line-height: 24px;
	color: var(--eq-text);
	outline: none;
	text-align: left;
	-moz-appearance: textfield;
}

.eq-shop__price-input::-webkit-outer-spin-button,
.eq-shop__price-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.eq-shop__price-input:focus {
	border-color: var(--eq-teal);
}

.eq-shop__price-sep {
	flex: 0 0 auto;
	font-family: var(--eq-font);
	font-size: 16px;
	line-height: 22px;
	color: var(--eq-text-muted);
}

.eq-shop__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.eq-shop__toolbar-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.eq-shop__view-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: var(--eq-teal);
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
}

.eq-shop__view-btn img {
	display: block;
	width: 24px;
	height: 24px;
}

.eq-shop__results {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-shop__ordering-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.eq-shop__ordering-select {
	appearance: none;
	-webkit-appearance: none;
	min-width: 164px;
	height: 44px;
	padding: 10px 44px 10px 15px;
	border: 1px solid var(--eq-border);
	border-radius: 20px;
	background: var(--eq-white);
	font-family: var(--eq-font);
	font-size: 16px;
	line-height: 24px;
	color: var(--eq-placeholder);
	cursor: pointer;
	outline: none;
}

.eq-shop__ordering-select:focus {
	border-color: var(--eq-teal);
	color: var(--eq-text);
}

.eq-shop__ordering-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	pointer-events: none;
}

.eq-shop .products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	width: 100% !important;
}

.eq-shop .products::before,
.eq-shop .products::after {
	display: none !important;
	content: none !important;
}

.eq-shop__product-item,
.eq-shop .products li.product,
.eq-shop-page ul.products li.product {
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: none !important;
	position: relative;
}

.eq-shop__product {
	height: 100%;
	background: var(--eq-white);
}

.eq-shop__product .eq-home__product-media {
	background: #f4f6f8;
}

.eq-shop__product .eq-home__product-media img {
	object-fit: contain;
}

.eq-shop__product-body {
	align-items: flex-start;
	text-align: left;
	width: 100%;
}

.eq-shop__product .eq-home__product-title {
	width: 100%;
}

.eq-shop__product .eq-home__product-actions {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	width: 100%;
}

.eq-shop-page .eq-home__product-cart,
.eq-shop .eq-home__product-cart,
.eq-shop-page a.add_to_cart_button.eq-home__product-cart {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	flex: 1 1 auto !important;
	width: auto !important;
	min-width: 0 !important;
	height: 44px !important;
	min-height: 44px !important;
	max-height: 44px !important;
	padding: 10px 18px !important;
	border: 0 !important;
	border-radius: 999px !important;
	aspect-ratio: auto !important;
	overflow: visible !important;
	background: var(--eq-teal) !important;
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow) !important;
	color: var(--eq-white) !important;
	font-family: var(--eq-font) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 24px !important;
	text-decoration: none !important;
	white-space: nowrap !important;
}

.eq-shop-page .eq-home__product-cart span,
.eq-shop .eq-home__product-cart span {
	display: inline !important;
	overflow: visible !important;
	text-indent: 0 !important;
	width: auto !important;
	height: auto !important;
}

.eq-shop-page .eq-home__product-cart img,
.eq-shop .eq-home__product-cart img {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	flex-shrink: 0 !important;
	margin: 0 !important;
}

.eq-shop__pagination {
	margin-top: 40px;
}

.eq-shop__pagination-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eq-shop__page a,
.eq-shop__page span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	border: 1px solid var(--eq-border);
	background: var(--eq-white);
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text);
	text-decoration: none;
}

.eq-shop__page.is-active a,
.eq-shop__page.is-active span,
.eq-shop__page .current {
	border-color: var(--eq-teal);
	background: rgba(26, 180, 186, 0.08);
	color: var(--eq-teal);
	font-weight: 600;
}

.eq-shop__page.is-dots span,
.eq-shop__page .dots {
	border: 0;
	background: transparent;
	width: auto;
	min-width: 24px;
}

.eq-shop__page-icon {
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--eq-text);
	border-bottom: 2px solid var(--eq-text);
}

.eq-shop__page-icon--prev {
	transform: rotate(135deg);
	margin-left: 3px;
}

.eq-shop__page-icon--next {
	transform: rotate(-45deg);
	margin-right: 3px;
}

.eq-shop .woocommerce-info,
.eq-shop .woocommerce-message,
.eq-shop .woocommerce-error {
	margin-bottom: 20px;
}

@media (max-width: 1199.98px) {
	.eq-shop__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.eq-shop__layout {
		grid-template-columns: 300px minmax(0, 1fr);
	}

	.eq-shop .products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991.98px) {
	.eq-shop__layout {
		grid-template-columns: 1fr;
	}

	.eq-shop__sidebar {
		order: 1;
	}

	.eq-shop__main {
		order: 0;
	}
}

@media (max-width: 575.98px) {
	.eq-shop .products {
		grid-template-columns: 1fr;
	}

	.eq-shop__toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.eq-shop__ordering-select {
		width: 100%;
	}

	.eq-shop-page .eq-home__product-cart,
	.eq-shop .eq-home__product-cart {
		padding: 10px 14px !important;
		font-size: 13px !important;
	}
}

/* ==========================================================================
   Marcas
   ========================================================================== */

.eq-marcas {
	padding-bottom: 60px;
}

.eq-marcas__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 50px;
	padding-right: 50px;
}

.eq-marcas__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin-bottom: 40px;
	text-align: center;
}

.eq-marcas__title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 40px;
	font-weight: 700;
	line-height: 52px;
	color: var(--eq-text);
}

.eq-marcas__filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 900px;
}

.eq-marcas__filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	padding: 11px 20px;
	border: 0;
	border-radius: 100px;
	background: var(--eq-white);
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
	color: var(--eq-text);
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	text-decoration: none;
	cursor: pointer;
}

.eq-marcas__filter:hover,
.eq-marcas__filter:focus {
	color: var(--eq-teal);
	text-decoration: none;
}

.eq-marcas__filter.is-active {
	background: rgba(208, 248, 250, 0.55);
	color: var(--eq-teal);
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow);
}

.eq-marcas__empty {
	margin: 0;
	text-align: center;
	color: var(--eq-text-muted);
	font-family: var(--eq-font);
	font-size: 16px;
	line-height: 24px;
}

.eq-marcas__groups {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.eq-marcas__group[hidden] {
	display: none !important;
}

.eq-marcas__letter {
	margin: 0 0 16px;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	color: var(--eq-teal);
}

.eq-marcas__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eq-marcas__card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	padding: 16px 18px;
	border: 1px solid rgba(223, 227, 232, 0.24);
	border-radius: 16px;
	background: var(--eq-border);
	color: var(--eq-text);
	text-decoration: none;
	text-align: center;
	transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.eq-marcas__card:hover,
.eq-marcas__card:focus {
	opacity: 0.92;
	box-shadow: 0 6px 15px 0 rgba(8, 129, 120, 0.12);
	color: var(--eq-text);
	text-decoration: none;
}

.eq-marcas__card.has-thumb {
	background: var(--eq-white);
	border-color: var(--eq-border);
	padding: 12px 16px;
}

.eq-marcas__name {
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: var(--eq-text);
}

.eq-marcas__logo {
	display: block;
	max-width: 100%;
	width: auto;
	height: 40px;
	object-fit: contain;
}

@media (max-width: 1199.98px) {
	.eq-marcas__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.eq-marcas__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.eq-marcas__title {
		font-size: 32px;
		line-height: 40px;
	}

	.eq-marcas__letter {
		font-size: 28px;
		line-height: 34px;
	}

	.eq-marcas__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.eq-marcas__filter {
		min-width: 40px;
		padding: 8px 14px;
		font-size: 14px;
	}
}

/* ------------------------------------------------------------------ */
/* Single product                                                      */
/* ------------------------------------------------------------------ */

.eq-product {
	padding-bottom: 60px;
}

.eq-product__container {
	max-width: 1425px;
	margin: 0 auto;
	padding-left: 50px;
	padding-right: 50px;
}

.eq-product__top {
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
	gap: 30px;
	align-items: start;
	margin-bottom: 40px;
}

.eq-product__gallery-card,
.eq-product__summary-card {
	border: 1px solid rgba(223, 227, 232, 0.7);
	border-radius: 24px;
	background: var(--eq-white);
	box-shadow: 0 8px 24px 0 rgba(33, 37, 41, 0.06);
}

.eq-product__gallery-card {
	padding: 18px;
}

.eq-product__summary-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 28px 28px 30px;
}

.eq-product__gallery {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.eq-product__gallery-main {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: var(--eq-white);
	aspect-ratio: 1 / 1;
	min-height: 420px;
}

.eq-product__gallery-slide {
	margin: 0;
	width: 100%;
	height: 100%;
}

.eq-product__gallery-slide[hidden] {
	display: none !important;
}

.eq-product__gallery-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: var(--eq-white);
}

.eq-product__gallery-placeholder,
.eq-product__thumb-placeholder,
.eq-product__block-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 180px;
	background: var(--eq-border);
	border-radius: 16px;
}

.eq-product__gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 100px;
	background: var(--eq-white);
	cursor: pointer;
	box-shadow: 0 6px 15px 0 rgba(8, 129, 120, 0.12);
}

.eq-product__gallery-nav--prev {
	left: 14px;
}

.eq-product__gallery-nav--next {
	right: 14px;
}

.eq-product__gallery-nav img {
	display: block;
	width: 22px;
	height: 22px;
}

.eq-product__thumbs {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
}

.eq-product__thumb {
	flex: 0 0 108px;
}

.eq-product__thumb-btn {
	display: block;
	width: 108px;
	height: 108px;
	padding: 10px;
	border: 1px solid var(--eq-border);
	border-radius: 8px;
	background: var(--eq-white);
	cursor: pointer;
	overflow: hidden;
}

.eq-product__thumb.is-active .eq-product__thumb-btn {
	border-color: var(--eq-teal);
}

.eq-product__thumb-btn img,
.eq-product__thumb-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 8px;
	background: var(--eq-border);
	min-height: 0;
}

.eq-product__title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--eq-text);
}

.eq-product__price {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 36px;
	color: var(--eq-price);
}

.eq-product__price .amount,
.eq-product__price bdi,
.eq-product__price .woocommerce-Price-amount {
	color: var(--eq-price);
}

.eq-product__price del {
	opacity: 0.55;
	font-weight: 500;
	margin-right: 8px;
	color: var(--eq-text-muted);
}

.eq-product__price del .amount,
.eq-product__price del .woocommerce-Price-amount {
	color: var(--eq-text-muted);
}

.eq-product__price ins {
	text-decoration: none;
}

.eq-product__purchase {
	padding: 6px 0 4px;
}

.eq-product__qty-label {
	margin: 0 0 12px;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--eq-text);
}

.eq-product__cart-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.eq-product__qty.quantity {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
	width: 108px;
	max-width: 108px;
	height: 44px;
	padding: 0 10px;
	border: 1px solid var(--eq-border);
	border-radius: 80px;
	background: var(--eq-white);
}

.eq-product__qty .qty {
	width: 36px;
	min-width: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-align: center;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--eq-text);
	appearance: textfield;
	-moz-appearance: textfield;
}

.eq-product__qty .qty::-webkit-outer-spin-button,
.eq-product__qty .qty::-webkit-inner-spin-button {
	appearance: none;
	margin: 0;
}

.eq-product__qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.eq-product__qty-btn img {
	display: block;
	width: 20px;
	height: 20px;
}

.eq-product__cart-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.eq-product__wish {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1.5px solid var(--eq-teal);
	border-radius: 100px;
	background: var(--eq-white);
	text-decoration: none;
	flex: 0 0 44px;
}

.eq-product__wish img {
	display: block;
	width: 20px;
	height: 20px;
}

.eq-product__add-btn.single_add_to_cart_button,
.eq-product__add-btn.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 239px;
	height: 44px;
	padding: 10px 28px !important;
	border: 0 !important;
	border-radius: 100px !important;
	background: var(--eq-teal) !important;
	box-shadow: 0 6px 15px 0 var(--eq-teal-shadow) !important;
	color: var(--eq-white) !important;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-decoration: none !important;
}

.eq-product__add-btn img {
	display: block;
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

.eq-product__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 4px;
}

.eq-product__meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	font-family: var(--eq-font);
	font-size: 16px;
	line-height: 24px;
}

.woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    width: 100% !important;
}

.eq-product__meta-label {
	font-weight: 600;
	color: var(--eq-text);
}

.eq-product__meta-value {
	font-weight: 400;
	color: var(--eq-text-muted);
}

.eq-product__share {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--eq-teal);
}

.eq-product__share img {
	display: block;
	width: 24px;
	height: 24px;
}

.eq-product__share.is-copied span::after {
	content: " (copiado)";
}

.eq-product__details {
	margin-bottom: 48px;
}

.eq-product__details-card {
	border: 1px solid var(--eq-border);
	border-radius: 24px;
	overflow: hidden;
	background: var(--eq-white);
}

.eq-product__details-head {
	background: #f4f6f8;
	padding: 16px 24px;
}

.eq-product__details-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: var(--eq-text);
}

.eq-product__details-body {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 30px 20px;
}

.eq-product__details-content {
	font-family: var(--eq-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-product__details-content p {
	margin: 0 0 1em;
}

.eq-product__details-content p:last-child {
	margin-bottom: 0;
}

.eq-product__features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 30px;
}

.eq-product__feature-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eq-product__feature-item {
	display: flex;
	align-items: center;
	gap: 20px;
}

.eq-product__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 100px;
	background: var(--eq-teal);
}

.eq-product__feature-icon img {
	display: block;
	width: 16px;
	height: 16px;
}

.eq-product__feature-text {
	flex: 1 1 auto;
	font-family: var(--eq-font);
	font-size: 16px;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-product__block {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
	gap: 30px;
	align-items: start;
}

.eq-product__block--image-right {
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.eq-product__block--image-right .eq-product__block-media {
	order: 2;
}

.eq-product__block--image-right .eq-product__block-content {
	order: 1;
}

.eq-product__block-media {
	min-height: 320px;
	border-radius: 24px;
	overflow: hidden;
	background: var(--eq-border);
}

.eq-product__block-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.eq-product__block-placeholder {
	min-height: 320px;
	border-radius: 24px;
}

.eq-product__block-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.eq-product__block-title {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 36px;
	color: var(--eq-text);
}

.eq-product__block-text {
	margin: 0;
	font-family: var(--eq-font);
	font-size: 16px;
	line-height: 24px;
	color: var(--eq-text-muted);
}

.eq-product__related {
	margin-top: 20px;
}

.eq-product__related-title {
	margin: 0 0 24px;
	font-family: var(--eq-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	color: var(--eq-text);
	text-align: center;
}

.eq-product__related .eq-shop__products,
.eq-product__related ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	float: none !important;
	width: 100% !important;
}

.eq-product__related .eq-shop__product-item,
.eq-product__related li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
}

.eq-product__related .eq-home__product {
	height: 100%;
}

@media (max-width: 1199.98px) {
	.eq-product__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.eq-product__top {
		grid-template-columns: 1fr;
	}

	.eq-product__related .eq-shop__products,
	.eq-product__related ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.eq-product__title {
		font-size: 26px;
		line-height: 34px;
	}

	.eq-product__price {
		font-size: 20px;
		line-height: 28px;
	}

	.eq-product__gallery-main {
		min-height: 280px;
	}

	.eq-product__thumb,
	.eq-product__thumb-btn {
		flex-basis: 80px;
		width: 80px;
		height: 80px;
	}

	.eq-product__features,
	.eq-product__block,
	.eq-product__block--image-right {
		grid-template-columns: 1fr;
	}

	.eq-product__block--image-right .eq-product__block-media,
	.eq-product__block--image-right .eq-product__block-content {
		order: initial;
	}

	.eq-product__cart-row {
		flex-direction: column;
		align-items: stretch;
	}

	.eq-product__cart-actions {
		width: 100%;
	}

	.eq-product__add-btn.single_add_to_cart_button,
	.eq-product__add-btn.button {
		flex: 1 1 auto;
		min-width: 0;
		width: 100%;
	}

	.eq-product__related .eq-shop__products,
	.eq-product__related ul.products {
		grid-template-columns: 1fr;
	}
}
