:root {
    --preto: #292929;
    --branco: #FFFDFA;
    --branco-alt: #ECDDEC;
    --principal: #452F92;
    --secundaria: #AC90FF;
    --principal-alt: #6039FB;
    --card: #242424;
}

html,
body {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    font-family: 'poppins';
    background: var(--preto);
    min-width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: var(--principal);
}

img {
    user-select: none;
    -webkit-user-drag: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

a:hover {
    color: var(--secundaria);
    transition: 0.3s;
}

/* =-=-=-=-=-=-=-=-=-=-= Animações =-=-=-=-=-=-=-=-=-=-= */
@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =-=-=-=-=-=-=-=-=-=-= Texto =-=-=-=-=-=-=-=-=-=-= */
.site-texto-pequeno {
    /* background-color: orange; */
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: 500;
    font-size: 1.35rem;
    line-height: 2rem;
    text-transform: uppercase;
    color: var(--preto);
    opacity: 0.9;
}

.site-texto-grande {
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 3.25rem;
    color: var(--preto);
}

/* =-=-=-=-=-=-=-=-=-=-= Botão =-=-=-=-=-=-=-=-=-=-= */
.site-botao {
    min-width: 24rem;
    min-height: 4rem;
    background: var(--principal);
    border: 1px solid var(--principal);
    border-radius: 4.5rem;
    cursor: pointer;
    transition: transform 0.3s;

    color: var(--branco);
    font-family: 'poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 2.5rem;
    text-transform: uppercase;
    white-space: nowrap;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.site-botao:hover {
    transition: 0.3s;
    outline: none;
    box-shadow: 4px 4px 0 0 var(--secundaria) !important;
    transform: translate(-5px, -5px);
}

.site-botao img {
    /* background-color: orange; */
    width: 1.5rem;
    height: auto;
}

.site-botao-pequeno {
    /* background-color: orange; */
    min-width: 14rem;
    min-height: 3rem;

    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2rem;
}

/* =-=-=-=-=-=-=-=-=-=-= Glide.js =-=-=-=-=-=-=-=-=-=-= */
.glide__slide div:nth-child(2) {
    /* background-color: purple; */
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0.5rem
}

.glide__bullets {
    /* background-color: orange; */
    bottom: -2rem;
}

.glide__bullets .glide__bullet {
    /* background-color: purple !important; */
    background-color: #C1C1C1;
    border-radius: 0;
}

.glide__bullets .glide__bullet--active {
    background-color: var(--principal);
    border: 0;
}

/* =-=-=-=-=-=-=-=-=-=-= Slide =-=-=-=-=-=-=-=-=-=-= */
.slDots {
    /* background-color: orange; */
    bottom: 2rem !important;
}

.slDots .slDotsSingle {
    height: 10px;
    width: 10px;
}

/* .slDots .slDotsSingle.active {
    background-color: var(--principal);
    border-color: var(--principal);
} */

/* =-=-=-=-=-=-=-=-=-=-= Cookies =-=-=-=-=-=-=-=-=-=-= */
#gdpr-cookie-message {
    position: fixed;
    right: 30px;
    bottom: 30px;
    max-width: 375px;
    background-color: var(--principal);
    padding: 1.75rem;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
    margin-left: 30px;
    font-family: inherit;
    border-radius: 1rem;
    z-index: 999999999999 !important;
}

#gdpr-cookie-message h4 {
    color: var(--branco-alt);
    font-family: inherit, sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

#gdpr-cookie-message h5 {
    color: var(--branco-alt);
    font-family: inherit, sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

#gdpr-cookie-message p, #gdpr-cookie-message ul {
    /* background-color: orange; */
    color: var(--branco-alt);
    font-size: 15px;
    line-height: 1.5em;
}

#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}

#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}

#gdpr-cookie-message a {
    color: var(--branco-alt);
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message a:hover {
    color: var(--branco-alt);
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: var(--branco-alt);
    color: var(--principal);
    font-family: inherit, sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;

    margin-top: 2rem;
}

#gdpr-cookie-message button:hover {
    background: var(--principal-alt);
    color: var(--branco-alt);
    transition: all 0.3s ease-in;
}

button#gdpr-cookie-advanced {
    background: var(--branco-alt);
    color: var(--principal);
}

#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}

#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}

#gdpr-cookie-types {
    /* background-color: orange; */
    margin-top: 1rem;
}

/* =-=-=-=-=-=-=-=-=-=-= Scroll =-=-=-=-=-=-=-=-=-=-= */
::-webkit-scrollbar {
    width: 0.6rem;
}

::-webkit-scrollbar-track {
    background: var(--preto);
}

::-webkit-scrollbar-thumb {
    background: var(--principal-alt);
    border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secundaria);
}

/* #region media_queries */
/* hi-res laptops and desktops */
@media (max-width:1281px) {}

/* big landscape tablets, laptops, and desktops */
@media (max-width:1025px) {
    .site-texto-pequeno {
        /* background-color: orange; */
        font-size: 1rem;
        line-height: 1.75rem;
    }

    .site-texto-grande {
        font-size: 2rem;
        line-height: 3.15rem;
    }
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (max-width:801px) {
    .site-texto-pequeno {
        /* background-color: orange; */
        font-size: 1.05rem;
        line-height: 1.5rem;
    }

    .site-texto-grande {
        /* background-color: orange; */
        font-size: 1.5rem;
        line-height: 2.25rem;
    }
}

/* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
@media (max-width:600px) {}

/* smartphones, Android phones, landscape iPhone */
@media (max-width:480px) {}

/* #endregion */