*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: #050507;
    color: #e8eaee;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

/* ================== DESIGN TOKENS ================== */
:root {
    --bg: #050507;
    --bg-2: #0b0c10;
    --card: #0f1116;
    --card-2: #14161d;
    --line: rgba(255, 255, 255, .08);
    --line-strong: rgba(255, 255, 255, .14);
    --text: #e8eaee;
    --text-dim: #9ba0aa;
    --text-mute: #6a6f79;

    --green: #19e06a;
    --green-2: #0fbf57;
    --green-glow: rgba(25, 224, 106, .35);

    --yellow: #ffe600;
    /* ML yellow */
    --yellow-2: #f5d400;

    --grad-hot: linear-gradient(90deg, #7b2bff 0%, #ff3d00 55%, #ff9100 100%);
    --grad-cold: linear-gradient(135deg, #101523 0%, #070812 100%);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;

    --container: 1200px;
}

/* ================== LAYOUT ================== */
.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
    position: relative;
}

@media (max-width: 720px) {
    section {
        padding: 64px 0;
    }
}

/* ================== TYPO ================== */
h1,
h2,
h3,
h4 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
}

h2 {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
}

p {
    color: var(--text-dim);
    font-size: clamp(1rem, 1.05vw, 1.08rem);
}

.eyebrow {
    display: block;
    width: fit-content;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 300;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffe60012;
    border: 1px solid #f5d40042;
}

.eyebrow.yellow {
    color: #0a0a0a;
    background: var(--yellow);
    border-color: var(--yellow);
}

.highlight-y {
    color: var(--yellow);
}

.highlight-g {
    color: var(--yellow);
}

.highlight-red {
    color: #ff4d4d;
}

strong {
    color: #fff;
    font-weight: 700;
}

/* ================== BUTTONS ================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .98rem;
    letter-spacing: .01em;
    transition: transform .18s ease, box-shadow .22s ease, background .2s ease;
    will-change: transform;
}

.btn-primary {
    background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-2) 100%);
    color: #252525;
    box-shadow: 0 10px 30px -8px var(--yellow-2), inset 0 -2px 0 rgba(112, 88, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -10px rgba(255, 217, 0, 0.335);
}

.btn-ghost {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line-strong);
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .08);
}

.btn .arrow {
    transition: transform .2s ease;
}

.btn:hover .arrow {
    transform: translate(2px, -2px);
}

.wppvoa {
    display: flex;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    z-index: 999999999;
    bottom: 30px;
    left: 20px;
    animation: 1.5s ease 0s infinite normal none running pisca;
}

.wppvoa:hover {
    text-decoration: none;
    color: #fff;
}

.wppvoa:hover svg {
    transform: rotate(360deg);
}

.wppvoa svg {
    width: 25px;
    margin: 0 5px;
    transition: .5s;
}

@keyframes pisca {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    70% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 25px #ffff0000;
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 #ffff0000;
    }
}

/* ================== HEADER ================== */
header.site {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 14px 0;
    background: rgba(5, 5, 7, .65);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
}

header.site::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 4px;
    background-image: linear-gradient(90deg, #171392, #FE4D46, #EDBA06);
}

header .logo {
    width: 220px;
}

header.site .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand .ecf {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    padding: 6px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    letter-spacing: .04em;
}

.brand .ecf span {
    color: var(--yellow);
}

.brand .sep {
    width: 1px;
    height: 22px;
    background: var(--line-strong);
}

.brand .mag {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.brand .mag .yr {
    color: var(--yellow);
    font-size: .8rem;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav a {
    font-size: .92rem;
    color: var(--text-dim);
}

.nav a:hover {
    color: #fff;
}

.nav .cta-top {
    padding: 10px 18px;
    font-size: .85rem;
    color: #252525;
}

.nav .cta-top:hover {
    color: #252525;
}

.site nav .links {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 860px) {
    .pc {
        display: none !important;
    }

    .nav .links {
        display: none;
    }

    .wppvoa {
        bottom: 80px !important;
    }

    .hero {
        background-image: url("../img/banner-mob-02.webp") !important;
        background-size: contain !important;
        background-position: top !important;
        background-color: #000 !important;
        margin-top: 110px !important;
        padding-top: 26rem !important;
        padding-bottom: 28px !important;
    }

    .hero h1 {
        font-size: 26px !important;
    }

    .depoimento .wrap {
        flex-direction: column-reverse;
    }

    .depoimento iframe {
        height: 200px !important;
    }

    header.site {
        padding: 8px 0 !important;
    }

    header.site .wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px !important;
        flex-direction: column;
    }

    header.site .wrap .cta-top {
        display: none !important;
    }

    header.site .wrap .links a {
        font-size: 13px;
    }

    header.site .wrap .links {
        display: flex;
        gap: 8px !important;
    }

    .cronometro {
        top: 84px !important;
        padding: 6px 0 !important;
    }

    .logoMag {
        display: none !important;
    }

    .hero .stamp {
        font-size: 10px !important;
    }

    .btn {
        padding: 10px 10px !important;
        font-size: 14px !important;
    }

    .pain .wrap {
        display: flex !important;
        flex-direction: column-reverse;
    }

    .final-cta {
        padding: 4rem 0 14rem !important;
        background-size: 200% !important;
    }
    .meta-chip {
        font-size: 12px !important;
    }
}

.cronometro {
    position: fixed;
    top: 69px;
    right: 0;
    left: 0;
    background-image: linear-gradient(90deg, #171392, #FE4D46, #EDBA06);
    z-index: 9;
    padding: 6px 0;
}

.cronometro .cd-cell {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cronometro .countdown {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

.cronometro .cd-cell span {
    font-size: 10px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cronometro .cd-cell b {
    font-family: 'Manrope';
    font-size: 16px;
    line-height: 16px;
}

/* ================== HERO ================== */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 80px;
    padding-top: 4rem;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("../img/banner-02.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    pointer-events: none; */
}

.hero .wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 960px) {
    .hero .wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero .actions {
        gap: 8px !important;
    }
}

.hero h1 {
    margin: 10px 0 20px;
    font-size: 48px;
    mix-blend-mode: difference;
    isolation: isolate;
}

.hero .logoMag {
    max-width: 280px;
}

.hero h1 em {
    font-style: normal;
    color: var(--yellow-2);
}

.hero .lede {
    font-size: clamp(1.05rem, 1.25vw, 1.18rem);
    max-width: 56ch;
    color: #bcc0c9;
}

.hero .meta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 600;
    color: #dfe2e7;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line-strong);
}

.meta-chip svg {
    width: 16px;
    height: 16px;
}

.infos-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #dfe2e7;
}

.infos-header svg {
    width: 16px;
    height: 16px;
}

.hero .actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero .stamp {
    margin-top: 22px;
    font-size: .8rem;
    color: var(--text-mute);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* HERO VISUAL CARD */
.hero-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 28px;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #0d1019 0%, #07080c 100%);
    border: 1px solid var(--line-strong);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .02);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--grad-hot);
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .6;
    z-index: -1;
}

.hero-card .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--yellow);
    color: #111;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .08em;
}

.hero-card h3 {
    margin: 16px 0 10px;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
}

.hero-card p {
    color: #b6bac3;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.cd-cell {
    text-align: center;
    border-radius: 12px;
}

.cd-cell b {
    display: block;
    font-family: 'Manrope';
    font-size: 18px;
    color: #fff;
}

.cd-cell span {
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-stats {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-stats .s {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line);
}

.hero-stats .s b {
    display: block;
    font-family: 'Manrope';
    font-size: 1.3rem;
    color: var(--yellow);
}

.hero-stats .s span {
    font-size: .78rem;
    color: var(--text-dim);
}

/* ================== LOGO STRIP ================== */
.strip {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #07080c;
}

.strip .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.strip .logos {
    display: flex;
    gap: 38px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--text-mute);
    font-weight: 700;
    letter-spacing: .04em;
}

.strip .logos span {
    opacity: .8;
    font-size: .95rem;
}

.strip .label {
    font-size: .78rem;
    color: var(--text-mute);
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* ================== PAIN SECTION ================== */
.pain .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .pain .wrap {
        grid-template-columns: 1fr;
    }
}

.pain h2 {
    margin-top: 18px;
    margin-bottom: 16px;
}

.pain ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.pain li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--line);
}

.pain li .dot {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(255, 77, 77, .15);
    color: #ff6b6b;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.pain li p {
    color: #c8ccd4;
    font-size: 1rem;
}

.pain .kicker {
    font-size: 1.12rem;
    color: #fff;
    margin-top: 26px;
    border-left: 3px solid var(--yellow);
    padding: 6px 0 6px 16px;
}

.pain-visual {
    position: relative;
    aspect-ratio: 5/6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        radial-gradient(600px 500px at 20% 10%, #000097, transparent 60%), radial-gradient(600px 500px at 80% 90%, #ffe600, #00000000 60%), #0a0c12;
}

.pain-visual img {
    padding: 3px 3px;
}

.pain-visual .big-num {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: 'Manrope';
    font-weight: 900;
    font-size: clamp(6rem, 16vw, 14rem);
    background: var(--grad-hot);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: .92;
    letter-spacing: -.06em;
}

.pain-visual .cap {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
}

/* ================== DIFFERENT SECTION ================== */
.different {
    background: linear-gradient(180deg, #050507 0%, #07090e 100%);
}

.different h2 {
    max-width: 20ch;
}

.diff-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.diff-grid .diff-card {
    grid-column: span 4;
}

/* .diff-grid .diff-card:nth-child(n+5) {
    grid-column: span 4;
} */

@media (max-width: 1000px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-grid .diff-card,
    .diff-grid .diff-card:nth-child(n+5) {
        grid-column: span 1;
    }
}

@media (max-width: 560px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }
}

.diff-card {
    padding: 26px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}

.diff-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.diff-card .ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #ffe60012;
    color: var(--yellow);
    margin-bottom: 18px;
    border: 1px solid #ffe60038;
}

.diff-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.diff-card p {
    font-size: .96rem;
    color: #b7bcc5;
}

/* ================== IMMERSION SECTION ================== */
.immersion .wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 960px) {
    .immersion .wrap {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 2rem !important;
    }

    .bullets .video img.medalha {
        height: 110px !important;
        width: auto;
        object-fit: contain;
        position: absolute;
        top: -60px !important;
        left: -15px !important;
        transform: rotate(-10deg);
    }

    .bullets .video img.partner {
        width: 180px !important;
        height: auto !important;
        object-fit: cover;
        object-position: center;
        position: absolute;
        right: -22px !important;
        bottom: -95px !important;
    }

    .bullets .video video {
        aspect-ratio: 16/16 !important;
    }
}

.immersion h2 em {
    font-style: normal;
    color: var(--yellow);
}

.bullets {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bullets .video {
    width: 100%;
    background: #111;
    position: relative;
}

.bullets .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
}

.bullets .video img.medalha {
    height: 175px;
    width: auto;
    object-fit: contain;
    position: absolute;
    top: -65px;
    left: -35px;
    transform: rotate(-10deg);
}

.bullets .video img.partner {
    width: 290px;
    height: 102px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    right: -80px;
    bottom: -62px;
}

.bullet {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line);
}

.bullet .b-ico {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #ffe60012;
    color: var(--yellow);
    display: grid;
    place-items: center;
}

.bullet b {
    color: #fff;
}

.immersion h2 .degrade {
    position: relative;
    display: inline-block;
}

.immersion h2 .degrade::before {
    content: '';
    background-image: var(--grad-hot);
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
}

/* ================== SCHEDULE ================== */
.schedule {
    background: #07090e;
}

.schedule .wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 960px) {
    .schedule .wrap {
        grid-template-columns: 1fr;
    }
}

.timeline {
    border-left: 2px solid var(--line-strong);
    margin-top: 32px;
}

.t-item {
    padding: 18px 0 18px 22px;
    position: relative;
    border-bottom: 1px dashed var(--line);
}

.t-item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 26px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--yellow);
    box-shadow: 0 0 0 4px #ffe6002e;
}

.t-item .time {
    color: var(--yellow);
    font-weight: 800;
    letter-spacing: .06em;
    font-size: .86rem;
}

.t-item h4 {
    color: #fff;
    font-size: 1.02rem;
    margin-top: 4px;
    font-weight: 700;
    font-family: 'Inter';
    letter-spacing: 0;
}

.t-item p {
    font-size: .92rem;
    color: var(--text-mute);
    margin-top: 2px;
}

/* ================== SPEAKERS ================== */
.speakers {
    position: relative;
}

.speakers::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 500px at 90% 0%, rgb(255 203 43 / 15%), transparent 55%);
    pointer-events: none;
}

.speakers .ministrante {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.speakers .ministrante::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 320px;
    width: 100%;
    background-image: linear-gradient(0deg, black, transparent);
}

.speakers .ministrante.emerson {
    background-image: url("../img/palestrante-emerson.png");
}

.speakers .ministrante.andre {
    background-image: url("../img/palestrante-andre.png");
}

.speakers .ministrante.time {
    background-image: url("../img/palestrante-time.png");
}

.speakers .ministrante.mrcont {
    background-image: url("../img/palestrante-mrcont.png");
}

.speakers .ministrante.cleo {
    background-image: url("../img/palestrante-cleonice.png");
}

.speakers .ministrante.gustavo {
    background-image: url("../img/palestrante-gustavo.png");
}

.speakers .ministrante .cargo {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

.speakers .ministrante .n {
    text-transform: uppercase;
    position: relative;
    width: fit-content;
}

.speakers .ministrante .n::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(90deg, #171392, #FE4D46, #EDBA06);
    bottom: 0;
    right: 0;
    left: 0;
}

.sp-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sp-head p {
    max-width: 48ch;
}

.sp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 1000px) {
    .sp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .sp-grid {
        grid-template-columns: 1fr;
    }
}

.sp-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 22px;
    overflow: hidden;
    background: #10131b;
    border: 1px solid var(--line);
}

.sp-card .ph {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.05);
}

.sp-card .ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .85) 100%);
}

.sp-card .name {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
}

.sp-card .name .n {
    font-family: 'Manrope';
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
}

.sp-card .name .r {
    font-size: .82rem;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Fallback initials styling */
.sp-card .initials {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: 'Manrope';
    font-weight: 900;
    font-size: 3.2rem;
    color: #fff;
    background: linear-gradient(135deg, #1a1f2b, #0a0c12);
    letter-spacing: -.02em;
}

.sp-card:nth-child(1) .initials {
    background: linear-gradient(135deg, #7b2bff, #3a1380);
}

.sp-card:nth-child(2) .initials {
    background: linear-gradient(135deg, #ff3d00, #7a1d00);
}

.sp-card:nth-child(3) .initials {
    background: linear-gradient(135deg, #ffe600, #8a7c00);
    color: #111;
}

.sp-card:nth-child(4) .initials {
    background: linear-gradient(135deg, #19e06a, #086e34);
}

/* ================== GALLERY ================== */
.gallery {
    background: #07090e;
}

.gallery .galeria-01 {
    background-image: url("../img/galeria-01.png");
}

.gallery .galeria-02 {
    background-image: url("../img/galeria-02.png");
}

.gallery .galeria-03 {
    background-image: url("../img/galeria-03.png");
}

.gallery .galeria-04 {
    background-image: url("../img/galeria-07.png");
}

.gallery .galeria-05 {
    background-image: url("../img/galeria-05.png");
}

.gallery .galeria-06 {
    background-image: url("../img/galeria-06.png");
}

.g-head {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.g-head p {
    max-width: 50ch;
}

.g-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 560px) {
    .g-grid {
        grid-template-columns: 1fr;
    }
}

.g-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
    aspect-ratio: 9/16;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--line);
}

.g-item::after {
    display: none;
}

/* reset legacy nth-child spans */
.g-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
}

.g-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.g-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    transition: opacity .25s ease;
}

.g-play span {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(255, 230, 0, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.g-play:hover span {
    transform: scale(1.12);
    box-shadow: 0 0 0 14px rgba(255, 230, 0, .18);
}

.g-play svg {
    width: 26px;
    height: 26px;
    fill: #111;
    margin-left: 4px;
}

.g-item.playing .g-play {
    opacity: 0;
    pointer-events: none;
}

.g-item .label {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-family: 'Manrope';
    letter-spacing: .04em;
    font-size: .95rem;
    text-align: center;
    padding: 10px;
    z-index: 1;
}


/* ================== PRICING ================== */
.pricing-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.pricing-head p {
    margin-top: 14px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    align-items: stretch;
}

@media (max-width: 960px) {
    .price-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
}

.plan {
    position: relative;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.plan:hover {
    transform: translateY(-4px);
}

.plan .ribbon {
    position: absolute;
    top: -1px;
    right: 24px;
    padding: 6px 12px;
    border-radius: 0 0 10px 10px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--grad-hot);
    color: #fff;
}

.plan .ribbon.sold {
    background: #ff4d4d;
}

.plan h3 {
    font-family: 'Manrope';
    font-size: 1.05rem;
    color: var(--text-dim);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
}

.plan .price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-direction: column;
}

.plan .price .cur {
    color: var(--text-dim);
    font-weight: 700;
    font-size: 1rem;
}

.plan .price .v {
    font-family: 'Manrope';
    font-weight: 900;
    font-size: 48px;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 46px;
}

.plan .price .per {
    color: var(--text-mute);
    font-size: .85rem;
}

.plan .lot {
    font-size: .82rem;
    color: var(--text-mute);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plan ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.plan li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .95rem;
    color: #d6dae2;
}

.plan li::before {
    content: "✓";
    color: var(--yellow);
    font-weight: 900;
}

.plan li.extra::before {
    content: "★";
    color: var(--yellow);
}

.plan .btn {
    margin-top: auto;
}

.plan.featured {
    background: linear-gradient(180deg, #101320 0%, #0a0b12 100%);
    border-color: transparent;
    box-shadow: 0 40px 80px -30px #ffe60017;
}

.plan.featured::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, var(--yellow), transparent 70%);
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.plan.featured .ribbon {
    background: var(--yellow);
    color: #333;
}

.plan.platinum::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--grad-hot);
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* ================== COMPARE STRIP ================== */
.compare {
    margin-top: 36px;
    padding: 26px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .02);
    border: 1px dashed var(--line-strong);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.compare span {
    color: var(--text-dim);
    font-size: .92rem;
}

.compare b {
    color: #fff;
}

/* ================== FAQ ================== */
.faq .wrap {
    max-width: 880px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 10px;
}

.faq .sub {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dim);
}

.faq details {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, .02);
    margin-bottom: 12px;
    transition: border-color .2s ease;
}

.faq details[open] {
    border-color: var(--line-strong);
}

.faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    color: #fff;
    font-family: 'Manrope';
    font-size: 1.02rem;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--yellow);
    transition: transform .2s ease;
    line-height: 1;
}

.faq details[open] summary::after {
    content: "−";
}

.faq .body {
    margin-top: 12px;
    color: #c4c8d0;
    font-size: .96rem;
}

/* ================== FINAL CTA ================== */
.final-cta {
    position: relative;
    padding: 4rem 0 26rem;
    text-align: center;
    overflow: hidden;
    background:
        url("../img/tesouro.jpeg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    border-top: 1px solid var(--line);
}

.final-cta h2 {
    max-width: 30ch;
    margin: 0 auto 18px;
}

.final-cta p {
    max-width: 55ch;
    margin: 0 auto 32px;
}

.final-cta .stamp {
    display: block;
    margin-top: 22px;
    font-size: .78rem;
    color: var(--text-mute);
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* ================== FOOTER ================== */
footer.site {
    padding: 60px 0 30px;
    background: #050507;
    border-top: 1px solid var(--line);
}

footer .logo {
    max-width: 240px;
    margin-bottom: 20px;
}

footer.site .wrap {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 760px) {
    footer.site .wrap {
        grid-template-columns: 1fr;
    }
}

footer.site h5 {
    font-family: 'Manrope';
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 14px;
}

footer.site a {
    display: block;
    color: var(--text-dim);
    font-size: .95rem;
    padding: 6px 0;
}

footer.site a:hover {
    color: #fff;
}

.foot-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.foot-bottom p {
    font-size: .82rem;
    color: var(--text-mute);
}

/* ================== UTIL ANIM ================== */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* Sticky mobile CTA */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: 12px 16px;
    z-index: 40;
    background: linear-gradient(0deg, black, transparent);
}

.sticky-cta .btn {
    width: 100%;
}

@media (max-width: 600px) {
    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

.meli {
    margin: 0rem 0 0;
    padding: 1rem 0;
    background-color: var(--yellow-2);
}

.meli img {
    max-width: 200px;
    max-height: 40px;
}

.owl-carousel .owl-item {
    width: auto !important;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel.left .owl-stage {
    animation: moveLeft 85s linear infinite;
}

.owl-carousel.right .owl-stage {
    animation: moveRight 85s linear infinite;
}

@keyframes moveLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes moveRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.depoimento .wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.depoimento .wrap .titulo {
    flex: 1 0 48%;
}

.depoimento iframe {
    border-radius: var(--radius);
    margin-bottom: 20px;
    max-width: 100%;
}

.depoimento a {
    margin-top: 10px;
}

/* ================== HERO CERT CHIP ================== */
.meta-chip--cert {
    border-color: rgba(255, 230, 0, 0.25);
    background: rgba(255, 230, 0, 0.06);
    color: var(--yellow);
}

.meta-chip--cert img {
    width: 20px;
    height: auto;
    display: inline-block;
}

/* ================== ECF AUTHORITY SECTION ================== */
.ecf-auth {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.ecf-auth::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 500px at 50% 60%, rgba(255, 230, 0, 0.04), transparent 65%);
    pointer-events: none;
}

.ecf-auth-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 10px;
}

.ecf-auth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 960px) {
    .ecf-auth-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .ecf-auth .formula h4 {
        font-size: 28px !important;
    }

    .ecf-auth .ecfPontos .cada:nth-child(3) {
        background-position: top !important;
    }
}

.ecf-auth .ecfPontos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ecf-auth .ecfPontos .cada {
    min-height: 220px;
    background-color: var(--yellow-2);
    border-radius: 15px;
    width: 100%;
    padding: 10px 20px;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.ecf-auth .ecfPontos .cada span {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.ecf-auth .ecfPontos .cada:nth-child(3) {
    grid-row: 2 span;
}

.ecf-auth .ecfPontos .cada:nth-child(2) {
    background-image: url("../img/galeria-07.png");
}

.ecf-auth .ecfPontos .cada:nth-child(4) {
    background-image: url("../img/galeria-03.png");
}

.ecf-auth .ecfPontos .cada:nth-child(6) {
    background-image: url("../img/galeria-06.png");
}

.ecf-auth .ecfPontos .cada:nth-child(7) {
    background-image: url("../img/galeria-02.png");
}

.ecf-auth .ecfPontos .cada:nth-child(3) {
    background-image: url("../img/galeria-05.png");
}

.ecf-auth .ecfPontos .cada p {
    color: #000;
    font-size: 16px;
}

@media (max-width: 768px) {
    .ecf-auth .ecfPontos {
        grid-template-columns: 1fr;
    }

    .ecf-auth .ecfPontos .cada:nth-child(3) {
        grid-row: auto;
    }
}

.ecf-auth .formula h4 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff1f;
}

.ecf-auth h2 .degrade {
    position: relative;
    display: inline-block;
}

.ecf-auth h2 .degrade::before {
    content: '';
    background-image: var(--grad-hot);
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.ecf-auth .selos img {
    width: 100%;
    max-width: 520px;
    display: block;
    margin: 0 auto 10px;
}

.ecf-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}

.ecf-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.ecf-card:first-child {
    border-color: rgba(255, 230, 0, 0.18);
    background: linear-gradient(160deg, #131510 0%, #0f1116 100%);
}

.ecf-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #ffe60012;
    color: var(--yellow);
    border: 1px solid #ffe60038;
    flex-shrink: 0;
}

.ecf-card h3 {
    font-size: 1.08rem;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.ecf-card>p {
    font-size: .96rem;
    color: #b7bcc5;
    flex: 1;
}

.ecf-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 230, 0, 0.05);
    border: 1px solid rgba(255, 230, 0, 0.14);
    margin-top: auto;
}

.ecf-seal {
    width: 54px;
    height: auto;
    flex-shrink: 0;
}

.ecf-badge-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ecf-badge-text b {
    color: var(--yellow);
    font-size: .92rem;
}

.ecf-badge-text span {
    color: var(--text-dim);
    font-size: .8rem;
}

.ecf-tag {
    margin-top: auto;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
    font-size: .8rem;
    color: var(--text-dim);
    text-align: center;
    letter-spacing: .04em;
}

/* ================== FOOTER SEAL ================== */
.footer-seal {
    width: 44px;
    height: auto;
    margin-top: 16px;
    opacity: 0.8;
    transition: opacity .2s ease;
}

.footer-seal:hover {
    opacity: 1;
}

/* ============================================================
   MAG 2026 — Atualizações do briefing técnico
   (hero badge, credit bar, novos blocos, ajustes de seção)
   ============================================================ */

/* Hero — sem cronometro fixo: respiro de margem reduzido */
.hero {
    margin-top: 70px;
}

@media (max-width: 860px) {
    .hero {
        margin-top: 100px !important;
        padding-top: 30rem !important;
    }
}

/* Hero — badge oficial MeLi Platinum */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 230, 0, 0.08);
    border: 1px solid rgba(255, 230, 0, 0.32);
    color: var(--yellow);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.hero-badge .star {
    color: var(--yellow);
    font-size: .95rem;
    line-height: 1;
}

@media (max-width: 600px) {
    .hero-badge {
        font-size: .72rem;
        padding: 6px 10px;
    }
}

/* Hero — barra de credibilidade (substitui antigo .stamp) */
.credit-bar {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--line-strong);
    color: var(--text-dim);
    font-size: .92rem;
    line-height: 1.4;
    max-width: 640px;
}

.credit-bar b {
    color: var(--yellow);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1rem;
}

.credit-bar .dot {
    color: var(--text-mute);
}

@media (max-width: 600px) {
    .credit-bar {
        font-size: 12px;
        padding: 12px 14px;
    }

    .credit-bar b {
        font-size: 12px;
    }

    .credit-bar .dot {
        display: none !important;
    }

    .hero .meta {
        margin: 10px 0 0 !important;
    }
}

/* Pain — subheadline */
.pain .pain-sub {
    margin-top: 14px;
    color: #c8ccd4;
    font-size: 1.05rem;
    max-width: 56ch;
}

/* ============ Por que presencial (novo) ============ */
.why-live {
    background-color: #07090e;
    position: relative;
    overflow: hidden;
    background-image: url("../img/banner-obrigado.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.why-live::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 500px at 50% 0%, rgba(255, 230, 0, 0.05), transparent 60%);
    pointer-events: none;
}

.why-live .wrap {
    max-width: 880px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.why-live h2 {
    margin-top: 18px;
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.12;
}

.why-live .why-lead {
    margin-top: 22px;
    font-size: 1.12rem;
    color: #c8ccd4;
    max-width: 60ch;
}

.why-live .why-list {
    list-style: none;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-left: 22px;
}

.why-live .why-list li {
    position: relative;
    color: #d6dae2;
    font-size: 1.08rem;
    line-height: 1.55;
    padding-left: 22px;
}

.why-live .why-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--yellow);
    font-weight: 800;
}

.why-live .why-close {
    margin-top: 36px;
    padding: 18px 0 4px;
    font-size: 1.12rem;
    color: #fff;
    border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
    .why-live .why-list li {
        font-size: 1rem;
    }

    .why-live .why-lead {
        font-size: 1rem;
    }
}

/* Botão XL para CTA do bloco "Quem somos" */
.btn-xl {
    padding: 20px 34px;
    font-size: 1.05rem;
}

@media (max-width: 600px) {
    .btn-xl {
        padding: 14px 20px !important;
        font-size: .98rem !important;
    }
}

/* ============ Autoridade ECF — fileira de 4 números ============ */
.ecf-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0 auto 56px;
    max-width: 980px;
}

.ecf-numbers .num {
    padding: 22px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--line);
    text-align: center;
    transition: border-color .25s ease, transform .25s ease;
}

.ecf-numbers .num:hover {
    border-color: rgba(255, 230, 0, 0.32);
    transform: translateY(-3px);
}

.ecf-numbers .num b {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    color: var(--yellow);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.ecf-numbers .num span {
    display: block;
    margin-top: 8px;
    font-size: .82rem;
    color: var(--text-dim);
    letter-spacing: .04em;
}

@media (max-width: 760px) {
    .ecf-numbers {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Autoridade ECF — bloco do Emerson com placa 1MM */
.ecf-emerson {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: center;
    max-width: 880px;
    margin: 0 auto 36px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--line);
}

.ecf-emerson .emerson-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius);
    background: #10131b;
}

.ecf-emerson .emerson-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ecf-emerson h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0 0 6px;
}

.ecf-emerson .emerson-cred {
    color: var(--yellow);
    font-weight: 600;
    font-size: .92rem;
    margin-bottom: 12px;
}

.ecf-emerson .emerson-caption {
    color: #c8ccd4;
    font-size: .98rem;
    line-height: 1.5;
}

@media (max-width: 760px) {
    .ecf-emerson {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ecf-emerson .emerson-photo {
        max-width: 240px;
        margin: 0 auto;
    }
}

.ecf-close {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.08rem;
    color: #d6dae2;
}

/* ============ Palestrantes — credenciais ============ */
.speakers .ministrante .cred {
    margin-top: 8px;
    font-size: 11px;
    color: #ffffffd0;
    line-height: 1.4;
    font-weight: 500;
}

/* ============ Edições anteriores ============ */
.gallery .g-sub {
    margin-top: 10px;
    color: var(--text-dim);
    font-size: .95rem;
    letter-spacing: .02em;
}

.gallery .g-fig {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery .g-cap {
    font-size: .82rem;
    color: var(--text-dim);
    line-height: 1.4;
    padding: 0 4px;
}

/* ============ Para quem é / Não é (novo) ============ */
.audience {
    background: #07090e;
}

.audience .aud-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.audience .aud-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.audience .aud-col {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--line);
}

.audience .aud-yes {
    border-color: rgba(255, 230, 0, 0.28);
    background: linear-gradient(180deg, #131510 0%, #0f1116 100%);
}

.audience .aud-col h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.audience .aud-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audience .aud-col li {
    display: block;
    gap: 12px;
    align-items: flex-start;
    color: #d6dae2;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding: 0px 0 0 30px;
}

.audience .aud-col li::before {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 12px;
    margin-top: 2px;
}

.audience .aud-yes li::before {
    content: "✓";
    background: rgba(255, 230, 0, 0.18);
    color: var(--yellow);
    border: 1px solid rgba(255, 230, 0, 0.4);
    position: absolute;
    left: 0px;
    top: 10px;
}

.audience .aud-no li::before {
    content: "✗";
    background: rgba(255, 77, 77, 0.12);
    color: #ff6b6b;
    border: 1px solid rgba(255, 77, 77, 0.32);
    position: absolute;
    top: 10px;
    left: 0;
}

@media (max-width: 760px) {
    .audience .aud-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ Ingressos — descrição curta + frase âncora ============ */
.plan .plan-tag {
    margin: -4px 0 4px;
    color: #d6dae2;
    font-size: .92rem;
    line-height: 1.45;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line);
}

.plan.featured .plan-tag {
    background: rgba(255, 230, 0, 0.06);
    border-color: rgba(255, 230, 0, 0.22);
}

.anchor-line {
    text-align: center;
    margin-top: 36px;
    padding: 22px 24px;
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid var(--line);
    line-height: 1.6;
}

.anchor-line strong {
    color: #fff;
}

/* Mobile: Premium primeiro */
@media (max-width: 960px) {
    .price-grid {
        display: flex !important;
        flex-direction: column;
    }

    .price-grid .plan.featured {
        order: -1;
    }
}

/* ============ Depoimentos — reestruturação ============ */
.depoimento .depo-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
}

.depoimento .depo-head h2 {
    line-height: 1.15;
}

.depoimento .depo-head .sub {
    color: var(--text-dim);
    margin-top: 4px;
}

.depoimento .depo-main {
    max-width: 880px;
    margin: 0 auto 50px;
}

.depoimento .depo-main .caixa-video iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border-radius: var(--radius);
    border: 0;
}

.depoimento .depo-cap {
    margin-top: 14px;
    text-align: center;
    color: var(--text-dim);
    font-size: .92rem;
    letter-spacing: .02em;
}

.depoimento .depo-cap strong {
    color: #fff;
}

/* Cards / galeria de depoimentos */
.depoimento .depo-galeria {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.depoimento .depo-card {
    padding: 22px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .25s ease, transform .25s ease;
}

.depoimento .depo-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
}

.depoimento .depo-card .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1f2b, #0a0c12);
    border: 1px solid var(--line-strong);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depoimento .depo-card .avatar span {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .04em;
    color: var(--yellow);
}

.depoimento .depo-card .tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 230, 0, 0.12);
    color: var(--yellow);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    width: fit-content;
}

.depoimento .depo-card h4 {
    font-family: 'Manrope';
    font-size: 1.02rem;
    color: #fff;
    margin: 0;
}

.depoimento .depo-card .quote {
    font-size: .92rem;
    color: #d6dae2;
    line-height: 1.5;
    flex: 1;
}

.depoimento .depo-card .meta {
    font-size: .78rem;
    color: var(--text-mute);
    letter-spacing: .04em;
}

.depoimento .depo-cta {
    text-align: center;
}

@media (max-width: 1000px) {
    .depoimento .depo-galeria {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .depoimento .depo-galeria {
        grid-template-columns: 1fr;
    }
}

/* Reset do antigo flex em .depoimento .wrap (não usado mais) */
.depoimento .wrap {
    display: block;
    flex-direction: initial;
}

/* ============ FINAL CTA — substituir baú dourado ============ */
.final-cta {
    padding: 6rem 0 6rem !important;
    background: linear-gradient(180deg, #07090e 0%, #050507 60%, #0a0c12 100%) !important;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 380px at 20% 0%, rgba(255, 230, 0, 0.08), transparent 60%),
        radial-gradient(700px 380px at 80% 100%, rgba(123, 43, 255, 0.08), transparent 60%);
    pointer-events: none;
}

.final-cta .wrap {
    position: relative;
    z-index: 1;
}

/* ============ LEAD MODAL ============ */
.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    overflow-y: auto;
}

.lead-modal.is-open {
    display: flex;
}

.lead-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 4, 8, .78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lead-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(180deg, #14161d 0%, #0f1116 100%);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    padding: 32px 28px 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 230, 0, .04);
    animation: leadModalIn .25s ease-out;
    margin: auto;
}

@keyframes leadModalIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lead-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: var(--text-dim);
    transition: background .2s, color .2s;
}

.lead-modal__close:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.lead-modal__head {
    margin-bottom: 22px;
}

.lead-modal__eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffe600;
    margin-bottom: 10px;
}

.lead-modal__head h3 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 6px;
}

.lead-modal__plan-name {
    background: linear-gradient(90deg, #ffe600, #fff58a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-modal__sub {
    font-size: .92rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.lead-modal__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lead-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lead-field label {
    font-size: .82rem;
    font-weight: 600;
    color: #cdd0d8;
}

.lead-field input,
.lead-field select {
    width: 100%;
    background: #0a0b10;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text);
    font: inherit;
    font-size: .95rem;
    transition: border-color .2s, background .2s;
    appearance: none;
    -webkit-appearance: none;
}

.lead-field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%239ba0aa' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.lead-field input:focus,
.lead-field select:focus {
    outline: none;
    border-color: #ffe600;
    background: #0d0f15;
}

.lead-field input::placeholder {
    color: #5a5e69;
}

.lead-field input.is-invalid,
.lead-field select.is-invalid {
    border-color: #ff5c5c;
}

.lead-modal__error {
    background: rgba(255, 92, 92, .1);
    border: 1px solid rgba(255, 92, 92, .35);
    color: #ffb3b3;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .88rem;
}

.lead-modal__submit {
    margin-top: 6px;
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 1rem;
}

.lead-modal__submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.lead-modal__submit.is-loading .lead-modal__submit-label::after {
    content: '...';
    display: inline-block;
    animation: leadDots 1s steps(3, end) infinite;
}

@keyframes leadDots {
    0% {
        content: '';
    }

    33% {
        content: '.';
    }

    66% {
        content: '..';
    }

    100% {
        content: '...';
    }
}

.lead-modal__legal {
    font-size: .76rem;
    color: var(--text-dim);
    text-align: center;
    line-height: 1.5;
    margin-top: 6px;
}

.lead-modal__legal a {
    color: #ffe600;
    text-decoration: underline;
}

body.lead-modal-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .lead-modal__dialog {
        padding: 28px 20px 22px;
        border-radius: 14px;
    }

    .lead-modal__head h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 860px) {
    .final-cta {
        padding: 4rem 0 4rem !important;
        background-size: auto !important;
    }
}