:root {
    --hm-footer-bg: #292c24;
    --hm-footer-bg-dark: #22241e;
    --hm-footer-text: #eee8df;
    --hm-footer-muted: #b9b2a8;
    --hm-footer-accent: #cfc1af;
    --hm-footer-border: rgba(238, 232, 223, 0.14);
    --hm-footer-transition: 300ms ease;
}

.hm-footer,
.hm-footer * {
    box-sizing: border-box;
}

.hm-footer {
    position: relative;
    overflow: hidden;
    background: var(--hm-footer-bg);
    color: var(--hm-footer-text);
    font-family: "Montserrat", Arial, sans-serif;
}

/* Círculos decorativos */
.hm-footer::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -100px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(238, 232, 223, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.hm-footer::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -240px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(238, 232, 223, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

/* Área principal */
.hm-footer__main {
    position: relative;
    z-index: 1;
    padding: 90px 32px 75px;
}

.hm-footer__inner {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.65fr 0.75fr 0.95fr 1.2fr;
    gap: 65px;
}

/* Logo e marca */
.hm-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--hm-footer-text);
    text-decoration: none;
}

.hm-footer__logo:hover,
.hm-footer__logo:focus {
    color: var(--hm-footer-text);
    text-decoration: none;
}

.hm-footer__logo-image {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 65px;
}

.hm-footer__logo-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.82;
    transition:
        opacity var(--hm-footer-transition),
        transform var(--hm-footer-transition);
}

.hm-footer__logo:hover .hm-footer__logo-img {
    opacity: 1;
    transform: scale(1.04);
}

.hm-footer__logo-content {
    display: flex;
    flex-direction: column;
}

.hm-footer__logo-title {
    color: var(--hm-footer-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.5px;
}

.hm-footer__logo-subtitle {
    margin-top: 9px;
    color: var(--hm-footer-text);
    font-size: 7px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hm-footer__slogan {
    margin: 31px 0 0;
    color: var(--hm-footer-accent);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.3;
}

.hm-footer__description {
    max-width: 360px;
    margin: 17px 0 0;
    color: var(--hm-footer-muted);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
}

/* Redes sociais */
.hm-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 27px;
}

.hm-footer__social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hm-footer-border);
    color: var(--hm-footer-text);
    text-decoration: none;
    transition:
        color var(--hm-footer-transition),
        background var(--hm-footer-transition),
        border-color var(--hm-footer-transition),
        transform var(--hm-footer-transition);
}

.hm-footer__social-link:hover,
.hm-footer__social-link:focus-visible {
    border-color: var(--hm-footer-accent);
    background: var(--hm-footer-accent);
    color: var(--hm-footer-bg);
    text-decoration: none;
    transform: translateY(-3px);
}

.hm-footer__social-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

/* Títulos das colunas */
.hm-footer__heading {
    margin: 6px 0 27px;
    color: var(--hm-footer-accent);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Menus */
.hm-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hm-footer__links li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hm-footer__links li + li {
    margin-top: 16px;
}

.hm-footer__links a,
.hm-footer__menu-link {
    position: relative;
    display: inline-block;
    color: var(--hm-footer-muted);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color var(--hm-footer-transition),
        transform var(--hm-footer-transition);
}

.hm-footer__links a::before,
.hm-footer__menu-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    width: 7px;
    height: 1px;
    background: var(--hm-footer-accent);
    opacity: 0;
    transform: translateX(-5px);
    transition:
        opacity var(--hm-footer-transition),
        transform var(--hm-footer-transition);
}

.hm-footer__links a:hover,
.hm-footer__links a:focus-visible,
.hm-footer__menu-link:hover,
.hm-footer__menu-link:focus-visible {
    color: var(--hm-footer-text);
    text-decoration: none;
    transform: translateX(16px);
}

.hm-footer__links a:hover::before,
.hm-footer__links a:focus-visible::before,
.hm-footer__menu-link:hover::before,
.hm-footer__menu-link:focus-visible::before {
    opacity: 1;
    transform: translateX(0);
}

/* Item atual */
.hm-footer__links .current-menu-item > a,
.hm-footer__links .current_page_item > a {
    color: var(--hm-footer-text);
}

/* Contato */
.hm-footer__contact p {
    margin: 0;
    color: var(--hm-footer-muted);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.85;
}

.hm-footer__email {
    display: inline-block;
    margin-top: 20px;
    color: var(--hm-footer-text);
    border-bottom: 1px solid var(--hm-footer-border);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.4;
    overflow-wrap: anywhere;
    text-decoration: none;
    transition:
        color var(--hm-footer-transition),
        border-color var(--hm-footer-transition);
}

.hm-footer__email:hover,
.hm-footer__email:focus-visible {
    border-color: var(--hm-footer-accent);
    color: var(--hm-footer-accent);
    text-decoration: none;
}

/* Botão de contato */
.hm-footer__button {
    width: max-content;
    min-height: 47px;
    margin-top: 27px;
    padding: 13px 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid var(--hm-footer-accent);
    background: transparent;
    color: var(--hm-footer-text);
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color var(--hm-footer-transition),
        background var(--hm-footer-transition),
        transform var(--hm-footer-transition);
}

.hm-footer__button:visited {
    color: var(--hm-footer-text);
}

.hm-footer__button:hover,
.hm-footer__button:focus-visible {
    background: var(--hm-footer-accent);
    color: var(--hm-footer-bg);
    text-decoration: none;
    transform: translateY(-2px);
}

.hm-footer__button span {
    font-size: 17px;
    transition: transform var(--hm-footer-transition);
}

.hm-footer__button:hover span {
    transform: translateX(4px);
}

/* Barra inferior */
.hm-footer__bottom {
    position: relative;
    z-index: 1;
    padding: 22px 32px;
    border-top: 1px solid var(--hm-footer-border);
    background: var(--hm-footer-bg-dark);
}

.hm-footer__bottom-inner {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.hm-footer__bottom p {
    margin: 0;
    color: var(--hm-footer-muted);
    font-size: 10px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.hm-footer__credit a {
    color: var(--hm-footer-accent);
    text-decoration: none;
}

.hm-footer__credit a:hover,
.hm-footer__credit a:focus-visible {
    color: var(--hm-footer-text);
    text-decoration: underline;
}

/* Foco acessível */
.hm-footer a:focus-visible {
    outline: 1px solid var(--hm-footer-accent);
    outline-offset: 4px;
}

/* Tablet */
@media (max-width: 1024px) {
    .hm-footer__main {
        padding: 75px 30px 65px;
    }

    .hm-footer__inner {
        grid-template-columns: 1.6fr 1fr 1fr;
        gap: 55px 40px;
    }

    .hm-footer__brand {
        grid-column: 1 / -1;
        padding-bottom: 45px;
        border-bottom: 1px solid var(--hm-footer-border);
    }

    .hm-footer__description {
        max-width: 520px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hm-footer__main {
        padding: 60px 24px 50px;
    }

    .hm-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }

    .hm-footer__brand,
    .hm-footer__contact {
        grid-column: 1 / -1;
    }

    .hm-footer__logo-image {
        width: 53px;
        height: 53px;
        flex-basis: 53px;
    }

    .hm-footer__logo-title {
        font-size: 34px;
    }

    .hm-footer__logo-subtitle {
        font-size: 6px;
        letter-spacing: 1px;
        white-space: normal;
    }

    .hm-footer__slogan {
        font-size: 23px;
    }

    .hm-footer__bottom {
        padding: 21px 24px;
    }

    .hm-footer__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* Celulares pequenos */
@media (max-width: 430px) {
    .hm-footer__inner {
        grid-template-columns: 1fr;
    }

    .hm-footer__brand,
    .hm-footer__contact {
        grid-column: auto;
    }

    .hm-footer__column {
        padding-bottom: 35px;
        border-bottom: 1px solid var(--hm-footer-border);
    }

    .hm-footer__contact {
        padding-bottom: 0;
        border-bottom: 0;
    }
}

/* Menos animações */
@media (prefers-reduced-motion: reduce) {
    .hm-footer *,
    .hm-footer *::before,
    .hm-footer *::after {
        transition-duration: 0.01ms !important;
    }
}

.page {
  margin: 0 !important;
}

:root {
	--hm-legal-olive: #34382d;
	--hm-legal-beige: #cfc1af;
	--hm-legal-ivory: #f8f5f0;
	--hm-legal-text: #292a24;
	--hm-legal-muted: #716b63;
	--hm-legal-border: rgba(52, 56, 45, 0.16);
}

.hm-legal,
.hm-legal * {
	box-sizing: border-box;
}

.hm-legal {
	background: var(--hm-legal-ivory);
	color: var(--hm-legal-text);
	font-family: "Montserrat", Arial, sans-serif;
	line-height: 1.8;
}

.hm-legal__container {
	width: min(100% - 64px, 960px);
	margin-inline: auto;
}

.hm-legal__hero {
	padding: 130px 0 100px;
	background: #e4dbcf;
}

.hm-legal__eyebrow,
.hm-legal__updated,
.hm-legal__toc > p {
	color: var(--hm-legal-muted);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2.6px;
	text-transform: uppercase;
}

.hm-legal__hero h1 {
	max-width: 850px;
	margin: 18px 0 25px;
	color: var(--hm-legal-olive);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(58px, 8vw, 102px);
	font-weight: 400;
	line-height: 0.92;
	letter-spacing: -3px;
}

.hm-legal__intro {
	max-width: 720px;
	margin-bottom: 24px;
	color: var(--hm-legal-muted);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(24px, 3vw, 34px);
	font-style: italic;
	line-height: 1.35;
}

.hm-legal__content {
	padding-block: 90px 130px;
}

.hm-legal__content section {
	padding-block: 55px;
	border-bottom: 1px solid var(--hm-legal-border);
	scroll-margin-top: 120px;
}

.hm-legal__content h2,
.hm-legal__content h3 {
	color: var(--hm-legal-olive);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 500;
}

.hm-legal__content h2 {
	margin: 0 0 28px;
	font-size: clamp(36px, 5vw, 52px);
	line-height: 1;
}

.hm-legal__content h3 {
	margin: 35px 0 12px;
	font-size: 29px;
}

.hm-legal__content p,
.hm-legal__content li {
	font-size: 15px;
}

.hm-legal__content a {
	color: var(--hm-legal-olive);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.hm-legal__toc {
	margin-bottom: 35px;
	padding: 38px 42px;
	border: 1px solid var(--hm-legal-border);
	background: rgba(255, 255, 255, 0.4);
}

.hm-legal__toc ol {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 35px;
	margin: 18px 0 0;
	padding-left: 22px;
}

.hm-legal__table-wrap {
	overflow-x: auto;
	margin-top: 35px;
}

.hm-legal table {
	width: 100%;
	min-width: 820px;
	border-collapse: collapse;
	background: #fff;
	font-size: 13px;
}

.hm-legal th,
.hm-legal td {
	padding: 17px 18px;
	border: 1px solid var(--hm-legal-border);
	text-align: left;
	vertical-align: top;
}

.hm-legal th {
	background: var(--hm-legal-olive);
	color: var(--hm-legal-ivory);
	font-weight: 500;
}

.hm-legal code {
	font-size: 12px;
	overflow-wrap: anywhere;
}

.hm-legal__notice,
.hm-legal__review {
	margin-top: 38px;
	padding: 30px 34px;
	border-left: 3px solid var(--hm-legal-olive);
	background: #e4dbcf;
}

.hm-legal__review {
	margin-top: 70px;
	padding: 46px;
}

.hm-legal__review h2 {
	font-size: 38px;
}

.hm-legal__review p:last-child,
.hm-legal__notice p:last-child {
	margin-bottom: 0;
}

@media (max-width: 700px) {
	.hm-legal__container {
		width: min(100% - 36px, 960px);
	}

	.hm-legal__hero {
		padding: 90px 0 70px;
	}

	.hm-legal__hero h1 {
		font-size: 55px;
		letter-spacing: -1.5px;
	}

	.hm-legal__content {
		padding-block: 55px 90px;
	}

	.hm-legal__content section {
		padding-block: 42px;
	}

	.hm-legal__toc {
		padding: 28px;
	}

	.hm-legal__toc ol {
		grid-template-columns: 1fr;
	}

	.hm-legal__notice,
	.hm-legal__review {
		padding: 25px;
	}
}



html,
body {
	width: 100%;
	max-width: 100%;
	margin: 0;
	overflow-x: clip;
}

.site,
.site-content,
main {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

img,
video,
iframe,
svg {
	max-width: 100%;
	height: auto;
}

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


@media (max-width: 900px) {
	.main-navigation {
		position: fixed;
		inset: 96px 0 0;
		z-index: 9998;

		width: 100%;
		height: calc(100dvh - 96px);
		padding: 45px 24px;

		overflow-y: auto;
		background: #f8f5f0;

		visibility: hidden;
		opacity: 0;
		transform: translateY(-15px);

		transition:
			opacity 300ms ease,
			transform 300ms ease,
			visibility 300ms;
	}

	.main-navigation.toggled,
	.main-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}
}
 