:root {
    --bg: #111214;
    --bg-soft: #17181b;
    --bg-elev: rgba(255, 255, 255, 0.04);
    --surface: rgba(255, 255, 255, 0.06);
    --surface-strong: rgba(255, 255, 255, 0.1);
    --text: #f5f5f3;
    --text-soft: rgba(245, 245, 243, 0.74);
    --text-muted: rgba(245, 245, 243, 0.54);
    --gold: #cba15c;
    --gold-strong: #e1bf84;
    --gold-deep: #8f6b35;
    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(203, 161, 92, 0.48);
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --container: 1240px;
    --header-h: 92px;
    --ease: 240ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 14% 18%, rgba(203, 161, 92, 0.12), transparent 24%),
        radial-gradient(circle at 82% 24%, rgba(203, 161, 92, 0.08), transparent 22%),
        linear-gradient(180deg, #131417 0%, #101113 52%, #0d0e10 100%);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
}

/* Seleção de texto */
::selection {
    background: var(--gold);
    color: #111214;
}

::-moz-selection {
    background: var(--gold);
    color: #111214;
}

/* Barra de rolagem - Chrome, Edge e Safari */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0d0e10;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-deep) 0%, var(--gold) 100%);
    border-radius: 999px;
    border: 2px solid #0d0e10;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-strong) 100%);
}

/* Barra de rolagem - Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #0d0e10;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

/* Header */

.siteHeader {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(14, 15, 17, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition:
        background-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 520ms cubic-bezier(0.22, 1, 0.36, 1),
        -webkit-backdrop-filter 520ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.siteHeader.is-scrolled {
    background: rgba(14, 15, 17, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.siteHeader__inner {
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand__logo {
    width: auto;
    height: 56px;
    object-fit: contain;
}

.navDesktop {
    display: flex;
    justify-content: center;
}

.navDesktop__list {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navDesktop__link {
    position: relative;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color var(--ease);
}

.navDesktop__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    transition: transform var(--ease);
}

.navDesktop__link:hover,
.navDesktop__link:focus-visible {
    color: var(--gold-strong);
}

.navDesktop__link:hover::after,
.navDesktop__link:focus-visible::after {
    transform: scaleX(1);
}

.siteHeader__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 760ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 760ms cubic-bezier(0.22, 1, 0.36, 1),
        color 280ms ease 180ms;
}

.btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn__icon svg {
    width: 18px;
    height: 18px;
}

.btn--goldLine {
    color: var(--gold-strong);
    border: 1px solid var(--border-gold);
    background-image:
        linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%),
        linear-gradient(rgba(203, 161, 92, 0.04), rgba(203, 161, 92, 0.04));
    background-repeat: no-repeat, no-repeat;
    background-position: left top, left top;
    background-size: 0% 100%, 100% 100%;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 0 0 rgba(203, 161, 92, 0);
    transition:
        background-size 900ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 760ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 760ms cubic-bezier(0.22, 1, 0.36, 1),
        color 260ms ease 220ms;
}

.btn--goldLine:hover,
.btn--goldLine:focus-visible {
    color: #111214;
    border-color: rgba(203, 161, 92, 0);
    background-size: 100% 100%, 100% 100%;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 16px 34px rgba(203, 161, 92, 0.28);
    transform: translateY(-1px);
}

.btn--hero {
    min-height: 62px;
    padding-inline: 28px;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

.navToggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.navToggle__line {
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--text);
}

.mobileNav {
    position: fixed;
    inset: 0;
    z-index: 60;
    pointer-events: none;
}

.mobileNav[aria-hidden="false"] {
    pointer-events: auto;
}

.mobileNav__overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.56);
    transition: opacity var(--ease);
}

.mobileNav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100%;
    padding: 22px 20px 28px;
    background: linear-gradient(180deg, #17181b 0%, #111214 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform var(--ease);
}

.mobileNav[aria-hidden="false"] .mobileNav__overlay {
    opacity: 1;
}

.mobileNav[aria-hidden="false"] .mobileNav__panel {
    transform: translateX(0);
}

.mobileNav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobileNav__title {
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}

.mobileNav__close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.mobileNav__close svg {
    width: 18px;
    height: 18px;
}

.mobileNav__body {
    display: grid;
    gap: 8px;
    padding-top: 22px;
}

.mobileNav__link {
    padding: 14px 0;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color var(--ease), padding-left var(--ease);
}

.mobileNav__link:hover,
.mobileNav__link:focus-visible {
    color: var(--gold-strong);
    padding-left: 6px;
}

.mobileNav__cta {
    margin-top: 16px;
}

/* Hero */

.hero {
    position: relative;
    overflow: clip;
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 12px);
}

.hero__blur {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    pointer-events: none;
}

.hero__blur--left {
    top: 110px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: rgba(203, 161, 92, 0.12);
}

.hero__blur--right {
    right: 4%;
    bottom: 8%;
    width: 320px;
    height: 320px;
    background: rgba(203, 161, 92, 0.1);
}

.hero__inner {
    min-height: calc(100svh - var(--header-h));
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
    gap: 28px;
}

.hero__content,
.hero__media {
    position: relative;
    z-index: 1;
}

.hero__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 48px;
}

.hero__content {
    max-width: 760px;
    padding-block: 24px 32px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-strong);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 100%);
}

.hero__title {
    margin: 0;
    max-width: 20ch;
    font-size: clamp(2rem, 3.5vw, 3.65rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.hero__subtitle {
    max-width: 62ch;
    margin: 20px 0 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.hero__media {
    display: flex;
    justify-content: flex;
}

.hero__photo {
    width: min(100%, 500px);
    height: auto;
    object-fit: contain;
    object-position: bottom center;
}

.hero__photoWrap {
    position: relative;
    width: min(100%, 560px);
    padding: 26px 26px 0;
    border: 1px solid rgba(203, 161, 92, 0.2);
    border-radius: 34px 34px 0 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
    isolation: isolate;
}

.hero__photoWrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 12%, rgba(203, 161, 92, 0.18), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.hero__photoWrap::after {
    content: "";
    position: absolute;
    inset: auto 24px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(203, 161, 92, 0.45) 50%, transparent 100%);
}

.identity {
    position: relative;
    padding: 104px 0 110px;
    overflow: clip;
}

.identity::before {
    content: "Autoestima";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4.5rem, 13vw, 9rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.identity::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(203, 161, 92, 0.22) 50%, transparent 100%);
    pointer-events: none;
}

.identity .container {
    position: relative;
    z-index: 1;
}

.identity__head {
    max-width: 860px;
    margin: 0 auto 48px;
    text-align: center;
}

.identity__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--gold-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.identity__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.identity__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.identityCard {
    position: relative;
    min-height: 280px;
    padding: 26px 22px 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(8, 8, 10, 0.9) 0%, rgba(10, 10, 12, 0.98) 100%);
    border: 1px solid rgba(203, 161, 92, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 38px rgba(0, 0, 0, 0.22);
    transition:
        transform 320ms ease,
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.identityCard::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top left, rgba(203, 161, 92, 0.1), transparent 45%);
    pointer-events: none;
}

.identityCard:hover {
    transform: translateY(-4px);
    border-color: rgba(203, 161, 92, 0.46);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 50px rgba(0, 0, 0, 0.3);
}

.identityCard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.identityCard__icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

.identityCard__title {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.identityCard__text {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.identity__actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.btn--identity {
    min-width: 296px;
    min-height: 62px;
    padding-inline: 28px;
    text-transform: uppercase;
    font-size: 0.96rem;
    letter-spacing: 0.02em;
}

.results {
    position: relative;
    padding: 104px 0 30px;
    overflow: clip;
}

.results::before {
    content: "Resultados";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4.5rem, 13vw, 9rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.results .container {
    position: relative;
    z-index: 1;
}

.results__head {
    max-width: 1120px;
    margin: 0 auto 34px;
    text-align: center;
}

.results__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--gold-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.results__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.results__toolbar {
    position: relative;
    max-width: 1080px;
    margin: 18px auto 0;
    min-height: 52px;
}

.results__subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.75;
    text-wrap: balance;
    text-align: center;
}

.resultsCarousel__top {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.resultsCarousel {
    position: relative;
}

.resultsCarousel__nav {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--gold-strong);
    border: 1px solid rgba(203, 161, 92, 0.34);
    background: rgba(203, 161, 92, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition:
        transform 280ms ease,
        color 280ms ease,
        border-color 280ms ease,
        background 280ms ease,
        box-shadow 280ms ease,
        opacity 280ms ease;
}

.resultsCarousel__nav:hover,
.resultsCarousel__nav:focus-visible {
    transform: translateY(-2px);
    color: #111214;
    border-color: rgba(203, 161, 92, 0.8);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
    box-shadow: 0 16px 28px rgba(203, 161, 92, 0.2);
}

.resultsCarousel__nav:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.resultsCarousel__nav:disabled:hover,
.resultsCarousel__nav:disabled:focus-visible {
    color: var(--gold-strong);
    border-color: rgba(203, 161, 92, 0.34);
    background: rgba(203, 161, 92, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.resultsCarousel__nav svg {
    width: 18px;
    height: 18px;
}

.resultsCarousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px;
}

.resultsCarousel__viewport::-webkit-scrollbar {
    display: none;
}

.resultsCarousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 380px);
    gap: 22px;
}

.resultCard {
    scroll-snap-align: start;
}

.resultCard__media {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(203, 161, 92, 0.32);
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.92) 0%, rgba(9, 9, 11, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 40px rgba(0, 0, 0, 0.2);
    transition:
        transform 320ms ease,
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.resultCard__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(203, 161, 92, 0.08) 0%, transparent 24%);
    pointer-events: none;
    z-index: 1;
}

.resultCard:hover .resultCard__media {
    transform: translateY(-4px);
    border-color: rgba(203, 161, 92, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 22px 50px rgba(0, 0, 0, 0.28);
}

.resultCard__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: contain;
    object-position: center;
    background: #0b0b0d;
}

.resultsCarousel__footer {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.resultsCarousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.resultsCarousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    transition:
        width 260ms ease,
        background 260ms ease,
        transform 260ms ease,
        opacity 260ms ease;
}

.resultsCarousel__dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-strong) 100%);
}

.results__actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.btn--results {
    min-width: 320px;
    min-height: 62px;
    padding-inline: 28px;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
}

.about {
    position: relative;
    padding: 40px 0 0;
    overflow: clip;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 500px);
    align-items: end;
    gap: 28px;
}

.about__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 46px 0 84px;
}

.about__content::before {
    content: "Sobre";
    position: absolute;
    top: -42px;
    left: 0;
    font-size: clamp(4.5rem, 11vw, 8.2rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: -1;
}

.about__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: var(--gold-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.about__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
    max-width: 30ch;
}

.about__text {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.72;
    max-width: 72ch;
}

.about__actions {
    display: flex;
    margin-top: 30px;
}

.btn--about {
    min-width: 190px;
    min-height: 58px;
    padding-inline: 26px;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
}

.about__media {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 100%;
}

.about__media::before {
    content: "";
    position: absolute;
    right: 4%;
    bottom: 6%;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(203, 161, 92, 0.16) 0%, rgba(203, 161, 92, 0.04) 38%, transparent 72%);
    filter: blur(24px);
    pointer-events: none;
}

.about__photo {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    height: auto;
    object-fit: contain;
    object-position: bottom center;
}

.testimonials {
    position: relative;
    padding: 104px 0 110px;
    overflow: clip;
}

.testimonials::before {
    content: "Clientes";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4.5rem, 13vw, 9rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials__head {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.testimonials__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--gold-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.testimonials__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.testimonials__subtitle {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.75;
    text-wrap: balance;
}

.testimonialsPlayer {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 28px;
    margin-bottom: 34px;
}

.testimonialsPlayer__media {
    min-width: 0;
}

.testimonialsPlayer__videoWrap {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(203, 161, 92, 0.28);
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 22px 44px rgba(0, 0, 0, 0.22);
}

.testimonialsPlayer__videoWrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(203, 161, 92, 0.08) 0%, transparent 20%);
    pointer-events: none;
    z-index: 1;
}

.testimonialsPlayer__iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    position: relative;
    z-index: 0;
}

.testimonialsPlayer__content {
    min-width: 0;
}

.testimonialsPlayer__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: var(--gold-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonialsPlayer__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.55rem, 2.8vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.testimonialsPlayer__text {
    margin: 16px 0 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.72;
    max-width: 48ch;
}

.testimonialsPlayer__actions {
    display: flex;
    margin-top: 26px;
}

.btn--testimonials {
    min-width: 280px;
    min-height: 58px;
    padding-inline: 26px;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
}

.testimonialsCarousel {
    position: relative;
}

.testimonialsCarousel__top {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 18px;
}

.testimonialsCarousel__nav {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--gold-strong);
    border: 1px solid rgba(203, 161, 92, 0.34);
    background: rgba(203, 161, 92, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition:
        transform 280ms ease,
        color 280ms ease,
        border-color 280ms ease,
        background 280ms ease,
        box-shadow 280ms ease,
        opacity 280ms ease;
}

.testimonialsCarousel__nav:hover,
.testimonialsCarousel__nav:focus-visible {
    transform: translateY(-2px);
    color: #111214;
    border-color: rgba(203, 161, 92, 0.8);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
    box-shadow: 0 16px 28px rgba(203, 161, 92, 0.2);
}

.testimonialsCarousel__nav:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.testimonialsCarousel__nav:disabled:hover,
.testimonialsCarousel__nav:disabled:focus-visible {
    color: var(--gold-strong);
    border-color: rgba(203, 161, 92, 0.34);
    background: rgba(203, 161, 92, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.testimonialsCarousel__nav svg {
    width: 18px;
    height: 18px;
}

.testimonialsCarousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px;
}

.testimonialsCarousel__viewport::-webkit-scrollbar {
    display: none;
}

.testimonialsCarousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 320px);
    gap: 20px;
}

.testimonialCard {
    appearance: none;
    border: 0;
    padding: 0;
    background: none;
    text-align: left;
    color: inherit;
    cursor: pointer;
    scroll-snap-align: start;
}

.testimonialCard__thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(203, 161, 92, 0.28);
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 14px 34px rgba(0, 0, 0, 0.18);
    transition:
        transform 320ms ease,
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.testimonialCard__thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(203, 161, 92, 0.08) 0%, transparent 30%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.36) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.testimonialCard:hover .testimonialCard__thumb,
.testimonialCard:focus-visible .testimonialCard__thumb,
.testimonialCard.is-active .testimonialCard__thumb {
    transform: translateY(-4px);
    border-color: rgba(203, 161, 92, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 20px 44px rgba(0, 0, 0, 0.28);
}

.testimonialCard__thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.testimonialCard__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #111214;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    transition:
        transform 280ms ease,
        background 280ms ease;
}

.testimonialCard:hover .testimonialCard__play,
.testimonialCard:focus-visible .testimonialCard__play,
.testimonialCard.is-active .testimonialCard__play {
    transform: translate(-50%, -50%) scale(1.05);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
}

.testimonialCard__play svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
    fill: currentColor;
    stroke: currentColor;
}

.testimonialCard__title {
    display: block;
    margin-top: 12px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.45;
    letter-spacing: -0.01em;
    transition: color 280ms ease;
}

.testimonialCard:hover .testimonialCard__title,
.testimonialCard:focus-visible .testimonialCard__title,
.testimonialCard.is-active .testimonialCard__title {
    color: var(--gold-strong);
}

.testimonialsCarousel__footer {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.testimonialsCarousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonialsCarousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    transition:
        width 260ms ease,
        background 260ms ease,
        opacity 260ms ease;
}

.testimonialsCarousel__dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-strong) 100%);
}

.process {
    position: relative;
    padding: 110px 0 120px;
    overflow: clip;
}

.process::before {
    content: "Processo";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4.5rem, 13vw, 9rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    min-height: 620px;
}

.process__media {
    position: relative;
    width: min(100%, 760px);
    aspect-ratio: 16 / 10;
    z-index: 1;
}

.processVideo,
.processVideo__embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

.processVideo__embed[hidden] {
    display: none;
}

.processVideo {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 0;
    border: 1px solid rgba(203, 161, 92, 0.32);
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.92) 0%, rgba(9, 9, 11, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 22px 44px rgba(0, 0, 0, 0.22);
    transition:
        transform 320ms ease,
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.processVideo:hover,
.processVideo:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(203, 161, 92, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 28px 56px rgba(0, 0, 0, 0.28);
}

.processVideo__thumb,
.processVideo__thumb img {
    display: block;
    width: 100%;
    height: 100%;
}

.processVideo__thumb img {
    object-fit: cover;
}

.processVideo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(203, 161, 92, 0.08) 0%, transparent 24%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.processVideo__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #111214;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    transition:
        transform 280ms ease,
        background 280ms ease;
}

.processVideo:hover .processVideo__play,
.processVideo:focus-visible .processVideo__play {
    transform: translate(-50%, -50%) scale(1.05);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
}

.processVideo__play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    fill: currentColor;
    stroke: currentColor;
}

.processVideo__embed {
    overflow: hidden;
    border: 1px solid rgba(203, 161, 92, 0.32);
    background: #09090b;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 22px 44px rgba(0, 0, 0, 0.22);
}

.processVideo__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
}

.process__content {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    margin-left: auto;
    margin-top: -420px;
    padding: 42px 46px 40px;
    border-radius: 0;
    background: rgba(5, 5, 7, 0.96);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.process__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: var(--gold-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.process__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 12ch;
    text-wrap: balance;
}

.process__text {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.72;
    max-width: 52ch;
}

.process__actions {
    display: flex;
    margin-top: 30px;
}

.btn--process {
    min-width: 270px;
    min-height: 58px;
    padding-inline: 26px;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
}

.highlights {
    position: relative;
    padding: 104px 0 110px;
    overflow: clip;
}

.highlights::before {
    content: "Diferenciais";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4.5rem, 13vw, 9rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.highlights .container {
    position: relative;
    z-index: 1;
}

.highlights__head {
    max-width: 920px;
    margin: 0 auto 42px;
    text-align: center;
}

.highlights__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--gold-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.highlights__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4.2vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.highlights__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
    max-width: 1040px;
    margin: 0 auto;
}

.highlightCard {
    position: relative;
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 24px;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.98) 100%);
    border: 1px solid rgba(203, 161, 92, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 38px rgba(0, 0, 0, 0.18);
    transition:
        transform 320ms ease,
        border-color 320ms ease,
        box-shadow 320ms ease,
        background 320ms ease;
}

.highlightCard::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top center, rgba(203, 161, 92, 0.08), transparent 52%);
    pointer-events: none;
}

.highlightCard:hover {
    transform: translateY(-4px);
    border-color: rgba(203, 161, 92, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 48px rgba(0, 0, 0, 0.24);
}

.highlightCard__title {
    margin: 0;
    color: var(--text);
    font-size: 1.06rem;
    line-height: 1.28;
    letter-spacing: -0.02em;
    max-width: 20ch;
}

.highlightCard:nth-child(1),
.highlightCard:nth-child(2),
.highlightCard:nth-child(3) {
    grid-column: span 2;
}

.highlightCard:nth-child(4) {
    grid-column: 2 / span 2;
}

.highlightCard:nth-child(5) {
    grid-column: 4 / span 2;
}

.guarantee {
    position: relative;
    padding: 104px 0 110px;
    overflow: clip;
}

.guarantee .container {
    position: relative;
    z-index: 1;
}

.guarantee__content {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 18px 0 0;
}

.guarantee__content::before {
    content: "Confiança";
    position: absolute;
    top: -46px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4.5rem, 12vw, 8.8rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: -1;
}

.guarantee__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: var(--gold-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.guarantee__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 3.8vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: balance;
    max-width: 11.5ch;
}

.guarantee__text {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.72;
    max-width: 78ch;
}

.guarantee__list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    max-width: 82ch;
}

.guarantee__item {
    position: relative;
    padding-left: 28px;
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.65;
}

.guarantee__item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
}

.guarantee__actions {
    display: flex;
    margin-top: 32px;
}

.btn--guarantee {
    min-width: 270px;
    min-height: 58px;
    padding-inline: 26px;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.faq {
    position: relative;
    padding: 104px 0 110px;
    overflow: clip;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 44px;
    align-items: start;
}

.faq__intro {
    position: relative;
    z-index: 1;
    max-width: 520px;
    padding-top: 72px;
}

.faq__intro::before {
    content: "FAQ";
    position: absolute;
    top: 0px;
    left: 2px;
    font-size: clamp(4.5rem, 11vw, 8.2rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: -1;
}

.faq__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: var(--gold-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.faq__title {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    max-width: 10.5ch;
    text-wrap: balance;
}

.faq__subtitle {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.72;
    max-width: 38ch;
}

.faq__actions {
    display: flex;
    margin-top: 26px;
}

.btn--faq {
    min-width: 250px;
    min-height: 58px;
    padding-inline: 26px;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
}

.faq__list {
    display: grid;
    gap: 0;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.98) 100%);
    border: 1px solid rgba(203, 161, 92, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 20px 46px rgba(0, 0, 0, 0.2);
}

.faqItem {
    border-top: 1px solid rgba(203, 161, 92, 0.22);
}

.faqItem:first-child {
    border-top: 0;
}

.faqItem__trigger {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 18px;
    padding: 22px 22px 22px 24px;
    color: var(--text);
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    transition:
        background 280ms ease,
        color 280ms ease;
}

.faqItem__trigger:hover,
.faqItem__trigger:focus-visible {
    background: rgba(255, 255, 255, 0.04);
}

.faqItem__question {
    font-size: 1.12rem;
    line-height: 1.4;
    letter-spacing: -0.015em;
}

.faqItem__icon {
    position: relative;
    width: 20px;
    height: 20px;
    justify-self: end;
}

.faqItem__icon::before,
.faqItem__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform 280ms ease, opacity 280ms ease;
}

.faqItem__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faqItem.is-open .faqItem__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.3);
}

.faqItem__content {
    padding: 0 24px 22px;
}

.faqItem__content p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.72;
    max-width: 62ch;
}

.faqItem.is-open .faqItem__trigger {
    color: var(--gold-strong);
    background: rgba(255, 255, 255, 0.03);
}

.siteFooter {
    position: relative;
    padding: 96px 0 42px;
    overflow: clip;
    border-top: 1px solid rgba(203, 161, 92, 0.14);
}

.siteFooter::before {
    content: "Contato";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4rem, 12vw, 8.5rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.siteFooter .container {
    position: relative;
    z-index: 1;
}

.siteFooter__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 44px;
    align-items: center;
}

.siteFooter__content {
    max-width: 560px;
}

.siteFooter__brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.siteFooter__logo {
    width: auto;
    height: 74px;
    object-fit: contain;
}

.siteFooter__heading {
    margin-bottom: 24px;
}

.siteFooter__title {
    margin: 0;
    color: var(--gold);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.siteFooter__subtitle {
    margin: 6px 0 0;
    color: var(--gold-strong);
    font-size: 1.5rem;
    line-height: 1.15;
}

.siteFooter__info {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.siteFooter__info p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.7;
}

.siteFooter__info a {
    transition: color 280ms ease;
}

.siteFooter__info a:hover,
.siteFooter__info a:focus-visible {
    color: var(--gold-strong);
}

.siteFooter__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.siteFooter__social {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--gold-strong);
    border: 1px solid rgba(203, 161, 92, 0.3);
    background: rgba(203, 161, 92, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition:
        transform 280ms ease,
        color 280ms ease,
        border-color 280ms ease,
        background 280ms ease,
        box-shadow 280ms ease;
}

.siteFooter__social:hover,
.siteFooter__social:focus-visible {
    transform: translateY(-2px);
    color: #111214;
    border-color: rgba(203, 161, 92, 0.8);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
    box-shadow: 0 16px 28px rgba(203, 161, 92, 0.2);
}

.siteFooter__social svg {
    width: 22px;
    height: 22px;
}

.siteFooter__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.siteFooter__meta a {
    color: var(--text-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 280ms ease;
}

.siteFooter__meta a:hover,
.siteFooter__meta a:focus-visible {
    color: var(--gold-strong);
}

.siteFooter__sep {
    color: rgba(255, 255, 255, 0.34);
}

.siteFooter__mapWrap {
    display: flex;
    justify-content: flex-end;
}

.siteFooter__mapFrame {
    position: relative;
    width: min(100%, 520px);
    padding: 10px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(9, 9, 11, 0.96) 0%, rgba(9, 9, 11, 1) 100%);
    border: 1px solid rgba(203, 161, 92, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 54px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.siteFooter__mapFrame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(203, 161, 92, 0.08) 0%, transparent 24%);
    pointer-events: none;
    z-index: 1;
}

.siteFooter__map {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 22px;
    filter: saturate(0.9) contrast(1.02);
}

/* Responsivo */
@media (max-width: 1100px) {
    .siteHeader__inner {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }

    .navDesktop {
        display: none;
    }

    .navToggle {
        display: inline-flex;
    }

    .btn--goldLine {
        min-height: 50px;
        padding-inline: 20px;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-h) + 8px);
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero__content {
        max-width: 100%;
        padding-block: 28px 8px;
    }

    .hero__title {
        max-width: 100%;
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__media {
        justify-content: center;
    }

    .hero__photo {
        width: min(100%, 420px);
    }

    .hero__photoWrap {
        width: min(100%, 520px);
    }

    .identity {
        padding: 88px 0 96px;
    }

    .identity__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .results {
        padding: 88px 0 96px;
    }

    .results__subtitle {
        max-width: 100%;
        padding-right: 140px;
        padding-left: 140px;
    }

    .resultsCarousel__track {
        grid-auto-columns: minmax(300px, 72vw);
    }

    .about {
        padding: 88px 0 0;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about__content {
        max-width: 100%;
        padding: 28px 0 12px;
    }

    .about__title {
        max-width: 100%;
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .about__text {
        max-width: 100%;
    }

    .about__media {
        justify-content: center;
    }

    .about__photo {
        width: min(100%, 460px);
    }

    .testimonials {
        padding: 88px 0 96px;
    }

    .testimonialsPlayer {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .testimonialsPlayer__text {
        max-width: 100%;
    }

    .testimonialsCarousel__track {
        grid-auto-columns: minmax(250px, 52vw);
    }

    .process {
        padding: 96px 0 104px;
    }

    .process__media {
        width: min(100%, 680px);
    }

    .process__content {
        width: min(100%, 520px);
        margin-top: -360px;
        padding: 38px 36px 36px;
    }

    .process__inner {
        min-height: auto;
        gap: 22px;
    }

    .process__media {
        width: 100%;
    }

    .process__content {
        width: 100%;
        margin-top: 0;
        padding: 34px 28px 30px;
        border-radius: 24px;
    }

    .process__title {
        max-width: 100%;
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .process__text {
        max-width: 100%;
    }

    .highlights {
        padding: 88px 0 96px;
    }

    .highlights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }

    .highlightCard:nth-child(1),
    .highlightCard:nth-child(2),
    .highlightCard:nth-child(3),
    .highlightCard:nth-child(4),
    .highlightCard:nth-child(5) {
        grid-column: auto;
    }

    .guarantee {
        padding: 88px 0 96px;
    }

    .guarantee__content {
        max-width: 100%;
        margin: 0 auto;
    }

    .guarantee__title {
        max-width: 100%;
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .guarantee__text,
    .guarantee__list {
        max-width: 100%;
    }

    .faq {
        padding: 88px 0 96px;
    }

    .faq__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq__intro {
        max-width: 100%;
        padding-top: 0;
    }

    .faq__title {
        max-width: 100%;
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .faq__subtitle {
        max-width: 100%;
    }

    .siteFooter {
        padding: 84px 0 40px;
    }

    .siteFooter__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .siteFooter__content {
        max-width: 100%;
        text-align: center;
    }

    .siteFooter__brand {
        justify-content: center;
    }

    .siteFooter__socials,
    .siteFooter__meta {
        justify-content: center;
    }

    .siteFooter__mapWrap {
        justify-content: center;
    }
}

@media (max-width: 760px) {
    :root {
        --header-h: 82px;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .brand__logo {
        height: 48px;
    }

    .siteHeader__actions>.btn--goldLine {
        display: none;
    }

    .hero {
        padding-top: calc(var(--header-h) + 2px);
    }

    .hero__content {
        padding-top: 24px;
    }

    .hero__eyebrow {
        margin-bottom: 16px;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
    }

    .hero__title {
        font-size: clamp(1.85rem, 8vw, 2.7rem);
        line-height: 1.08;
    }

    .hero__subtitle {
        margin-top: 16px;
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .hero__actions {
        margin-top: 24px;
    }

    .btn--hero {
        width: 100%;
        min-height: 58px;
        padding-inline: 22px;
        justify-content: center;
        text-align: center;
    }

    .hero__photo {
        width: min(100%, 340px);
    }

    .hero__photoWrap {
        padding: 18px 18px 0;
        border-radius: 24px 24px 0 0;
    }

    .identity {
        padding: 72px 0 84px;
    }

    .identity::before {
        top: 18px;
        font-size: clamp(3rem, 15vw, 5.4rem);
    }

    .identity__head {
        margin-bottom: 32px;
    }

    .identity__title {
        font-size: clamp(1.75rem, 8vw, 2.6rem);
    }

    .identity__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .identityCard {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 20px;
    }

    .identity__actions {
        margin-top: 26px;
    }

    .btn--identity {
        width: 100%;
        min-width: 0;
    }

    .results {
        padding: 72px 0 84px;
    }

    .results::before {
        top: 18px;
        font-size: clamp(3rem, 15vw, 5.4rem);
    }

    .results__head {
        margin-bottom: 28px;
    }

    .results__title {
        font-size: clamp(1.75rem, 8vw, 2.6rem);
    }

    .results__subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .results__toolbar {
        min-height: auto;
    }

    .results__subtitle {
        padding-right: 0;
        padding-left: 0;
    }

    .resultsCarousel__top {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 16px;
    }

    .resultsCarousel__nav {
        width: 48px;
        height: 48px;
    }

    .resultsCarousel__track {
        grid-auto-columns: 84vw;
        gap: 16px;
    }

    .resultCard__media {
        border-radius: 22px;
    }

    .btn--results {
        width: 100%;
        min-width: 0;
    }

    .about {
        padding: 72px 0 0;
    }

    .about__content::before {
        top: -18px;
        left: 0;
        transform: none;
        font-size: clamp(3rem, 15vw, 5.4rem);
    }

    .about__content {
        padding: 18px 0 8px;
    }

    .about__title {
        font-size: clamp(1.75rem, 8vw, 2.6rem);
        line-height: 1.05;
    }

    .about__text {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .about__actions {
        margin-top: 24px;
    }

    .btn--about {
        width: 100%;
        min-width: 0;
    }

    .about__photo {
        width: min(100%, 360px);
    }

    .testimonials {
        padding: 72px 0 84px;
    }

    .testimonials::before {
        top: 18px;
        font-size: clamp(3rem, 15vw, 5.4rem);
    }

    .testimonials__head {
        margin-bottom: 30px;
    }

    .testimonials__title {
        font-size: clamp(1.75rem, 8vw, 2.6rem);
    }

    .testimonials__subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .testimonialsPlayer__title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .testimonialsPlayer__actions {
        margin-top: 22px;
    }

    .btn--testimonials {
        width: 100%;
        min-width: 0;
    }

    .testimonialsCarousel__top {
        justify-content: center;
        margin-bottom: 16px;
    }

    .testimonialsCarousel__nav {
        width: 48px;
        height: 48px;
    }

    .testimonialsCarousel__track {
        grid-auto-columns: 78vw;
        gap: 16px;
    }

    .testimonialCard__thumb {
        border-radius: 22px;
    }

    .testimonialCard__play {
        width: 64px;
        height: 64px;
    }

    .process {
        padding: 72px 0 84px;
    }

    .process::before {
        top: 16px;
        font-size: clamp(3rem, 15vw, 5.4rem);
    }

    .processVideo,
    .processVideo__embed {
        border-radius: 22px;
    }

    .processVideo__play {
        width: 68px;
        height: 68px;
    }

    .processVideo__play svg {
        width: 24px;
        height: 24px;
    }

    .process__content {
        padding: 28px 22px 24px;
    }

    .process__title {
        font-size: clamp(1.75rem, 8vw, 2.6rem);
        line-height: 1.05;
    }

    .process__text {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .process__actions {
        margin-top: 24px;
    }

    .btn--process {
        width: 100%;
        min-width: 0;
    }

    .highlights {
        padding: 72px 0 84px;
    }

    .highlights::before {
        top: 18px;
        font-size: clamp(3rem, 15vw, 5.4rem);
    }

    .highlights__head {
        margin-bottom: 30px;
    }

    .highlights__title {
        font-size: clamp(1.75rem, 8vw, 2.6rem);
    }

    .highlights__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .highlightCard {
        min-height: 108px;
        padding: 20px 18px;
        border-radius: 20px;
    }

    .highlightCard__title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .guarantee {
        padding: 72px 0 84px;
    }

    .guarantee::before {
        top: 18px;
        font-size: clamp(3rem, 15vw, 5.4rem);
    }

    .guarantee__content::before {
        top: -18px;
        left: 50%;
        transform: translateX(-50%);
        font-size: clamp(3rem, 15vw, 5.4rem);
    }

    .guarantee__title {
        font-size: clamp(1.75rem, 8vw, 2.6rem);
        line-height: 1.05;
    }

    .guarantee__text {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .guarantee__item {
        padding-left: 24px;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .guarantee__actions {
        margin-top: 26px;
    }

    .btn--guarantee {
        width: 100%;
        min-width: 0;
    }

    .faq {
        padding: 72px 0 84px;
    }

    .faq__intro::before {
        top: -22px;
        left: 0;
        transform: none;
        font-size: clamp(3rem, 15vw, 5.4rem);
    }

    .faq__title {
        font-size: clamp(1.75rem, 8vw, 2.6rem);
        line-height: 1.05;
    }

    .faq__subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .faq__list {
        border-radius: 20px;
    }

    .faqItem__trigger {
        grid-template-columns: minmax(0, 1fr) 24px;
        gap: 14px;
        padding: 18px 18px 18px 18px;
    }

    .faqItem__question {
        font-size: 1rem;
        line-height: 1.45;
    }

    .faqItem__content {
        padding: 0 18px 18px;
    }

    .faqItem__content p {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .faq__actions {
        margin-top: 22px;
    }

    .btn--faq {
        width: 100%;
        min-width: 0;
    }

    .siteFooter {
        padding: 72px 0 36px;
    }

    .siteFooter::before {
        top: 14px;
        font-size: clamp(3rem, 15vw, 5.4rem);
    }

    .siteFooter__logo {
        height: 62px;
    }

    .siteFooter__title {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
    }

    .siteFooter__subtitle {
        font-size: 1.24rem;
    }

    .siteFooter__info p,
    .siteFooter__meta {
        font-size: 0.98rem;
    }

    .siteFooter__social {
        width: 46px;
        height: 46px;
    }

    .siteFooter__mapFrame {
        padding: 8px;
        border-radius: 24px;
    }

    .siteFooter__map {
        height: 300px;
        border-radius: 18px;
    }
}

@media (max-width: 420px) {
    .mobileNav__panel {
        width: min(92vw, 340px);
    }

    .btn {
        gap: 10px;
    }

    .btn__icon svg {
        width: 17px;
        height: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}