:root {
    --cor-menu-primaria: #9156F2;
    --cor-menu-secundaria: #C9FF00;
    --cor-menu-terciaria: #F4F4F4;
    --cor-menu-quaternaria: #0F0F0F;
    --cor-menu-quinaria: #2C0F47;
    --font-menu-family-instrument-regular: "Instrument Serif", sans-serif;
    --font-menu-family-dm-sans-regular: "DM Sans", sans-serif;
    --font-menu-family-dm-sans-bold: "DM Sans", sans-serif;
}

body {
    cursor: none;
}

.cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
    transition: transform 0.2s ease, background 0.2s ease;
}

/*
ulr: https://textkool.com/en/ascii-art-generator?hl=default&vl=default&font=Doom
 _____                _
/ ____|              | |
| |  __  ___ _ __ __ _| |
| | |_ |/ _ \ '__/ _` | |
| |__| |  __/ | | (_| | |
\_____|\___|_|  \__,_|_|
*/

body, html {
    overflow-x: hidden;
}

/* ===== SCROLLBAR GLOBAL ===== */

/* largura */
html::-webkit-scrollbar {
    width: 16px;
}

/* trilho (fundo) */
html::-webkit-scrollbar-track {
    background: #0F0F0F;
    border-radius: 100vh;
}

/* barra que desliza */
html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #9156F2 0%, #C9FF00 100%);
    border-radius: 100vh;
    border: 3px solid #0F0F0F;
}

/* hover */
html::-webkit-scrollbar-thumb:hover {
    filter: brightness(1.1);
}

/* clicando/arrastando */
html::-webkit-scrollbar-thumb:active {
    background: #C9FF00;
}

h1, h2, h3, h4, h5, h5, p {
    margin: 0;
}

/* HEADER */

header {
    background: var(--cor-menu-quaternaria);
    background-image: url('../img/lps/summit-2026/bg-painel-header.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header h1 {
    font-family: var(--font-menu-family-instrument-regular);
    font-weight: 400;
    font-size: 42px;
    line-height: 1.2em;
    text-transform: uppercase;
    color: var(--cor-menu-terciaria);
    margin: 10px 0;
}

header p {
    font-family: var(--font-menu-family-dm-sans-bold);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2em;
    text-align: center;
    text-transform: uppercase;
    color: var(--cor-menu-terciaria);
}


@media (max-width: 600px) {
    header h1 {
        font-size: 38px;
    }

    header p {
        font-size: 18px;
    }
}

#programacao-painel {
    background: var(--cor-menu-terciaria);
}

.botoes-dias-programacoes {
    gap: 20px;
}

.botoes-dias-programacoes button {
    padding: 15px 50px;
    border-radius: 15px;
    background: linear-gradient(90deg, #d1d1d1 0%, #858585 100%);
    transition: all .3s ease-out;
    cursor: pointer;
}

.botoes-dias-programacoes button:hover,
.botoes-dias-programacoes button.active {
    padding: 15px 50px;
    border-radius: 15px;
    border: 0.72px solid #F4F4F4;
    backdrop-filter: blur(19.499488830566406px);
    background: linear-gradient(90deg, #9156F2 0%, #C9FF00 100%);
}

.botoes-dias-programacoes button p {
    color: var(--cor-menu-quaternaria);
    font-family: var(--font-menu-family-dm-sans-regular);
    font-weight: 300;
    font-size: 18px;
    line-height: 157%;
    letter-spacing: 4px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    margin: 0;
}

.botoes-dias-programacoes button p b {
    letter-spacing: 2px;
    font-weight: 700;
}

.botoes-dias-programacoes button:hover p,
.botoes-dias-programacoes button.active p {
    color: var(--cor-menu-quinaria);
}

.botao-programacoes-painel {
    gap: 30px;
    flex-direction: row;
}

.conteudo-btn-salas {
    gap: 20px;
}

.botao-programacoes-painel .tab-btn {
    background: transparent;
    border: 2px solid #2C0F4766;
    backdrop-filter: blur(19.499488830566406px);
    border-radius: 18px;
    width: 100%;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.botao-programacoes-painel .tab-btn img {
    filter: grayscale(100%) brightness(0) saturate(100%);
    transition: filter .2s ease-in-out;
}

.botao-programacoes-painel .tab-btn.active img {
    filter: none;
}

.botao-programacoes-painel .tab-btn:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: #2c0f4765;
}

.botao-programacoes-painel .tab-btn.active {
    background: var(--cor-menu-quinaria);
    border: 1px solid var(--cor-menu-terciaria);
    border-bottom: 0;
}

.botao-programacoes-painel .conteudo-btn-salas p {
    font-family: var(--font-menu-family-dm-sans-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2C0F4766;
    vertical-align: middle;
    margin: 0;
}

.botao-programacoes-painel .tab-btn:hover .conteudo-btn-salas p,
.botao-programacoes-painel .active.conteudo-btn-salas p {
    color: var(--cor-menu-terciaria);
}

.conteudos-painel {
    gap: 20px;
}

.conteudo-painel {
    background: #9156F21A;
    border-radius: 20px;
    padding: 40px;
}

.conteudo-painel{
    gap: 30px;
}

.textos-painel {
    gap: 20px;
}

.textos-painel .horario,
.textos-painel .sala {
    font-family: var(--font-menu-family-dm-sans-bold);
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2em;
    letter-spacing: 1px;
    color: #0F0F0FB2;
    padding: 10px 16px;
    border-radius: 14px;
    background: #9156F240;
    transition: all .2s ease-in-out;
}

.textos-painel .horario:hover,
.textos-painel .sala:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.conteudo-painel h4 {
    font-family: var(--font-menu-family-dm-sans-bold);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4em;
    color: var(--cor-menu-quaternaria);
}

.wrapper-palestratess-painel {
    max-width: 23%;
}

.palestrantes-carrossel-painel {
    border-radius: 0 30px 0 0;
    position: relative;
    overflow: hidden;
    width: 350px;
    height: 300px;
    transition: background 0.35s ease, transform 0.25s ease;
}

.palestrantes-carrossel-painel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80%;
    background: linear-gradient(
        174.45deg,
        rgba(0, 0, 0, 0) 38%,
        rgba(0, 0, 0, 0.65) 65%,
        rgba(0, 0, 0, 0.9) 95%
    );
    z-index: 2;
    pointer-events: none;
}

.palestrantes-carrossel-painel.roxo {
    background-color: var(--cor-menu-primaria);
}

.palestrantes-carrossel-painel.verde {
    background-color: var(--cor-menu-secundaria);
}

.img-palestrante {
    position: absolute;
    bottom: -20px;
    right: 0;
    left: 0;
    height: 100%;
    width: 150%;
    object-fit: contain;
    z-index: 1;
}

.prev-palestrantes,
.next-palestrantes {
    background: transparent;
    border-radius: 15px;
    padding: 8px 12px;
    color: #9156F240;
    border: 1px solid #9156F240;
    cursor: pointer;
    transition: opacity 0.1s linear, background 0.1s linear, color 0.1s linear, border 0.1s linear;
}

.prev-palestrantes:hover,
.next-palestrantes:hover,
.palestrantes-inactive:hover {
    background: var(--cor-menu-quinaria);
    color: var(--cor-menu-secundaria);
    border: 1px solid var(--cor-menu-primaria);
}

.palestrantes-inactive {
    opacity: 0.5;
    transition: opacity 0.15s ease-in-out;
}

.desc-palestrante {
    gap: 20px;
}

.desc-palestrante .moderador-palestrante {
    font-family: var(--font-menu-family-dm-sans-regular);
    font-weight: 600;
    font-size: 12px;
    line-height: 1.1em;
    letter-spacing: 2px;
    color: var(--cor-menu-quaternaria);
    text-transform: uppercase;
    background-color: var(--cor-menu-secundaria);
    padding: 8px 14px;
    border-radius: 30px;
    z-index: 99;
}

.desc-palestrante .nome-palestrante {
    font-size: 18px;
    line-height: 1.3em;
}

.desc-palestrante .cargo-palestrante {
    font-size: 12px;
    line-height: 1.1em;
}

.nav-palestrantes {
    display: none;
}

@media (max-width: 1024px) {
    .conteudo-btn-salas {
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .botoes-dias-programacoes button {
        width: 100%;
    }

    .botoes-dias-programacoes button p {
        font-size: 16px;
    }

    .botao-programacoes-painel {
        gap: 15px;
        flex-direction: column;
    }

    .conteudo-painel {
        padding: 30px;
        gap: 20px;
    }

    .textos-painel {
        gap: 10px;
    }

    .textos-painel .horario {
        width: 150px;
    }

    .textos-painel .sala {
        width: 200px;
    }

    .conteudo-painel h4 { 
        font-size: 24px;
    }

    .carrossel-palestrantes {
        flex-wrap: wrap;
    }

    .wrapper-palestratess-painel {
        max-width: 45%;
    }
}

@media (max-width: 767px) {
    .conteudo-palestrantes {
        margin: 0;
    }

    .wrapper-palestratess-painel {
        max-width: 100%;
    }

    .wrapper {
        background: transparent;
    }
    
    .palestrantes-carrossel-painel {
        height: auto;
        gap: 20px;
    }

    .palestrantes-carrossel-painel.roxo,
    .palestrantes-carrossel-painel.verde {
        background-color: transparent;
        padding: 0;
    }

    .palestrantes-carrossel-painel::after {
        display: none;
    }

    .palestrantes-carrossel-painel.roxo .img-palestrantes,
    .palestrantes-carrossel-painel.verde .img-palestrantes {
        position: relative;
        overflow: hidden;
        border-radius: 0 10px 0 0;
        width: 20%;
        height: fit-content;
        margin: 0;
    }

    .palestrantes-carrossel-painel.roxo .img-palestrantes::after,
    .palestrantes-carrossel-painel.verde .img-palestrantes::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            174.45deg,
            rgba(0, 0, 0, 0) 28.46%,
            #000000 123.4%
        );
        z-index: 2;
        pointer-events: none;
    }
    
    .palestrantes-carrossel-painel.roxo .img-palestrantes {
        background:
            linear-gradient(
            174.45deg,
            rgba(0, 0, 0, 0) 28.46%,
            #000000 123.4%
        ),
        var(--cor-menu-primaria);
    }
    
    .palestrantes-carrossel-painel.verde .img-palestrantes {
        background:
            linear-gradient(
            174.45deg,
            rgba(0, 0, 0, 0) 28.46%,
            #000000 123.4%
        ),
        var(--cor-menu-secundaria);
    }
    
    .img-palestrante {
        margin-top: 0;
        position: static;
        bottom: unset;
        right: unset;
        left: unset;
        height: auto;
        width: 100%;
        object-fit: initial;
    }

    .palestrantes-carrossel-painel.roxo .img-palestrante img,
    .palestrantes-carrossel-painel.verde .img-palestrante img {
        width: 20%;
        height: fit-content;
        margin: 0;
    }

    .desc-palestrante {
        width: 65%;
        gap: 5px;
    }

    .desc-palestrante .nome-palestrante,
    .desc-palestrante .cargo-palestrante {
        color: var(--cor-menu-quaternaria);
    }

    .desc-palestrante .nome-palestrante {
        font-size: 18px;
        line-height: 1.2em;
        margin: 0 0 5px 0;
    }

    .desc-palestrante .cargo-palestrante {
        font-size: 14px;
        line-height: 1.2em;
    }
}