:root {
    /* A mesma paleta em camadas usada no HallVIP e nos Offices. */
    --landing-paper: #050505;
    --landing-paper-soft: #11100f;
    --landing-paper-light: #0b0b0a;
    --landing-surface: #171513;
    --landing-surface-deep: #0f0f0e;
    --landing-ink: #f7f3eb;
    --landing-muted: #b5aea3;
    --landing-line: rgba(255, 255, 255, 0.085);
    --landing-line-light: rgba(255, 255, 255, 0.16);
    --landing-gold-line: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.38);
    --landing-night: #020202;
    --landing-wine: var(--cor-primaria, #d4af37);
    --landing-gold: var(--cor-primaria, #d4af37);
    --landing-shell: 1120px;
    --landing-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
    --landing-shadow:
        0 34px 90px rgba(0, 0, 0, 0.78),
        0 0 52px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.055);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
    background: var(--landing-paper);
}

body.landing-page {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% -12%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.045), transparent 30%),
        var(--landing-paper);
    color: var(--landing-ink);
    font-family: var(--fonte-familia-sistema, 'Jost', -apple-system, BlinkMacSystemFont, sans-serif);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-aberto {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    display: block;
}

::selection {
    background: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.24);
    color: var(--cor-primaria-contraste, #080808);
}


.landing-page :focus-visible {
    outline: 2px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.72);
    outline-offset: 4px;
}

.landing-shell {
    width: min(calc(100% - 64px), var(--landing-shell));
    margin-inline: auto;
}

.landing-skip {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--landing-gold);
    color: var(--cor-primaria-contraste, #080808);
    font-size: 13px;
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

.landing-skip:focus {
    transform: translateY(0);
}

.landing-eyebrow {
    margin: 0;
    color: var(--landing-wine);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.5;
    text-transform: uppercase;
}

.landing-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 98px;
    border-bottom: 1px solid transparent;
    background: rgba(5, 5, 5, 0.78);
    backdrop-filter: blur(14px);
    transition: height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.landing-header.rolado,
.landing-header.menu-aberto {
    height: 86px;
    border-bottom-color: var(--landing-line);
    background: rgba(11, 11, 10, 0.97);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
}

.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.landing-brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    width: 196px;
    height: 94px;
    overflow: hidden;
}

.landing-header.rolado .landing-brand,
.landing-header.menu-aberto .landing-brand {
    height: 84px;
}

.landing-brand img {
    width: 196px;
    height: 98px;
    object-fit: contain;
    object-position: left center;
    transition: width 220ms ease, height 220ms ease;
}

.landing-header.rolado .landing-brand img,
.landing-header.menu-aberto .landing-brand img {
    width: 180px;
    height: 90px;
}

.landing-brand strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.landing-nav a {
    position: relative;
    padding: 8px 0;
    color: var(--landing-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: color 180ms ease;
}

.landing-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--landing-wine);
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms ease;
}

.landing-nav a:hover,
.landing-nav a:focus-visible {
    color: var(--landing-wine);
}

.landing-nav a:hover::after,
.landing-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.landing-nav .landing-nav-login {
    color: var(--landing-ink);
    font-weight: 700;
}

.landing-menu-button {
    position: relative;
    z-index: 2;
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--landing-line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
}

.landing-menu-button span {
    position: absolute;
    left: 14px;
    width: 19px;
    height: 1px;
    background: var(--landing-ink);
    transition: transform 200ms ease, top 200ms ease, opacity 160ms ease;
}

.landing-menu-button span:nth-child(1) {
    top: 17px;
}

.landing-menu-button span:nth-child(2) {
    top: 23px;
}

.landing-menu-button span:nth-child(3) {
    top: 29px;
}

.landing-menu-button[aria-expanded='true'] span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}

.landing-menu-button[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
}

.landing-menu-button[aria-expanded='true'] span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
}

.landing-hero {
    position: relative;
    min-height: 650px;
    padding: 126px 0 54px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.095), transparent 23%),
        linear-gradient(135deg, #050505 0%, #0b0b0a 58%, #12100e 100%);
}

.landing-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
    align-items: center;
    gap: clamp(46px, 6vw, 82px);
}

.landing-hero-copy {
    max-width: 520px;
    padding: 12px 0;
}

.landing-hero-copy h1,
.landing-story-intro h2,
.landing-how-heading h2,
.landing-resources-content h2,
.landing-profiles h2,
.landing-final h2 {
    font-family: var(--landing-serif);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.landing-hero-copy h1 {
    max-width: 500px;
    margin: 19px 0 20px;
    color: var(--landing-ink);
    font-size: clamp(40px, 3.65vw, 50px);
    line-height: 1.08;
}

.landing-hero-highlight {
    max-width: 500px;
    margin: 0;
    color: #f0f0f0;
    font-size: clamp(17px, 1.45vw, 19.5px);
    font-weight: 400;
    line-height: 1.52;
}

.landing-hero-lead {
    max-width: 480px;
    margin: 14px 0 0;
    color: var(--landing-muted);
    font-size: 14.5px;
    line-height: 1.68;
}

.landing-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 27px;
}

.landing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.landing-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.landing-button:hover,
.landing-button:focus-visible {
    transform: translateY(-2px);
}

.landing-button-solid {
    border-color: var(--landing-wine);
    background: var(--landing-wine);
    color: var(--cor-primaria-contraste, #080808);
    box-shadow: 0 12px 30px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.15);
}

.landing-button-solid:hover,
.landing-button-solid:focus-visible {
    border-color: var(--cor-primaria-hover, #b8962f);
    background: var(--cor-primaria-hover, #b8962f);
    box-shadow: 0 16px 38px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.21);
}

.landing-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 0 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--landing-ink);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.04em;
    transition: color 180ms ease, border-color 180ms ease, gap 180ms ease;
}

.landing-text-link:hover,
.landing-text-link:focus-visible {
    gap: 13px;
    border-color: var(--landing-wine);
    color: var(--landing-wine);
}

.landing-hero-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 21px 0 0;
    color: var(--cor-texto-secundario, #777777);
    font-size: 11.5px;
    line-height: 1.55;
}

.landing-hero-note > span {
    flex: 0 0 auto;
    width: 24px;
    height: 1px;
    margin-top: 8px;
    background: var(--landing-gold);
}

.landing-hero-visual {
    position: relative;
    width: min(100%, 450px);
    justify-self: end;
}

.landing-hero-visual::before {
    position: absolute;
    z-index: -1;
    inset: -18px 18px 40px -18px;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.45);
    border-radius: 48% 48% 26px 26px;
    content: '';
}

.landing-carousel-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 0.9;
    overflow: hidden;
    border-radius: 48% 48% 24px 24px;
    background: var(--cor-card-secundaria, #111111);
    box-shadow: var(--landing-shadow);
}

.landing-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 760ms ease;
}

.landing-slide.ativo {
    opacity: 1;
    pointer-events: auto;
}

.landing-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.018);
    transition: transform 7s cubic-bezier(0.22, 0.6, 0.22, 1);
}

.landing-slide.ativo img {
    transform: scale(1.07);
}

.landing-slide img.pos-center {
    object-position: center;
}

.landing-slide img.pos-top {
    object-position: top;
}

.landing-slide img.pos-bottom {
    object-position: bottom;
}

.landing-slide img.pos-left {
    object-position: left;
}

.landing-slide img.pos-right {
    object-position: right;
}

.landing-slide figcaption {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
    width: fit-content;
    max-width: calc(100% - 44px);
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(25, 19, 16, 0.48);
    color: rgba(255, 255, 255, 0.92);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.3;
    backdrop-filter: blur(9px);
}

.landing-carousel-controls {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    padding: 0 12px 0 4px;
}

.landing-carousel-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cor-texto-secundario, #777777);
    font-size: 10px;
    font-style: normal;
    letter-spacing: 0.12em;
}

.landing-carousel-count b {
    color: var(--landing-ink);
    font-size: 12px;
}

.landing-carousel-count i {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--landing-line);
}

.landing-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.landing-carousel-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease;
}

.landing-carousel-dots button.ativo {
    width: 28px;
    background: var(--landing-wine);
}

.landing-hero-ornament {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.landing-hero-ornament-one {
    width: 430px;
    height: 430px;
    right: -245px;
    bottom: -185px;
}

.landing-hero-ornament-two {
    width: 220px;
    height: 220px;
    left: -145px;
    top: 185px;
}

.landing-story {
    position: relative;
    padding: 68px 0 70px;
    border-top: 1px solid var(--landing-line);
    border-bottom: 1px solid var(--landing-line);
    background:
        radial-gradient(circle at 16% 4%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.04), transparent 24%),
        linear-gradient(180deg, var(--landing-paper-light), #12110f);
}

.landing-story-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(270px, 0.68fr);
    align-items: end;
    gap: clamp(42px, 7vw, 82px);
}

.landing-story-intro h2 {
    max-width: 680px;
    margin: 15px 0 0;
    color: var(--landing-ink);
    font-size: clamp(31px, 3vw, 40px);
    line-height: 1.18;
}

.landing-story-intro > p {
    margin: 0 0 2px;
    color: var(--landing-muted);
    font-size: 14.5px;
    line-height: 1.68;
}

.landing-how {
    margin-top: 46px;
    padding-top: 38px;
    border-top: 1px solid var(--landing-line);
}

.landing-how-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
    align-items: end;
    gap: 40px;
}

.landing-how-heading h2 {
    margin: 14px 0 0;
    font-size: clamp(28px, 2.5vw, 34px);
    line-height: 1.18;
}

.landing-how-heading > p {
    max-width: 430px;
    margin: 0 0 3px;
    color: var(--landing-muted);
    font-size: 14px;
    line-height: 1.62;
}

.landing-steps,
.landing-video-card,
.landing-profiles {
    position: relative;
}

.landing-steps::before,
.landing-video-card::before,
.landing-profiles::before {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #bf953f,
            #fcf6ba,
            #aa771c,
            transparent
        );
    content: '';
    pointer-events: none;
}

.landing-steps::after,
.landing-video-card::after,
.landing-profiles::after {
    position: absolute;
    z-index: 4;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    border-top: 1px solid var(--landing-gold-line);
    border-right: 1px solid var(--landing-gold-line);
    content: '';
    pointer-events: none;
}

.landing-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: 20px 3px 20px 20px;
    background:
        radial-gradient(circle at 50% 0, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.045), transparent 34%),
        linear-gradient(180deg, rgba(28, 26, 23, 0.92), rgba(14, 14, 14, 0.98));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.landing-steps article {
    min-height: 168px;
    padding: 23px 26px 21px;
    border-left: 1px solid var(--landing-line);
}

.landing-steps article:nth-child(2) {
    background: rgba(255, 255, 255, 0.014);
}

.landing-steps article:first-child {
    border-left: 0;
}

.landing-step-number {
    display: block;
    margin-bottom: 18px;
    color: var(--landing-gold);
    font-family: var(--landing-serif);
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

.landing-steps h3 {
    margin: 0;
    color: var(--landing-ink);
    font-size: 16.5px;
    font-weight: 650;
    line-height: 1.32;
}

.landing-steps p {
    max-width: 280px;
    margin: 8px 0 0;
    color: var(--landing-muted);
    font-size: 13px;
    line-height: 1.55;
}

.landing-resources {
    padding: 70px 0 64px;
    background:
        radial-gradient(circle at 80% 12%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.035), transparent 22%),
        linear-gradient(180deg, var(--landing-paper-soft), #090909);
}

.landing-resources-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(44px, 6vw, 72px);
}

.landing-video-card {
    width: min(100%, 440px);
    justify-self: start;
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: 22px 3px 22px 22px;
    background:
        radial-gradient(circle at 50% 0, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.055), transparent 38%),
        linear-gradient(180deg, var(--landing-surface), var(--landing-surface-deep));
    box-shadow:
        0 28px 68px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.025);
}

.landing-video-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--landing-line);
    background: #050505;
}

.landing-video-stage img,
.landing-video-stage iframe {
    width: 100%;
    height: 100%;
}

.landing-video-stage img {
    object-fit: cover;
    filter: saturate(0.84) contrast(1.03) brightness(0.76);
    transform: scale(1.02);
    transition: transform 500ms ease, filter 500ms ease;
}

.landing-video-stage img.pos-center {
    object-position: center;
}

.landing-video-stage img.pos-top {
    object-position: top;
}

.landing-video-stage img.pos-bottom {
    object-position: bottom;
}

.landing-video-stage img.pos-left {
    object-position: left;
}

.landing-video-stage img.pos-right {
    object-position: right;
}

.landing-video-stage iframe {
    display: block;
    border: 0;
    background: #000;
}

.landing-video-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%, transparent 0 18%, rgba(0, 0, 0, 0.18) 62%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.05) 56%, rgba(0, 0, 0, 0.24));
}

.landing-video-play {
    position: absolute;
    z-index: 2;
    inset: 50% auto auto 50%;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transform: translate(-50%, -48%);
}

.landing-video-play > span {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.62);
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.72);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.42),
        0 0 0 8px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.055);
    backdrop-filter: blur(10px);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.landing-video-play svg {
    width: 26px;
    height: 26px;
    fill: var(--landing-gold);
}

.landing-video-play strong {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.landing-video-play:hover > span,
.landing-video-play:focus-visible > span {
    transform: scale(1.06);
    border-color: var(--landing-gold);
    background: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.12);
}

.landing-video-card:hover .landing-video-stage img {
    filter: saturate(0.94) contrast(1.03) brightness(0.82);
    transform: scale(1.045);
}

.landing-video-stage > small {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 13px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.17em;
}

.landing-video-copy {
    padding: 21px 23px 22px;
}

.landing-video-copy h3 {
    margin: 10px 0 9px;
    color: var(--landing-ink);
    font-family: var(--landing-serif);
    font-size: 23px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.22;
}

.landing-video-copy > p:not(.landing-eyebrow) {
    margin: 0;
    color: var(--landing-muted);
    font-size: 13px;
    line-height: 1.58;
}

.landing-video-copy > a {
    display: inline-flex;
    margin-top: 13px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.42);
    color: var(--landing-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.landing-video-card.reproduzindo .landing-video-stage {
    background: #000;
}

.landing-resources-content header {
    max-width: 620px;
}

.landing-resources-content h2 {
    margin: 15px 0 15px;
    color: var(--landing-ink);
    font-size: clamp(31px, 3vw, 40px);
    line-height: 1.16;
}

.landing-resources-content header > p:last-child {
    max-width: 560px;
    margin: 0;
    color: var(--landing-muted);
    font-size: 14.5px;
    line-height: 1.66;
}

.landing-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin-top: 26px;
    border-top: 1px solid var(--landing-line);
}

.landing-feature-list article {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    min-height: 103px;
    padding: 17px 0 15px;
    border-bottom: 1px solid var(--landing-line);
}

.landing-feature-list article > span {
    padding-top: 1px;
    color: var(--landing-gold);
    font-family: var(--landing-serif);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.landing-feature-list article > span::after {
    display: block;
    width: 15px;
    height: 1px;
    margin-top: 8px;
    background: var(--landing-gold);
    content: '';
    opacity: 0.62;
}

.landing-feature-list h3 {
    margin: 0;
    color: var(--landing-ink);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
}

.landing-feature-list p {
    margin: 5px 0 0;
    color: var(--landing-muted);
    font-size: 12.7px;
    line-height: 1.52;
}

.landing-profiles {
    display: grid;
    grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(38px, 5vw, 62px);
    margin-top: 52px;
    padding: 34px 38px 31px;
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: 20px 3px 20px 20px;
    background:
        radial-gradient(circle at 16% 0, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.05), transparent 34%),
        linear-gradient(180deg, rgba(28, 26, 23, 0.88), rgba(13, 13, 13, 0.96));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.landing-profiles header {
    align-self: start;
}

.landing-profiles h2 {
    margin: 14px 0 13px;
    font-size: clamp(26px, 2.35vw, 32px);
    line-height: 1.18;
}

.landing-profiles header > p:last-child {
    margin: 0;
    color: var(--landing-muted);
    font-size: 13px;
    line-height: 1.58;
}

.landing-profile-lines {
    border-top: 1px solid var(--landing-line);
}

.landing-profile-lines article {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--landing-line);
}

.landing-profile-lines article > span {
    padding-top: 2px;
    color: var(--landing-gold);
    font-size: 9.5px;
    font-weight: 750;
    letter-spacing: 0.13em;
}

.landing-profile-lines h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
}

.landing-profile-lines p {
    margin: 5px 0 0;
    color: var(--landing-muted);
    font-size: 12.7px;
    line-height: 1.52;
}

.landing-profiles > .landing-text-link {
    grid-column: 2;
    width: fit-content;
    margin-top: -20px;
}

.landing-final {
    position: relative;
    display: grid;
    min-height: 360px;
    overflow: hidden;
    background: var(--landing-night);
    color: #fff;
    isolation: isolate;
}

.landing-final-photo,
.landing-final-overlay {
    position: absolute;
    inset: 0;
}

.landing-final-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.landing-final-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.79) 44%, rgba(0, 0, 0, 0.42) 76%, rgba(0, 0, 0, 0.29) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.045));
}

.landing-final-content {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 58px 0;
}

.landing-final .landing-eyebrow {
    color: var(--landing-gold);
}

.landing-final h2 {
    max-width: 610px;
    margin: 15px 0 13px;
    color: #fff;
    font-size: clamp(32px, 3.55vw, 42px);
    line-height: 1.13;
}

.landing-final-content > p:not(.landing-eyebrow) {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    line-height: 1.62;
}

.landing-button-light {
    margin-top: 23px;
    border-color: var(--landing-gold);
    background: var(--landing-gold);
    color: var(--cor-primaria-contraste, #080808);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.landing-button-light:hover,
.landing-button-light:focus-visible {
    border-color: var(--cor-primaria-hover, #b8962f);
    background: var(--cor-primaria-hover, #b8962f);
}

.landing-footer {
    padding: 40px 0 28px;
    border-top: 1px solid var(--landing-line);
    background: var(--landing-night);
    color: rgba(255, 255, 255, 0.68);
}

.landing-footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    align-items: start;
    gap: 30px 64px;
}

.landing-footer-brand img {
    width: 164px;
    height: 82px;
    object-fit: contain;
    object-position: left center;
}

.landing-footer-brand p {
    max-width: 350px;
    margin: 0;
    font-size: 12px;
    line-height: 1.58;
}

.landing-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px 26px;
    padding-top: 27px;
}

.landing-footer nav a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 11.5px;
    font-weight: 550;
    letter-spacing: 0.05em;
    transition: color 180ms ease;
}

.landing-footer nav a:hover,
.landing-footer nav a:focus-visible {
    color: #fff;
}

.landing-footer-copy {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    letter-spacing: 0.04em;
}

.landing-js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.landing-js [data-reveal].revelado {
    opacity: 1;
    transform: translateY(0);
}

.landing-steps article:nth-child(2),
.landing-feature-list article:nth-child(2),
.landing-profile-lines article:nth-child(2) {
    transition-delay: 70ms;
}

.landing-steps article:nth-child(3),
.landing-feature-list article:nth-child(3) {
    transition-delay: 140ms;
}

.landing-feature-list article:nth-child(4) {
    transition-delay: 210ms;
}

@media (max-width: 1060px) {
    .landing-hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
        gap: 44px;
    }

    .landing-hero-copy h1 {
        font-size: clamp(41px, 4.3vw, 50px);
    }

    .landing-resources-grid {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 90px;
    }

    .landing-shell {
        width: min(calc(100% - 48px), 720px);
    }

    .landing-header,
    .landing-header.rolado,
    .landing-header.menu-aberto {
        height: 88px;
    }

    .landing-brand,
    .landing-header.rolado .landing-brand,
    .landing-header.menu-aberto .landing-brand {
        width: 170px;
        height: 84px;
    }

    .landing-brand img,
    .landing-header.rolado .landing-brand img,
    .landing-header.menu-aberto .landing-brand img {
        width: 170px;
        height: 86px;
    }

    .landing-menu-button {
        display: block;
    }

    .landing-nav {
        position: fixed;
        z-index: 1;
        top: 88px;
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 16px 24px 26px;
        border-bottom: 1px solid var(--landing-line);
        background: rgba(6, 6, 6, 0.98);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.58);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .landing-nav.aberto {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .landing-nav a {
        padding: 16px 2px;
        border-bottom: 1px solid var(--landing-line);
        font-size: 14px;
    }

    .landing-nav a:last-child {
        border-bottom: 0;
    }

    .landing-nav a::after {
        display: none;
    }

    .landing-hero {
        min-height: auto;
        padding: 116px 0 58px;
    }

    .landing-hero-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .landing-hero-copy {
        max-width: 620px;
    }

    .landing-hero-copy h1 {
        max-width: 580px;
        font-size: clamp(42px, 7vw, 53px);
    }

    .landing-hero-visual {
        width: min(100%, 520px);
        justify-self: center;
    }

    .landing-story-intro,
    .landing-how-heading,
    .landing-resources-grid,
    .landing-profiles {
        grid-template-columns: 1fr;
    }

    .landing-story-intro,
    .landing-how-heading {
        gap: 24px;
    }

    .landing-story-intro > p,
    .landing-how-heading > p {
        max-width: 620px;
    }

    .landing-resources-grid {
        gap: 44px;
    }

    .landing-video-card {
        width: min(100%, 560px);
        justify-self: center;
    }

    .landing-resources-content {
        max-width: 700px;
    }

    .landing-profiles {
        gap: 36px;
    }

    .landing-profiles > .landing-text-link {
        grid-column: auto;
        margin-top: -8px;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 82px;
    }

    .landing-shell {
        width: min(calc(100% - 36px), 620px);
    }

    .landing-header,
    .landing-header.rolado,
    .landing-header.menu-aberto {
        height: 82px;
    }

    .landing-brand,
    .landing-header.rolado .landing-brand,
    .landing-header.menu-aberto .landing-brand {
        width: 154px;
        height: 78px;
    }

    .landing-brand img,
    .landing-header.rolado .landing-brand img,
    .landing-header.menu-aberto .landing-brand img {
        width: 154px;
        height: 79px;
    }

    .landing-menu-button {
        width: 44px;
        height: 44px;
    }

    .landing-menu-button span {
        left: 13px;
        width: 17px;
    }

    .landing-menu-button span:nth-child(1) {
        top: 15px;
    }

    .landing-menu-button span:nth-child(2) {
        top: 21px;
    }

    .landing-menu-button span:nth-child(3) {
        top: 27px;
    }

    .landing-menu-button[aria-expanded='true'] span:nth-child(1),
    .landing-menu-button[aria-expanded='true'] span:nth-child(3) {
        top: 21px;
    }

    .landing-nav {
        top: 82px;
        padding-inline: 18px;
    }

    .landing-hero {
        padding: 96px 0 36px;
    }

    .landing-hero-grid {
        gap: 24px;
    }

    .landing-hero-copy {
        padding: 0;
    }

    .landing-eyebrow {
        font-size: 10px;
        letter-spacing: 0.19em;
    }

    .landing-hero-copy h1 {
        margin: 16px 0 17px;
        font-size: clamp(34px, 9.8vw, 40px);
        line-height: 1.1;
    }

    .landing-hero-highlight {
        font-size: 17px;
        line-height: 1.5;
    }

    .landing-hero-lead,
    .landing-hero-note {
        display: none;
    }

    .landing-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-top: 23px;
    }

    .landing-button {
        min-height: 50px;
        padding-inline: 22px;
        font-size: 11px;
    }

    .landing-hero-visual {
        width: min(84%, 390px);
    }

    .landing-hero-visual::before {
        inset: -12px 12px 28px -12px;
    }

    .landing-carousel-frame {
        aspect-ratio: 0.98;
        border-radius: 46% 46% 18px 18px;
    }

    .landing-slide figcaption {
        right: 15px;
        bottom: 14px;
        left: 15px;
        max-width: calc(100% - 30px);
        font-size: 9px;
    }

    .landing-carousel-controls {
        margin-top: 16px;
        padding-inline: 2px;
    }

    .landing-story {
        padding: 44px 0 46px;
    }

    .landing-story-intro h2,
    .landing-resources-content h2 {
        margin-top: 15px;
        font-size: clamp(29px, 8.2vw, 35px);
        line-height: 1.22;
    }

    .landing-story-intro > p {
        font-size: 14.5px;
        line-height: 1.62;
    }

    .landing-how {
        margin-top: 28px;
        padding-top: 26px;
    }

    .landing-how-heading h2 {
        margin-top: 14px;
        font-size: 30px;
    }

    .landing-how-heading > p {
        display: none;
    }

    .landing-steps {
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .landing-steps article,
    .landing-steps article:first-child {
        display: grid;
        grid-template-columns: 56px 1fr;
        min-height: 0;
        padding: 14px 16px;
        border-left: 0;
        border-bottom: 1px solid var(--landing-line);
    }

    .landing-steps article:last-child {
        border-bottom: 0;
    }

    .landing-step-number {
        grid-row: 1 / 3;
        margin: 0;
        padding-top: 2px;
        font-size: 27px;
    }

    .landing-steps h3,
    .landing-steps p {
        grid-column: 2;
    }

    .landing-steps h3 {
        font-size: 17px;
    }

    .landing-steps p {
        margin-top: 8px;
        display: -webkit-box;
        overflow: hidden;
        font-size: 13px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .landing-resources {
        padding: 44px 0 42px;
    }

    .landing-resources-grid {
        gap: 28px;
    }

    .landing-video-card {
        width: 100%;
        max-width: 520px;
        justify-self: center;
    }

    .landing-video-play > span {
        width: 58px;
        height: 58px;
    }

    .landing-video-copy {
        padding: 16px 18px 18px;
    }

    .landing-video-copy h3 {
        margin: 9px 0 8px;
        font-size: 20.5px;
    }

    .landing-video-copy > p:not(.landing-eyebrow) {
        display: none;
    }

    .landing-resources-content header > p:last-child {
        font-size: 14.5px;
    }

    .landing-feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 16px;
        margin-top: 24px;
    }

    .landing-feature-list article {
        grid-template-columns: 22px 1fr;
        gap: 9px;
        min-height: 104px;
        padding: 14px 0 13px;
    }

    .landing-feature-list h3 {
        font-size: 14px;
    }

    .landing-feature-list p {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 6px;
        font-size: 12.2px;
        line-height: 1.5;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .landing-profiles {
        gap: 22px;
        margin-top: 30px;
        padding: 24px 18px 22px;
    }

    .landing-profiles h2 {
        font-size: 28px;
    }

    .landing-profiles header > p:last-child {
        display: none;
    }

    .landing-profile-lines article {
        grid-template-columns: 104px 1fr;
        gap: 14px;
        padding: 13px 0;
    }

    .landing-profile-lines p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .landing-profile-lines article > span {
        font-size: 9px;
    }

    .landing-final {
        min-height: 320px;
    }

    .landing-final-overlay {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 55%, rgba(0, 0, 0, 0.38) 100%);
    }

    .landing-final-content {
        align-self: end;
        padding: 48px 0 38px;
    }

    .landing-final h2 {
        font-size: clamp(33px, 9.3vw, 40px);
    }

    .landing-final-content > p:not(.landing-eyebrow) {
        font-size: 14.5px;
    }

    .landing-footer {
        padding: 30px 0 24px;
    }

    .landing-footer-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .landing-footer-brand img {
        width: 150px;
        height: 70px;
    }

    .landing-footer nav {
        justify-content: flex-start;
        gap: 15px 24px;
        padding-top: 0;
    }

    .landing-footer-copy {
        grid-column: auto;
        padding-top: 20px;
    }
}

@media (max-width: 420px) {
    .landing-shell {
        width: min(calc(100% - 30px), 620px);
    }

    .landing-brand,
    .landing-header.rolado .landing-brand,
    .landing-header.menu-aberto .landing-brand {
        width: 146px;
    }

    .landing-brand img,
    .landing-header.rolado .landing-brand img,
    .landing-header.menu-aberto .landing-brand img {
        width: 146px;
    }

    .landing-hero-copy h1 {
        font-size: clamp(35px, 10.6vw, 40px);
    }

    .landing-hero-highlight {
        font-size: 17px;
    }

    .landing-hero-visual {
        width: 96%;
    }

    .landing-profile-lines article {
        grid-template-columns: 102px 1fr;
        gap: 12px;
    }

    .landing-video-play strong {
        font-size: 9px;
    }

    .landing-video-copy h3 {
        font-size: 20px;
    }
}


/*
 * Lapidação final da abertura:
 * logo protagonista, cabeçalho compacto sob rolagem e galeria no celular-símbolo.
 */
.landing-header {
    height: 78px;
    border-bottom-color: var(--landing-line);
    background: rgba(10, 10, 10, 0.94);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 8px));
    visibility: hidden;
    transition:
        opacity 200ms ease,
        transform 240ms cubic-bezier(0.22, 0.72, 0.3, 1),
        visibility 0s linear 240ms;
}

.landing-header.rolado {
    height: 78px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
}

.landing-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-brand,
.landing-header.rolado .landing-brand {
    width: 168px;
    height: 74px;
}

.landing-brand img,
.landing-header.rolado .landing-brand img {
    width: 168px;
    height: 76px;
    object-fit: contain;
    object-position: left center;
}

.landing-menu-button,
.landing-nav {
    display: none !important;
}

.landing-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.72);
    border-radius: 999px;
    background: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.09);
    color: var(--landing-gold);
    font-size: 10.5px;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.landing-header-cta:hover,
.landing-header-cta:focus-visible {
    background: var(--landing-gold);
    color: var(--cor-primaria-contraste, #080808);
    transform: translateY(-1px);
}

.landing-header-cta svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.landing-header-cta-short {
    display: none;
}

.landing-hero {
    min-height: 650px;
    padding: 24px 0 50px;
}

.landing-hero-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.7fr);
    gap: clamp(44px, 6vw, 76px);
}

.landing-hero-copy {
    max-width: 570px;
    padding: 0;
}

.landing-hero-logo {
    width: min(100%, 430px);
    margin: -10px 0 2px;
}

.landing-hero-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.landing-hero-copy h1 {
    margin-top: 24px;
    color: var(--landing-gold);
    text-shadow: 0 0 26px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.08);
}

.landing-hero-visual {
    width: min(100%, 322px);
    justify-self: end;
}

.landing-hero-visual::before {
    display: none;
}

.landing-phone-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 30 / 54;
    padding: 2px;
    border-radius: 42px;
    background:
        linear-gradient(
            135deg,
            #bf953f 0%,
            #fcf6ba 25%,
            #b38728 50%,
            #fbf5b7 75%,
            #aa771c 100%
        );
    box-shadow:
        0 32px 86px rgba(0, 0, 0, 0.82),
        0 0 46px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.08);
    isolation: isolate;
}

.landing-phone-shell::before,
.landing-phone-shell::after {
    position: absolute;
    z-index: -1;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fcf6ba, #b38728 55%, #aa771c);
    content: '';
    opacity: 0.86;
}

.landing-phone-shell::before {
    top: 94px;
    left: -4px;
    height: 38px;
    box-shadow: 0 52px 0 rgba(179, 135, 40, 0.9);
}

.landing-phone-shell::after {
    top: 142px;
    right: -4px;
    height: 66px;
}

.landing-phone-bezel {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 9px;
    overflow: hidden;
    border-radius: 40px;
    background:
        linear-gradient(145deg, #242321 0%, #10100f 38%, #060606 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.055),
        inset 0 0 20px rgba(0, 0, 0, 0.9);
}

.landing-phone-sensors {
    position: absolute;
    z-index: 8;
    top: 15px;
    left: 50%;
    width: 48px;
    height: 22px;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.22);
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.9);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.46);
    transform: translateX(-50%);
    pointer-events: none;
}

.landing-phone-sensors span {
    position: absolute;
    width: 5px;
    height: 5px;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.78);
    border-radius: 50%;
    box-shadow: inset 0 0 3px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.32);
}

.landing-phone-sensors span:nth-child(1) {
    top: 5px;
    left: 13px;
}

.landing-phone-sensors span:nth-child(2) {
    bottom: 4px;
    left: 13px;
}

.landing-phone-sensors span:nth-child(3) {
    top: 8px;
    left: 23px;
}

.landing-carousel-frame {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 32px;
    background: #090909;
    box-shadow: none;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.landing-hero-visual.arrastando .landing-carousel-frame {
    cursor: grabbing;
}

.landing-slide img {
    -webkit-user-drag: none;
    user-select: none;
}

.landing-slide figcaption {
    right: 16px;
    bottom: 25px;
    left: 16px;
    max-width: calc(100% - 32px);
    padding: 8px 12px;
    font-size: 9px;
}



.landing-carousel-controls {
    margin-top: 16px;
    padding-inline: 5px;
}

.landing-steps,
.landing-video-card,
.landing-profiles {
    border-radius: 20px;
}

.landing-video-card {
    border-radius: 22px;
}

.landing-steps::after,
.landing-video-card::after,
.landing-profiles::after {
    top: 11px;
    right: 15px;
    width: 30px;
    height: 1px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--landing-gold));
    opacity: 0.68;
}

@media (max-width: 1060px) {
    .landing-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(286px, 0.64fr);
        gap: 42px;
    }

    .landing-hero-visual {
        width: min(100%, 304px);
    }
}

@media (max-width: 900px) {
    .landing-header,
    .landing-header.rolado {
        height: 76px;
    }

    .landing-brand,
    .landing-header.rolado .landing-brand,
    .landing-brand img,
    .landing-header.rolado .landing-brand img {
        width: 156px;
        height: 74px;
    }

    .landing-hero {
        padding: 18px 0 48px;
    }

    .landing-hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .landing-hero-copy {
        max-width: 650px;
    }

    .landing-hero-logo {
        width: min(100%, 410px);
    }

    .landing-hero-visual {
        width: min(72vw, 300px);
        justify-self: center;
    }
}

@media (min-width: 721px) and (max-width: 900px) {
    .landing-hero {
        padding: 18px 0 44px;
    }

    .landing-hero-grid {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 32px;
    }

    .landing-hero-copy {
        max-width: 418px;
    }

    .landing-hero-logo {
        width: min(100%, 340px);
    }

    .landing-hero-copy h1 {
        font-size: clamp(37px, 5.2vw, 42px);
    }

    .landing-hero-highlight {
        font-size: 17px;
    }

    .landing-hero-visual {
        width: 270px;
        justify-self: end;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 78px;
    }

    .landing-header,
    .landing-header.rolado {
        height: 72px;
    }

    .landing-header-inner {
        justify-content: flex-end;
    }

    .landing-brand,
    .landing-header.rolado .landing-brand {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 142px;
        height: 70px;
        transform: translate(-50%, -50%);
    }

    .landing-brand img,
    .landing-header.rolado .landing-brand img {
        width: 142px;
        height: 70px;
        object-position: center;
    }

    .landing-header-cta {
        min-height: 38px;
        gap: 7px;
        padding: 0 12px;
        font-size: 9.5px;
    }

    .landing-header-cta-full {
        display: none;
    }

    .landing-header-cta-short {
        display: inline;
    }

    .landing-header-cta svg {
        width: 13px;
        height: 13px;
    }

    .landing-hero {
        padding: 6px 0 36px;
    }

    .landing-hero-grid {
        gap: 26px;
    }

    .landing-hero-copy {
        text-align: center;
    }

    .landing-hero-logo {
        width: min(100%, 325px);
        margin: -4px auto 1px;
    }

    .landing-hero-copy h1 {
        margin-top: 22px;
    }

    .landing-hero-highlight {
        margin-inline: auto;
    }

    .landing-hero-actions {
        align-items: center;
    }

    .landing-hero-visual {
        width: min(70vw, 274px);
    }

    .landing-phone-shell {
        border-radius: 38px;
    }

    .landing-phone-bezel {
        padding: 8px;
        border-radius: 36px;
    }

    .landing-carousel-frame {
        border-radius: 29px;
    }

    .landing-phone-shell::before {
        top: 82px;
    }

    .landing-phone-shell::after {
        top: 126px;
        height: 58px;
    }

    .landing-carousel-controls {
        margin-top: 14px;
    }

    .landing-steps {
        border-radius: 18px;
    }
}

@media (max-width: 420px) {
    .landing-hero-logo {
        width: min(100%, 300px);
    }

    .landing-hero-visual {
        width: min(72vw, 258px);
    }
}

@media (max-width: 350px) {
    .landing-brand,
    .landing-header.rolado .landing-brand,
    .landing-brand img,
    .landing-header.rolado .landing-brand img {
        width: 116px;
    }

    .landing-header-cta {
        padding-inline: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .landing-slide img,
    .landing-slide.ativo img {
        transform: none;
    }
}

/*
 * Polimento editorial final:
 * abertura mais silenciosa, ação depois da apresentação e perfis ilustrados.
 */
.landing-hero-copy h1 {
    max-width: 470px;
    font-size: clamp(35px, 3vw, 44px);
}

.landing-hero-highlight {
    max-width: 490px;
}

.landing-ease-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    margin: 22px auto 0;
    padding: 11px 18px;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.2);
    border-radius: 999px;
    background: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.035);
    color: #cfc7bb;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.45;
    text-align: center;
    text-transform: uppercase;
}

.landing-ease-note > span {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--landing-gold);
    box-shadow: 0 0 12px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.46);
}

.landing-steps {
    border-radius: 20px;
}

.landing-steps::after {
    display: none;
}

.landing-feature-list article > span::after {
    display: none;
}

.landing-profile-lines article {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 15px 0;
}

.landing-profile-art {
    display: grid;
    place-items: end center;
    width: 78px;
    height: 82px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.14);
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 22%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.11), transparent 54%),
        rgba(255, 255, 255, 0.018);
}

.landing-profile-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.3));
}

.landing-profile-copy {
    min-width: 0;
}

.landing-profile-tag {
    display: block;
    margin-bottom: 5px;
    color: var(--landing-gold);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.14em;
    line-height: 1.3;
}

.landing-profile-actions {
    grid-column: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: -8px;
}

.landing-profile-actions .landing-button {
    min-height: 46px;
    padding-inline: 21px;
    font-size: 10.5px;
}

.landing-footer {
    padding: 22px 0 calc(22px + env(safe-area-inset-bottom));
}

.landing-footer-inner {
    display: block;
}

.landing-footer-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 7px;
    margin: 0;
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.44);
    font-size: 9.5px;
    letter-spacing: 0.045em;
    line-height: 1.65;
    text-align: center;
}

.landing-footer-copy strong {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .landing-hero-copy h1 {
        font-size: clamp(33px, 4.7vw, 40px);
    }

    .landing-profile-actions {
        grid-column: 1;
        margin-top: 0;
    }
}

@media (max-width: 720px) {
    .landing-header-inner {
        justify-content: space-between;
    }

    .landing-brand,
    .landing-header.rolado .landing-brand {
        position: relative;
        top: auto;
        left: auto;
        width: 132px;
        height: 68px;
        transform: none;
    }

    .landing-brand img,
    .landing-header.rolado .landing-brand img {
        width: 132px;
        height: 68px;
        object-position: left center;
    }

    .landing-hero-copy h1 {
        max-width: 360px;
        margin: 22px auto 14px;
        font-size: clamp(30px, 8.2vw, 35px);
        line-height: 1.12;
    }

    .landing-hero-highlight {
        max-width: 360px;
        font-size: 16px;
        line-height: 1.52;
    }

    .landing-carousel-controls {
        display: flex;
        justify-content: center;
        margin-top: 14px;
        padding: 0;
    }

    .landing-carousel-count {
        display: none;
    }

    .landing-carousel-dots {
        justify-content: center;
    }

    .landing-steps article,
    .landing-steps article:first-child,
    .landing-steps article:nth-child(2),
    .landing-steps article:last-child {
        background: rgba(24, 23, 21, 0.96);
    }

    .landing-ease-note {
        width: 100%;
        margin-top: 18px;
        padding: 10px 14px;
        border-radius: 16px;
        font-size: 9.5px;
        letter-spacing: 0.075em;
    }

    .landing-profile-lines article {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        padding: 14px 0;
    }

    .landing-profile-art {
        width: 68px;
        height: 76px;
        border-radius: 14px;
    }

    .landing-profile-lines p {
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .landing-profile-actions {
        align-items: flex-start;
        gap: 15px 20px;
    }

    .landing-footer-copy {
        font-size: 9px;
        line-height: 1.7;
    }
}

@media (max-width: 420px) {
    .landing-brand,
    .landing-header.rolado .landing-brand,
    .landing-brand img,
    .landing-header.rolado .landing-brand img {
        width: 122px;
    }

    .landing-header-cta {
        padding-inline: 10px;
    }

    .landing-profile-lines article {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
    }

    .landing-profile-art {
        width: 60px;
        height: 70px;
    }

    .landing-profile-actions .landing-button {
        width: 100%;
    }
}

/*
 * Lapidação da abertura e da chamada final:
 * navegação do celular apenas por pontos, respiro entre marca e título,
 * passos mais silenciosos e encerramento em duas áreas.
 */
.landing-hero-logo {
    width: min(100%, 344px);
    margin: -4px 0 0;
}

.landing-hero-copy h1 {
    margin-top: 42px;
}

.landing-carousel-controls {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 0;
}

.landing-carousel-dots {
    justify-content: center;
    gap: 10px;
}

.landing-carousel-dots button,
.landing-carousel-dots button.ativo {
    width: 7px;
    height: 7px;
}

.landing-carousel-dots button.ativo {
    background: var(--landing-gold);
    box-shadow: 0 0 0 3px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.12);
}

.landing-how-heading {
    display: block;
    text-align: center;
}

.landing-how-heading h2 {
    margin: 0;
}

.landing-steps {
    margin-top: 24px;
}

.landing-profiles {
    padding-bottom: 34px;
}

.landing-final {
    min-height: 380px;
}

.landing-final-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.82) 48%, rgba(0, 0, 0, 0.55) 76%, rgba(0, 0, 0, 0.43) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.46), rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.045));
}

.landing-final-content {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(260px, 0.68fr);
    align-items: center;
    gap: clamp(42px, 7vw, 96px);
    padding: 58px 0;
}

.landing-final-copy {
    min-width: 0;
}

.landing-final-copy > p:not(.landing-eyebrow) {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    line-height: 1.62;
}

.landing-final-action {
    position: relative;
    display: grid;
    width: min(100%, 310px);
    min-height: 244px;
    justify-self: end;
    align-content: center;
    justify-items: center;
    gap: 15px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.32);
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 4%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.12), transparent 47%),
        linear-gradient(145deg, rgba(27, 25, 22, 0.78), rgba(7, 7, 7, 0.88));
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
}

.landing-final-action::before {
    position: absolute;
    top: 0;
    left: 18%;
    width: 64%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fcf6ba, #b38728, transparent);
    content: '';
    opacity: 0.72;
}

.landing-final-action::after {
    position: absolute;
    right: -54px;
    bottom: -76px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.1);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.landing-final-symbol {
    position: relative;
    z-index: 1;
    width: 116px;
    height: 116px;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.35));
}

.landing-final-symbol svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.landing-final-symbol-orbit,
.landing-final-symbol-phone,
.landing-final-symbol-lens,
.landing-final-symbol-memory,
.landing-final-symbol-spark {
    fill: none;
    stroke: url(#landing-final-gold);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-final-symbol-orbit {
    stroke-width: 1;
    opacity: 0.2;
    stroke-dasharray: 3 7;
}

.landing-final-symbol-phone {
    fill: rgba(5, 5, 5, 0.34);
    stroke-width: 2.2;
}

.landing-final-symbol-lens {
    stroke-width: 1.8;
}

.landing-final-symbol-memory {
    stroke-width: 1.7;
    opacity: 0.88;
}

.landing-final-symbol-spark {
    stroke-width: 1.5;
    opacity: 0.7;
}

.landing-final-action .landing-button {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 226px;
    margin-top: 0;
}

@media (max-width: 900px) {
    .landing-hero-logo {
        width: min(100%, 328px);
    }

    .landing-hero-copy h1 {
        margin-top: 36px;
    }

    .landing-final-content {
        grid-template-columns: minmax(0, 1.08fr) minmax(230px, 0.92fr);
        gap: 30px;
    }

    .landing-final-action {
        min-height: 226px;
        padding: 20px;
    }

    .landing-final-symbol {
        width: 102px;
        height: 102px;
    }
}

@media (min-width: 721px) and (max-width: 900px) {
    .landing-hero-logo {
        width: min(100%, 272px);
    }
}

@media (max-width: 720px) {
    .landing-hero-logo {
        width: min(100%, 260px);
        margin-inline: auto;
    }

    .landing-hero-copy h1 {
        margin-top: 34px;
    }

    .landing-how-heading {
        text-align: left;
    }

    .landing-how-heading h2 {
        font-size: 30px;
    }

    .landing-final {
        min-height: 0;
    }

    .landing-final-overlay {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.83) 58%, rgba(0, 0, 0, 0.5) 100%);
    }

    .landing-final-content {
        grid-template-columns: 1fr;
        align-self: center;
        gap: 24px;
        padding: 46px 0 38px;
    }

    .landing-final-action {
        grid-template-columns: 74px minmax(0, 1fr);
        width: 100%;
        min-height: 0;
        justify-self: stretch;
        justify-items: stretch;
        gap: 16px;
        padding: 17px 18px;
        border-radius: 21px;
    }

    .landing-final-symbol {
        width: 74px;
        height: 74px;
    }

    .landing-final-action .landing-button {
        width: 100%;
        max-width: none;
        align-self: center;
    }
}

@media (max-width: 420px) {
    .landing-hero-logo {
        width: min(100%, 240px);
    }

    .landing-hero-copy h1 {
        margin-top: 30px;
    }

    .landing-final-action {
        grid-template-columns: 66px minmax(0, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .landing-final-symbol {
        width: 66px;
        height: 66px;
    }

    .landing-final-action .landing-button {
        min-height: 46px;
        padding-inline: 14px;
        font-size: 10px;
    }
}

/*
 * Lapidação de lançamento:
 * lente real no aparelho, seis fotografias, perfis mais silenciosos
 * e chamada final inspirada no cartão Novo Evento do Office VIP.
 */
.landing-phone-sensors {
    display: grid;
    width: 36px;
    height: 22px;
    place-items: center;
}

.landing-phone-sensors .landing-phone-lens,
.landing-phone-sensors .landing-phone-lens:nth-child(1) {
    position: relative;
    inset: auto;
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.82);
    border-radius: 50%;
    background:
        radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.38) 0 7%, transparent 8%),
        radial-gradient(circle, #161d1e 0 27%, #060707 30% 54%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.34) 57% 64%, #050505 67%);
    box-shadow:
        inset 0 0 4px rgba(0, 0, 0, 0.92),
        0 0 8px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.16);
}

.landing-phone-sensors .landing-phone-lens::before {
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(126, 166, 177, 0.42);
    border-radius: 50%;
    content: '';
}

.landing-phone-sensors .landing-phone-lens i {
    position: absolute;
    top: 2px;
    left: 3px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.46);
}

.landing-carousel-dots {
    gap: 8px;
}

.landing-carousel-dots button,
.landing-carousel-dots button.ativo {
    width: 7px;
    height: 7px;
    box-shadow: none;
}

.landing-carousel-dots button.ativo {
    width: 28px;
    background: var(--landing-gold);
}

.landing-profiles::after {
    display: none;
}

.landing-profile-lines {
    border-top: 0;
}

.landing-profile-lines article {
    border-bottom: 0;
}

.landing-profile-lines article + article {
    border-top: 1px solid var(--landing-line);
}

.landing-resources-grid {
    align-items: stretch;
}

.landing-video-card {
    display: flex;
    height: 100%;
    align-self: stretch;
    flex-direction: column;
}

.landing-video-stage {
    aspect-ratio: 16 / 8.55;
}

.landing-video-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 18px 22px 19px;
}

.landing-video-copy h3 {
    margin: 8px 0 7px;
    font-size: 21px;
}

.landing-video-copy > p:not(.landing-eyebrow) {
    font-size: 12.7px;
    line-height: 1.54;
}

.landing-final-action {
    display: grid;
    width: min(100%, 320px);
    min-height: 0;
    justify-self: end;
    align-content: center;
    justify-items: center;
    gap: 16px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.landing-final-action::before,
.landing-final-action::after {
    display: none;
}

.landing-final-event-card {
    position: relative;
    width: 100%;
    min-height: 176px;
    overflow: hidden;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.28);
    border-radius: 21px;
    background:
        radial-gradient(circle at 86% 26%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.11), transparent 42%),
        linear-gradient(145deg, rgba(17, 16, 14, 0.44), rgba(5, 5, 5, 0.22));
    box-shadow:
        0 20px 54px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    isolation: isolate;
}

.landing-final-event-card::before {
    position: absolute;
    z-index: 0;
    top: -50%;
    bottom: -50%;
    left: -48%;
    width: 24%;
    border-radius: 50%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.11),
        rgba(255, 255, 255, 0.11),
        transparent
    );
    content: '';
    opacity: 0;
    pointer-events: none;
    transform: rotate(12deg);
    animation: landing-final-event-shine 7.4s ease-in-out infinite;
}

.landing-final-event-card::after {
    position: absolute;
    z-index: -1;
    top: 11px;
    right: 11px;
    bottom: 11px;
    width: 51%;
    border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.07);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 68%);
    content: '';
}

.landing-final-event-content {
    position: absolute;
    z-index: 3;
    inset: 15px auto 15px 16px;
    display: flex;
    width: 47%;
    flex-direction: column;
    align-items: flex-start;
}

.landing-final-event-plus {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--landing-gold);
    border-radius: 13px;
    background: var(--landing-gold);
    color: var(--cor-primaria-contraste, #080808);
    box-shadow:
        0 11px 28px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
    animation: landing-final-event-plus 4.8s ease-in-out infinite;
}

.landing-final-event-plus svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.6;
}

.landing-final-event-text {
    display: block;
    margin-top: auto;
}

.landing-final-event-text strong,
.landing-final-event-text small {
    display: block;
}

.landing-final-event-text strong {
    color: var(--landing-gold);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.065em;
    line-height: 1.25;
}

.landing-final-event-text small {
    max-width: 126px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 8.7px;
    line-height: 1.42;
}

.landing-final-event-illustration {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -3px;
    display: block;
    width: 58%;
    color: var(--landing-gold);
    pointer-events: none;
    transform: translateY(-50%);
    animation: landing-final-event-float 6.4s ease-in-out infinite;
}

.landing-final-event-illustration svg {
    display: block;
    width: 100%;
    overflow: visible;
}

.landing-final-event-card-shape {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-final-event-card-back {
    opacity: 0.12;
    stroke-width: 1.1;
    transform: rotate(8deg);
    transform-origin: 112px 73px;
    animation: landing-final-event-card-back 7.2s ease-in-out infinite;
}

.landing-final-event-card-middle {
    opacity: 0.22;
    stroke-width: 1.2;
    transform: rotate(-7deg);
    transform-origin: 90px 78px;
    animation: landing-final-event-card-middle 7.2s ease-in-out infinite;
}

.landing-final-event-card-front {
    fill: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.035);
    stroke: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.72);
    stroke-width: 1.35;
    filter: drop-shadow(0 13px 22px rgba(0, 0, 0, 0.2));
    transform-origin: 103px 75px;
    animation: landing-final-event-card-front 7.2s ease-in-out infinite;
}

.landing-final-event-card-front > rect {
    fill: rgba(8, 8, 8, 0.54);
}

.landing-final-event-globe {
    opacity: 0.94;
    stroke-width: 1.05;
}

.landing-final-event-globe > circle {
    fill: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.13);
}

.landing-final-event-globe-cable {
    opacity: 0.42;
}

.landing-final-event-globe-latitudes,
.landing-final-event-globe-longitudes {
    fill: none;
    opacity: 0.68;
    stroke-width: 0.85;
}

.landing-final-event-globe-rotation {
    transform-origin: 103px 42px;
    animation: landing-final-event-globe 4.8s ease-in-out infinite;
}

.landing-final-event-globe-reflection {
    fill: rgba(255, 255, 255, 0.12);
    stroke: none;
}

.landing-final-event-sparks {
    opacity: 0.78;
    stroke-width: 1.15;
    transform-box: fill-box;
    transform-origin: center;
    animation: landing-final-event-pulse 1.35s ease-in-out infinite alternate;
}

.landing-final-event-lights {
    fill: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.075);
    stroke: none;
    transform-box: fill-box;
    transform-origin: center top;
    animation: landing-final-event-lights 1.55s ease-in-out infinite alternate;
}

.landing-final-event-people {
    opacity: 0.9;
    stroke-width: 1.3;
}

.landing-final-event-person circle {
    fill: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.12);
}

.landing-final-event-person path {
    fill: none;
}

.landing-final-event-person-phone rect {
    fill: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.16);
    stroke-width: 1.15;
}

.landing-final-event-person-center {
    opacity: 0.8;
}

.landing-final-event-person-back {
    opacity: 0.88;
}

.landing-final-event-person-front {
    opacity: 0.76;
}

.landing-final-event-person-right {
    opacity: 0.84;
}

.landing-final-action .landing-button {
    width: auto;
    max-width: none;
    margin-top: 0;
    padding-inline: 28px;
    white-space: nowrap;
}

.landing-final-action .landing-button > span {
    white-space: nowrap;
}

@keyframes landing-final-event-shine {
    0%, 62% {
        left: -48%;
        opacity: 0;
    }

    68% {
        opacity: 0.72;
    }

    82%, 100% {
        left: 118%;
        opacity: 0;
    }
}

@keyframes landing-final-event-float {
    0%, 100% {
        transform: translate(0, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-4px, calc(-50% - 2px)) rotate(-1deg);
    }
}

@keyframes landing-final-event-plus {
    0%, 100% {
        box-shadow:
            0 11px 28px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.22),
            0 0 0 0 rgba(var(--cor-primaria-rgb, 212, 175, 55), 0),
            inset 0 1px 0 rgba(255, 255, 255, 0.32);
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 13px 31px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.28),
            0 0 0 5px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.055),
            inset 0 1px 0 rgba(255, 255, 255, 0.34);
        transform: scale(1.035);
    }
}

@keyframes landing-final-event-card-back {
    0%, 100% {
        opacity: 0.12;
        transform: rotate(8deg);
    }

    50% {
        opacity: 0.18;
        transform: translate(4px, -1px) rotate(11deg);
    }
}

@keyframes landing-final-event-card-middle {
    0%, 100% {
        opacity: 0.22;
        transform: rotate(-7deg);
    }

    50% {
        opacity: 0.3;
        transform: translate(-4px, 1px) rotate(-10deg);
    }
}

@keyframes landing-final-event-card-front {
    0%, 100% {
        filter: drop-shadow(0 13px 22px rgba(0, 0, 0, 0.2));
        transform: translateY(0) scale(1);
    }

    50% {
        filter:
            drop-shadow(0 17px 25px rgba(0, 0, 0, 0.24))
            drop-shadow(0 0 9px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.12));
        transform: translateY(-2px) scale(1.012);
    }
}

@keyframes landing-final-event-globe {
    0%, 100% {
        opacity: 0.64;
        transform: translateX(-5px) scaleX(0.94);
    }

    50% {
        opacity: 0.92;
        transform: translateX(5px) scaleX(1.06);
    }
}

@keyframes landing-final-event-pulse {
    to {
        opacity: 1;
        transform: scale(1.07);
    }
}

@keyframes landing-final-event-lights {
    to {
        opacity: 0.95;
        transform: scaleX(1.07);
    }
}

@media (min-width: 901px) {
    .landing-hero-logo {
        transform: translateX(17%);
    }
}

@media (max-width: 720px) {
    .landing-hero-visual,
    .landing-phone-shell {
        margin-inline: auto;
    }

    .landing-slide figcaption {
        right: auto;
        left: 50%;
        width: max-content;
        max-width: calc(100% - 30px);
        text-align: center;
        transform: translateX(-50%);
    }

    .landing-final-action {
        grid-template-columns: 1fr;
        width: min(100%, 330px);
        min-height: 0;
        justify-self: center;
        justify-items: center;
        gap: 14px;
        padding: 0;
        border-radius: 0;
    }

    .landing-final-event-card {
        min-height: 158px;
        border-radius: 19px;
    }

    .landing-final-event-content {
        inset: 14px auto 14px 15px;
    }

    .landing-final-event-plus {
        width: 39px;
        height: 39px;
        border-radius: 12px;
    }

    .landing-final-event-illustration {
        width: 56%;
    }

    .landing-final-action .landing-button {
        width: auto;
        max-width: none;
        min-height: 46px;
        padding-inline: 25px;
        font-size: 9.8px;
    }
}

@media (max-width: 420px) {
    .landing-final-event-card {
        min-height: 150px;
    }

    .landing-final-event-text strong {
        font-size: 10px;
    }

    .landing-final-event-text small {
        max-width: 112px;
        font-size: 8.2px;
    }

    .landing-final-action .landing-button {
        min-height: 45px;
        padding-inline: 22px;
        font-size: 9.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-final-event-card::before,
    .landing-final-event-plus,
    .landing-final-event-illustration,
    .landing-final-event-card-back,
    .landing-final-event-card-middle,
    .landing-final-event-card-front,
    .landing-final-event-globe-rotation,
    .landing-final-event-sparks,
    .landing-final-event-lights {
        animation: none !important;
    }
}

/*
 * Lapidação editorial 95%:
 * alinhamentos do hero, relatos discretos e chamada final mais persuasiva.
 */
.landing-slide figcaption {
    right: auto;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 32px);
    text-align: center;
    transform: translateX(-50%);
}

.landing-video-card::after {
    display: none;
}

.landing-testimonials {
    position: relative;
    padding: 48px 0 54px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 50%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.045), transparent 28%),
        #070707;
}

.landing-testimonials-panel {
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.55fr);
    align-items: stretch;
    gap: clamp(30px, 4vw, 58px);
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.landing-testimonials-panel > header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-testimonials-panel h2 {
    max-width: 390px;
    margin: 14px 0 0;
    color: var(--landing-ink);
    font-family: var(--landing-serif);
    font-size: clamp(27px, 2.35vw, 34px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.landing-testimonials-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
}

.landing-testimonials-list blockquote {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 146px;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    padding: 8px 22px 7px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.landing-testimonials-list blockquote > span {
    position: absolute;
    top: -9px;
    left: 18px;
    color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.26);
    font-family: var(--landing-serif);
    font-size: 58px;
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}

.landing-testimonials-list blockquote > p {
    position: relative;
    z-index: 1;
    margin: 23px 0 24px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--landing-serif);
    font-size: 16px;
    line-height: 1.48;
}

.landing-testimonials-list footer {
    margin-top: auto;
}

.landing-testimonials-list cite {
    color: var(--landing-gold);
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.45;
}

.landing-final-event-content {
    inset: 0 auto 0 13px;
    width: 49%;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(-6px);
}

.landing-final-event-text {
    display: flex;
    max-width: 138px;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
}

.landing-final-event-text strong {
    font-size: 10.5px;
    letter-spacing: 0.075em;
    line-height: 1.32;
}

.landing-final-event-text small {
    max-width: 136px;
    margin-top: 8px;
    font-size: 9px;
    line-height: 1.45;
}

.landing-button-spark {
    transform-origin: center;
    transition: transform 240ms ease, filter 240ms ease;
}

.landing-final-action .landing-button:hover .landing-button-spark,
.landing-final-action .landing-button:focus-visible .landing-button-spark {
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.24));
    transform: rotate(14deg) scale(1.06);
}

@media (min-width: 901px) {
    .landing-hero-logo {
        transform: translateX(14%);
    }

    .landing-hero-visual {
        margin-top: clamp(54px, 4.6vw, 72px);
    }
}

@media (min-width: 721px) and (max-width: 900px) {
    .landing-hero-visual {
        margin-top: 26px;
    }
}

@media (max-width: 900px) {
    .landing-testimonials-panel {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .landing-testimonials-panel h2 {
        max-width: 560px;
    }
}

@media (max-width: 720px) {
    .landing-testimonials {
        padding: 38px 0 42px;
    }

    .landing-testimonials-panel {
        padding: 26px 0;
    }

    .landing-testimonials-list {
        grid-template-columns: 1fr;
    }

    .landing-testimonials-list blockquote {
        min-height: 0;
        padding: 20px 4px 20px 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 0;
    }

    .landing-testimonials-list blockquote:first-child {
        border-top: 0;
    }

    .landing-testimonials-list blockquote > span {
        top: 4px;
        left: 0;
        font-size: 47px;
    }

    .landing-testimonials-list blockquote > p {
        margin: 0 0 13px;
        font-size: 15.5px;
    }

    .landing-final-event-content {
        inset: 0 auto 0 12px;
        width: 49%;
        transform: translateY(-5px);
    }
}

@media (max-width: 420px) {
    .landing-testimonials-panel h2 {
        font-size: 27px;
    }

    .landing-final-event-text strong {
        font-size: 9.6px;
    }

    .landing-final-event-text small {
        max-width: 116px;
        font-size: 8.2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-button-spark {
        transition: none;
    }
}

/*
 * Lapidação de fechamento:
 * header com ação central, relatos rotativos e pequenos ajustes de alinhamento.
 */
.landing-header-inner {
    position: relative;
    justify-content: space-between;
}

.landing-header-cta {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.landing-header-cta:hover,
.landing-header-cta:focus-visible {
    transform: translate(-50%, -1px);
}

.landing-header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-left: auto;
    padding: 0 2px;
    border-bottom: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.42);
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color 180ms ease, color 180ms ease;
}

.landing-header-login:hover,
.landing-header-login:focus-visible {
    border-color: var(--landing-gold);
    color: var(--landing-gold);
}

.landing-feature-list {
    border-bottom: 1px solid var(--landing-line);
}

.landing-final-photo img.pos-bottom {
    object-position: center bottom;
}

.landing-testimonials-stage {
    display: grid;
    min-width: 0;
    gap: 18px;
}

.landing-testimonials-list blockquote {
    min-height: 178px;
}

.landing-testimonials-list blockquote:nth-child(3n + 1),
.landing-testimonials-list blockquote.primeiro-ativo {
    border-left: 0;
}

.landing-js .landing-testimonials-list blockquote {
    display: none;
}

.landing-js .landing-testimonials-list blockquote.ativo {
    display: flex;
    animation: landing-testimonial-enter 520ms cubic-bezier(0.22, 0.7, 0.25, 1) both;
}

.landing-testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 8px;
}

.landing-testimonials-dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.landing-testimonials-dots button.ativo {
    width: 24px;
    background: var(--landing-gold);
    box-shadow: 0 0 12px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.18);
}

.landing-testimonials-dots button:focus-visible {
    outline: 2px solid var(--landing-gold);
    outline-offset: 4px;
}

.landing-final-event-card {
    background:
        radial-gradient(circle at 86% 26%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.13), transparent 42%),
        linear-gradient(145deg, rgba(37, 33, 26, 0.58), rgba(13, 13, 12, 0.42));
}

.landing-final-event-text small {
    color: rgba(255, 255, 255, 0.8);
}

.landing-footer-copy strong {
    color: rgba(255, 255, 255, 0.78);
}

.landing-footer-copy .landing-footer-vip {
    color: var(--landing-gold);
}

@keyframes landing-testimonial-enter {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 901px) {
    .landing-hero-visual {
        margin-top: clamp(16px, 1.8vw, 28px);
    }
}

@media (min-width: 721px) and (max-width: 900px) {
    .landing-hero-visual {
        margin-top: 6px;
    }

    .landing-testimonials-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .landing-brand,
    .landing-header.rolado .landing-brand,
    .landing-brand img,
    .landing-header.rolado .landing-brand img {
        width: 112px;
    }

    .landing-header-cta {
        min-height: 36px;
        padding-inline: 13px;
    }

    .landing-header-login {
        min-height: 34px;
        font-size: 8.8px;
        letter-spacing: 0.09em;
    }

    .landing-testimonials-list {
        grid-template-columns: 1fr;
    }

    .landing-testimonials-list blockquote,
    .landing-testimonials-list blockquote.primeiro-ativo {
        min-height: 172px;
        border-top: 0;
        border-left: 0;
    }

    .landing-testimonials-dots {
        justify-content: center;
    }
}

@media (max-width: 350px) {
    .landing-brand,
    .landing-header.rolado .landing-brand,
    .landing-brand img,
    .landing-header.rolado .landing-brand img {
        width: 102px;
    }

    .landing-header-cta {
        padding-inline: 10px;
    }

    .landing-header-login {
        font-size: 8.2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-js .landing-testimonials-list blockquote.ativo {
        animation: none;
    }
}

@media (min-width: 351px) and (max-width: 720px) {
    .landing-header-cta-full {
        display: inline;
    }

    .landing-header-cta-short {
        display: none;
    }

    .landing-header-cta {
        padding-inline: 11px;
        font-size: 8.5px;
        letter-spacing: 0.06em;
    }
}

/*
 * Lapidação 99%:
 * acessos compactos, relatos em fade estável e fechamento alinhado à esquerda.
 */
.landing-header-access {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
}

.landing-header-access-label {
    margin-right: 3px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.landing-header-access-link {
    position: relative;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.landing-header-access-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.landing-header-access-link:hover,
.landing-header-access-link:focus-visible {
    border-color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.58);
    background: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.08);
    color: var(--landing-gold);
    transform: translateY(-1px);
}

@media (hover: hover) {
    .landing-header-access-link::after {
        position: absolute;
        z-index: 5;
        top: calc(100% + 9px);
        left: 50%;
        width: max-content;
        max-width: 150px;
        padding: 7px 9px;
        border: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.22);
        border-radius: 8px;
        background: rgba(8, 8, 8, 0.97);
        color: rgba(255, 255, 255, 0.82);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
        content: attr(data-tooltip);
        font-size: 8.5px;
        font-weight: 650;
        letter-spacing: 0.08em;
        opacity: 0;
        pointer-events: none;
        text-transform: uppercase;
        transform: translate(-50%, -4px);
        transition: opacity 150ms ease, transform 150ms ease;
        white-space: nowrap;
    }

    .landing-header-access-link:last-child::after {
        right: 0;
        left: auto;
        transform: translateY(-4px);
    }

    .landing-header-access-link:hover::after,
    .landing-header-access-link:focus-visible::after {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    .landing-header-access-link:last-child:hover::after,
    .landing-header-access-link:last-child:focus-visible::after {
        transform: translateY(0);
    }
}

.landing-final-photo img.landing-final-photo-image {
    object-position: center 30%;
}

.landing-final-action {
    justify-items: start;
}

.landing-final-event-content {
    align-items: flex-start;
    text-align: left;
}

.landing-final-event-text {
    align-items: flex-start;
    text-align: left;
}

.landing-final-action .landing-button {
    justify-self: start;
}

.landing-testimonials {
    padding: 44px 0 50px;
}

.landing-testimonials-panel {
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.42fr);
    align-items: center;
    gap: clamp(34px, 5vw, 72px);
    min-height: 238px;
    padding: 30px 0;
}

.landing-testimonials-panel h2 {
    max-width: 420px;
    font-size: clamp(27px, 2.45vw, 36px);
}

.landing-testimonials-stage {
    display: grid;
    min-width: 0;
    min-height: 190px;
    align-content: center;
    gap: 14px;
}

.landing-testimonials-list {
    position: relative;
    display: block;
    min-height: 158px;
}

.landing-testimonials-list blockquote,
.landing-testimonials-list blockquote.primeiro-ativo,
.landing-testimonials-list blockquote.ultimo-ativo {
    display: flex;
    min-height: 158px;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 24px 42px 22px;
    border: 0;
}

.landing-js .landing-testimonials-list blockquote,
.landing-js .landing-testimonials-list blockquote.ativo {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    animation: none;
    transition: opacity 620ms ease, visibility 0s linear 620ms;
}

.landing-js .landing-testimonials-list blockquote.ativo {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
}

.landing-testimonials-list blockquote > p {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--landing-serif);
    font-size: clamp(17px, 1.65vw, 21px);
    line-height: 1.52;
}

.landing-testimonials-list footer {
    position: relative;
    z-index: 1;
    margin: 0;
}

.landing-testimonials-list cite {
    color: var(--landing-gold);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.landing-testimonials-list blockquote > .landing-testimonial-quote {
    position: absolute;
    color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.42);
    font-family: var(--landing-serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}

.landing-testimonial-quote-open {
    top: 18px;
    left: 12px;
}

.landing-testimonial-quote-close {
    right: 14px;
    bottom: 31px;
}

.landing-testimonials-dots {
    justify-content: flex-start;
    padding-left: 42px;
}

.landing-testimonials-dots button {
    width: 5px;
    height: 5px;
}

.landing-testimonials-dots button.ativo {
    width: 20px;
}

@media (max-width: 1020px) {
    .landing-header-access-label {
        display: none;
    }
}

@media (max-width: 900px) {
    .landing-testimonials-panel {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
    }

    .landing-testimonials-panel > header {
        max-width: 620px;
    }

    .landing-testimonials-stage {
        min-height: 178px;
    }
}

@media (max-width: 720px) {
    .landing-header-inner {
        gap: 7px;
    }

    .landing-header-access {
        gap: 4px;
    }

    .landing-header-access-link {
        width: 28px;
        height: 28px;
        border-radius: 9px;
    }

    .landing-header-access-link svg {
        width: 13px;
        height: 13px;
    }

    .landing-final-photo img.landing-final-photo-image {
        object-position: center 34%;
    }

    .landing-final-action {
        justify-items: start;
    }

    .landing-final-event-content {
        align-items: flex-start;
        text-align: left;
    }

    .landing-final-action .landing-button {
        justify-self: start;
    }

    .landing-testimonials {
        padding: 36px 0 40px;
    }

    .landing-testimonials-panel {
        padding: 24px 0;
    }

    .landing-testimonials-panel h2 {
        max-width: 390px;
        font-size: 28px;
    }

    .landing-testimonials-stage,
    .landing-testimonials-list {
        min-height: 184px;
    }

    .landing-testimonials-list blockquote,
    .landing-testimonials-list blockquote.primeiro-ativo,
    .landing-testimonials-list blockquote.ultimo-ativo {
        min-height: 184px;
        padding: 24px 28px 22px;
    }

    .landing-testimonials-list blockquote > p {
        margin-bottom: 16px;
        font-size: 17px;
        line-height: 1.5;
    }

    .landing-testimonial-quote-open {
        top: 16px;
        left: 2px;
    }

    .landing-testimonial-quote-close {
        right: 2px;
        bottom: 34px;
    }

    .landing-testimonials-dots {
        justify-content: center;
        padding-left: 0;
    }
}

@media (max-width: 350px) {
    .landing-header-access {
        gap: 3px;
    }

    .landing-header-access-link {
        width: 25px;
        height: 25px;
        border-radius: 8px;
    }

    .landing-header-access-link svg {
        width: 12px;
        height: 12px;
    }

    .landing-testimonials-panel h2 {
        font-size: 26px;
    }

    .landing-testimonials-stage,
    .landing-testimonials-list,
    .landing-testimonials-list blockquote,
    .landing-testimonials-list blockquote.primeiro-ativo,
    .landing-testimonials-list blockquote.ultimo-ativo {
        min-height: 198px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-js .landing-testimonials-list blockquote,
    .landing-header-access-link {
        transition: none;
    }
}

/* Enquadramento configurável da fotografia de fechamento. */
.landing-final-photo img.landing-final-photo-image.pos-top {
    object-position: center top;
}

.landing-final-photo img.landing-final-photo-image.pos-center {
    object-position: center;
}

.landing-final-photo img.landing-final-photo-image.pos-bottom {
    object-position: center bottom;
}

.landing-final-photo img.landing-final-photo-image.pos-left {
    object-position: left center;
}

.landing-final-photo img.landing-final-photo-image.pos-right {
    object-position: right center;
}

/*
 * Lapidação de relatos e fechamento:
 * uma voz por vez, fade sem deslocamento e fotografia final ancorada no casal.
 */
.landing-testimonials-panel h2 {
    max-width: 410px;
}

.landing-testimonials-list {
    min-height: 154px;
}

.landing-testimonials-list blockquote,
.landing-testimonials-list blockquote.primeiro-ativo,
.landing-testimonials-list blockquote.ultimo-ativo {
    min-height: 154px;
    padding: 22px 38px 20px;
}

.landing-js .landing-testimonials-list blockquote,
.landing-js .landing-testimonials-list blockquote.ativo {
    transition: opacity 560ms ease, visibility 0s linear 560ms;
}

.landing-js .landing-testimonials-list blockquote.ativo {
    transition-delay: 0s;
}

.landing-js .landing-testimonials-list blockquote.landing-testimonial-measure {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transition: none !important;
}

.landing-testimonials-list blockquote > p {
    margin-bottom: 16px;
    font-size: clamp(16.5px, 1.55vw, 20px);
    line-height: 1.54;
}

.landing-testimonials-list blockquote > .landing-testimonial-quote {
    color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.34);
    font-size: 20px;
}

.landing-testimonial-quote-open {
    top: 19px;
    left: 14px;
}

.landing-testimonial-quote-close {
    right: 15px;
    bottom: 29px;
}

.landing-final-event-content,
.landing-final-event-text {
    align-items: flex-start;
    text-align: left;
}

.landing-final-action,
.landing-final-action .landing-button {
    justify-items: start;
    justify-self: start;
}

@media (max-width: 720px) {
    .landing-testimonials-list blockquote,
    .landing-testimonials-list blockquote.primeiro-ativo,
    .landing-testimonials-list blockquote.ultimo-ativo {
        min-height: 170px;
        padding: 22px 26px 20px;
    }

    .landing-testimonial-quote-open {
        top: 17px;
        left: 3px;
    }

    .landing-testimonial-quote-close {
        right: 3px;
        bottom: 31px;
    }
}

@media (max-width: 350px) {
    .landing-testimonials-list blockquote,
    .landing-testimonials-list blockquote.primeiro-ativo,
    .landing-testimonials-list blockquote.ultimo-ativo {
        min-height: 184px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-js .landing-testimonials-list blockquote,
    .landing-header-access-link {
        transition: none;
    }
}

/* Ajuste pontual: eleva o aparelho no hero para preservar a moldura e os indicadores. */
@media (min-width: 901px) {
    .landing-hero-visual {
        margin-top: 4px;
    }
}

/*
 * Lapidação de acabamento:
 * relatos mais finos, fotografia final levemente rebaixada no enquadramento
 * e assinatura do rodapé com peso visual mais delicado.
 */
.landing-testimonials {
    padding: 26px 0 30px;
}

.landing-testimonials-panel {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
    gap: clamp(26px, 4vw, 52px);
    min-height: 184px;
    padding: 17px 0;
}

.landing-testimonials-panel .landing-eyebrow {
    margin-bottom: 8px;
    font-size: 8.5px;
    letter-spacing: 0.2em;
}

.landing-testimonials-panel h2 {
    max-width: 360px;
    font-size: clamp(24px, 2.05vw, 31px);
    line-height: 1.14;
}

.landing-testimonials-stage {
    min-height: 132px;
    gap: 9px;
}

.landing-testimonials-list {
    min-height: 108px;
}

.landing-testimonials-list blockquote,
.landing-testimonials-list blockquote.primeiro-ativo,
.landing-testimonials-list blockquote.ultimo-ativo {
    min-height: 108px;
    padding: 13px 32px 11px;
}

.landing-testimonials-list blockquote > p {
    max-width: 620px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(15px, 1.3vw, 17.5px);
    line-height: 1.48;
}

.landing-testimonials-list cite {
    color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.84);
    font-size: 8.5px;
    letter-spacing: 0.16em;
}

.landing-testimonials-list blockquote > .landing-testimonial-quote {
    color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.26);
    font-size: 16px;
}

.landing-testimonial-quote-open {
    top: 13px;
    left: 13px;
}

.landing-testimonial-quote-close {
    right: 14px;
    bottom: 23px;
}

.landing-testimonials-dots {
    gap: 7px;
    padding-left: 32px;
}

.landing-testimonials-dots button {
    width: 4px;
    height: 4px;
}

.landing-testimonials-dots button.ativo {
    width: 16px;
}

/* O enquadramento "topo" preserva os rostos, mas desce um pouco a leitura da foto. */
.landing-final-photo img.landing-final-photo-image.pos-top {
    object-position: center 18%;
}

.landing-footer-copy strong {
    color: rgba(255, 255, 255, 0.64);
    font-weight: 520;
    letter-spacing: 0.075em;
}

.landing-footer-copy .landing-footer-vip {
    color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.82);
}

@media (max-width: 900px) {
    .landing-testimonials-panel {
        grid-template-columns: 1fr;
        gap: 13px;
        min-height: 0;
        padding: 15px 0;
    }

    .landing-testimonials-panel > header {
        max-width: 560px;
    }

    .landing-testimonials-stage {
        min-height: 126px;
    }
}

@media (max-width: 720px) {
    .landing-testimonials {
        padding: 23px 0 27px;
    }

    .landing-testimonials-panel {
        padding: 13px 0;
    }

    .landing-testimonials-panel h2 {
        max-width: 350px;
        font-size: 24px;
    }

    .landing-testimonials-stage,
    .landing-testimonials-list {
        min-height: 132px;
    }

    .landing-testimonials-list blockquote,
    .landing-testimonials-list blockquote.primeiro-ativo,
    .landing-testimonials-list blockquote.ultimo-ativo {
        min-height: 132px;
        padding: 15px 23px 13px;
    }

    .landing-testimonials-list blockquote > p {
        margin-bottom: 10px;
        font-size: 15.5px;
        line-height: 1.46;
    }

    .landing-testimonial-quote-open {
        top: 14px;
        left: 2px;
    }

    .landing-testimonial-quote-close {
        right: 2px;
        bottom: 25px;
    }

    .landing-testimonials-dots {
        justify-content: center;
        padding-left: 0;
    }

    .landing-final-photo img.landing-final-photo-image.pos-top {
        object-position: center 21%;
    }
}

@media (max-width: 350px) {
    .landing-testimonials-stage,
    .landing-testimonials-list,
    .landing-testimonials-list blockquote,
    .landing-testimonials-list blockquote.primeiro-ativo,
    .landing-testimonials-list blockquote.ultimo-ativo {
        min-height: 146px;
    }
}

/*
 * Lapidação final: sensor mais discreto, marca reposicionada,
 * indicadores móveis apenas circulares e chamada final reduzida ao ícone vivo.
 */
.landing-phone-sensors .landing-phone-lens,
.landing-phone-sensors .landing-phone-lens:nth-child(1) {
    width: 10px;
    height: 10px;
    border-width: 0.8px;
}

.landing-phone-sensors .landing-phone-lens::before {
    inset: 2.5px;
    border-width: 0.8px;
}

.landing-phone-sensors .landing-phone-lens i {
    top: 1.6px;
    left: 2.4px;
    width: 1.6px;
    height: 1.6px;
}

/* Eleva o casal sem devolver o corte excessivo do enquadramento anterior. */
.landing-final-photo img.landing-final-photo-image.pos-top {
    object-position: center 24%;
}

/* A ação termina apenas com a arte animada e o botão, sem competir com a copy. */
.landing-final-action {
    width: min(100%, 300px);
    justify-items: center;
    justify-self: end;
    gap: 10px;
}

.landing-final-event-card {
    display: grid;
    width: 224px;
    min-height: 176px;
    place-items: center;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.landing-final-event-card::before,
.landing-final-event-card::after {
    display: none;
}

.landing-final-event-illustration {
    position: relative;
    top: auto;
    right: auto;
    width: 205px;
    transform: none;
    animation: landing-final-event-float-standalone 6.4s ease-in-out infinite;
}

.landing-final-action .landing-button {
    justify-self: center;
}

@keyframes landing-final-event-float-standalone {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(-0.6deg);
    }
}

@media (min-width: 901px) {
    .landing-hero-logo {
        transform: translateX(9%);
    }
}

@media (max-width: 720px) {
    .landing-carousel-dots button,
    .landing-carousel-dots button.ativo {
        width: 7px;
        height: 7px;
        border-radius: 50%;
    }

    .landing-carousel-dots button.ativo {
        box-shadow: 0 0 0 2px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.11);
    }

    .landing-final-photo img.landing-final-photo-image.pos-top {
        object-position: center 27%;
    }

    .landing-final-action {
        width: 100%;
        justify-items: center;
        justify-self: stretch;
    }

    .landing-final-event-card {
        width: 198px;
        min-height: 156px;
    }

    .landing-final-event-illustration {
        width: 184px;
    }

    .landing-final-action .landing-button {
        justify-self: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-final-event-illustration {
        animation: none !important;
    }
}

/*
 * Ajuste de fechamento:
 * reenquadra o casal, aproxima a ação e deixa os indicadores móveis circulares.
 */
.landing-final-photo img.landing-final-photo-image.pos-top {
    object-position: center 34%;
}

.landing-final-action .landing-button {
    margin-top: -8px;
}

.landing-footer-primary-slogan {
    color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 720px) {
    .landing-carousel-dots button,
    .landing-carousel-dots button.ativo {
        inline-size: 7px !important;
        min-inline-size: 7px !important;
        max-inline-size: 7px !important;
        block-size: 7px !important;
        flex: 0 0 7px;
        border-radius: 50%;
        box-shadow: none;
    }

    .landing-carousel-dots button.ativo {
        background: var(--landing-gold);
        box-shadow: 0 0 0 2px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.1);
    }

    .landing-final-photo img.landing-final-photo-image.pos-top {
        object-position: center 36%;
    }

    .landing-final-action .landing-button {
        margin-top: -5px;
    }
}

/*
 * Lapidação pontual do carrossel:
 * legenda mais próxima da base e indicadores sempre circulares.
 */
.landing-slide figcaption {
    bottom: 12px;
}

.landing-carousel-dots button,
.landing-carousel-dots button.ativo {
    inline-size: 7px !important;
    min-inline-size: 7px !important;
    max-inline-size: 7px !important;
    block-size: 7px !important;
    flex: 0 0 7px;
    border-radius: 50%;
    box-shadow: none;
}

.landing-carousel-dots button.ativo {
    background: var(--landing-gold);
    box-shadow: 0 0 0 2px rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.08);
}

@media (max-width: 720px) {
    .landing-slide figcaption {
        bottom: 10px;
    }
}

/* CTA completo também nas telas mais estreitas, sem disputar espaço com os acessos. */
@media (max-width: 350px) {
    .landing-header-cta {
        left: 53.5%;
        min-height: 34px;
        padding-inline: 6px;
        font-size: 8px;
        letter-spacing: 0.035em;
    }
}

/* --------------------------------------------------------------------------
 * Rodapé institucional — extensão da landing aprovada.
 * Mantém toda a experiência acima intacta e concentra navegação + FAQ no fim.
 * -------------------------------------------------------------------------- */
.landing-footer {
    padding: 0;
    /* divisor delicado entre a chamada final e a navegação institucional */
    border-top: 1px solid rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.34);
    background:
        radial-gradient(circle at 9% 0%, rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.045), transparent 28%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
}

.landing-footer-site {
    display: grid;
    grid-template-columns: minmax(250px, 0.86fr) minmax(0, 1.42fr);
    gap: 54px 84px;
    align-items: start;
    padding-top: 48px;
    padding-bottom: 43px;
}

.landing-footer-intro {
    display: block;
    max-width: 360px;
    border-radius: 8px;
    scroll-margin-top: 100px;
}

.landing-footer-intro .landing-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.landing-footer-intro svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-footer-intro:hover .landing-eyebrow span {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.landing-footer-intro > p:last-child {
    max-width: 345px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.47);
    font-size: 12.5px;
    line-height: 1.72;
}

.landing-footer nav.landing-footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 46px;
    justify-content: initial;
    padding: 0;
}

.landing-footer-group {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 8px;
}

.landing-footer-group strong {
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 9px;
    font-weight: 620;
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.landing-footer nav.landing-footer-nav .landing-footer-group a {
    position: relative;
    padding: 2px 0;
    color: rgba(255, 255, 255, 0.47);
    font-size: 11.5px;
    font-weight: 430;
    letter-spacing: 0.01em;
    line-height: 1.45;
    transition: color 180ms ease, transform 180ms ease;
}

.landing-footer nav.landing-footer-nav .landing-footer-group a:hover,
.landing-footer nav.landing-footer-nav .landing-footer-group a:focus-visible {
    color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.92);
    transform: translateX(2px);
}

.landing-footer-faq {
    scroll-margin-top: 104px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
    background: rgba(255, 255, 255, 0.012);
}

.landing-footer-faq-layout {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
    gap: 44px 82px;
    align-items: start;
    padding-top: 39px;
    padding-bottom: 39px;
}

.landing-footer-faq-heading {
    max-width: 355px;
}

.landing-footer-faq-heading h2 {
    max-width: 330px;
    margin: 11px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(23px, 2.45vw, 31px);
    font-weight: 390;
    letter-spacing: -0.024em;
    line-height: 1.16;
}

.landing-footer-faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.landing-footer-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-footer-faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 18px;
    align-items: center;
    min-height: 58px;
    padding: 14px 1px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 520;
    letter-spacing: 0.01em;
    line-height: 1.45;
    list-style: none;
    cursor: pointer;
    transition: color 180ms ease;
}

.landing-footer-faq-item summary::-webkit-details-marker {
    display: none;
}

.landing-footer-faq-item summary:hover,
.landing-footer-faq-item summary:focus-visible,
.landing-footer-faq-item[open] summary {
    color: rgba(255, 255, 255, 0.96);
}

.landing-footer-faq-item summary i {
    position: relative;
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.landing-footer-faq-item summary i::before,
.landing-footer-faq-item summary i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    border-radius: 999px;
    background: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.78);
    transform: translate(-50%, -50%);
    transition: opacity 180ms ease, transform 180ms ease;
}

.landing-footer-faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.landing-footer-faq-item[open] summary i::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.landing-footer-faq-answer {
    padding: 0 36px 18px 1px;
}

.landing-footer-faq-answer p {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 11.75px;
    line-height: 1.7;
}

.landing-footer-legal-rule {
    width: 100%;
    height: 1px;
    margin: 0;
    background: rgba(255, 255, 255, 0.10);
}

.landing-footer-legal {
    width: 100%;
    max-width: none;
    padding-top: 0;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.landing-footer-legal .landing-footer-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 7px;
    margin: 0;
    padding: 17px 18px 0;
    border: 0;
    color: rgba(255, 255, 255, 0.32);
    font-size: 8.8px;
    letter-spacing: 0.045em;
    line-height: 1.65;
    text-align: center;
}

.landing-footer-legal .landing-footer-copy strong {
    color: rgba(255, 255, 255, 0.56);
    font-weight: 500;
    letter-spacing: 0.075em;
    text-transform: none;
}

.landing-footer-legal .landing-footer-vip {
    color: rgba(var(--cor-primaria-rgb, 212, 175, 55), 0.8);
}

@media (max-width: 900px) {
    .landing-footer-site,
    .landing-footer-faq-layout {
        grid-template-columns: 1fr;
    }

    .landing-footer-site {
        gap: 32px;
    }

    .landing-footer-intro {
        max-width: 540px;
    }

    .landing-footer-faq-layout {
        gap: 24px;
    }

    .landing-footer-faq-heading {
        max-width: 560px;
    }
}

@media (max-width: 720px) {
    .landing-footer-site {
        gap: 29px;
        padding-top: 38px;
        padding-bottom: 34px;
    }

    .landing-footer-intro > p:last-child {
        margin-top: 10px;
        font-size: 11.75px;
        line-height: 1.68;
    }

    .landing-footer nav.landing-footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 30px;
    }

    .landing-footer-group:last-child {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, auto);
        justify-content: start;
        column-gap: 21px;
    }

    .landing-footer-group:last-child strong {
        grid-column: 1 / -1;
    }

    .landing-footer-faq {
        scroll-margin-top: 88px;
    }

    .landing-footer-faq-layout {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .landing-footer-faq-heading h2 {
        max-width: 320px;
        font-size: clamp(23px, 7.2vw, 28px);
    }

    .landing-footer-faq-item summary {
        min-height: 55px;
        gap: 13px;
        padding-block: 13px;
        font-size: 11.75px;
    }

    .landing-footer-faq-answer {
        padding: 0 28px 16px 0;
    }

    .landing-footer-faq-answer p {
        font-size: 11.5px;
        line-height: 1.66;
    }

    .landing-footer-legal {
        padding-top: 14px;
    }

    .landing-footer-legal .landing-footer-copy {
        font-size: 8.25px;
    }
}

@media (max-width: 390px) {
    .landing-footer nav.landing-footer-nav {
        gap: 24px 22px;
    }

    .landing-footer-group:last-child {
        column-gap: 16px;
    }

    .landing-footer nav.landing-footer-nav .landing-footer-group a {
        font-size: 11px;
    }
}

/* Rodapé legal: LENTE branco, VIP dourado, preservando a linha full-width. */
.landing-footer-legal .landing-footer-copy strong > span:first-child {
    color: rgba(255, 255, 255, 0.92);
}

/* O manifesto da abertura deve ser lido em duas linhas, inclusive no celular. */
.landing-hero-copy {
    max-width: 700px;
}

.landing-hero-copy h1 {
    width: min(100%, 680px);
    max-width: none;
    font-size: clamp(38px, 3.2vw, 48px);
    text-wrap: balance;
}

.landing-hero-highlight {
    width: min(100%, 650px);
    max-width: none;
    text-wrap: balance;
}

@media (min-width: 721px) and (max-width: 900px) {
    .landing-hero-copy {
        max-width: 440px;
    }

    .landing-hero-copy h1 {
        font-size: clamp(32px, 3.9vw, 35px);
    }
}

@media (max-width: 720px) {
    .landing-hero-copy h1 {
        width: min(100%, 560px);
        margin-inline: auto;
        font-size: clamp(24px, 7.5vw, 32px);
        letter-spacing: -0.012em;
    }
}

@media (min-width: 901px) {
    .landing-hero-logo {
        transform: translateX(25%);
    }

    .landing-hero-copy {
        position: relative;
        top: -25px;
    }
}

/* Afasta a composição de abertura do topo sem romper seu alinhamento interno. */
.landing-hero {
    padding-top: 39px;
}

@media (max-width: 900px) {
    .landing-hero {
        padding-top: 33px;
    }
}

@media (max-width: 720px) {
    .landing-hero {
        padding-top: 21px;
    }
}
