:root {
    --primary: #48179A;
    --secondary: #E93797;
    --background: #18151E
}

*::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    /* Largura da barra de rolagem */
}

*::-webkit-scrollbar-track {
    background: transparent;
    /* Cor do fundo da barra de rolagem */
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(72, 23, 154, .5);
    /* Cor da barra de rolagem */
    border-radius: 20px;
    /* Arredondamento das bordas da barra de rolagem */
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: var(--font-light-300), sans-serif;
    background: var(--background);
}

main {
    width: 100%;
    height: 100%;
    background: var(--background);
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
}

div,
p,
.title {
    color: white;
    font-weight: 200;
    letter-spacing: 0em;
    font-family: var(--font-thin-200);
}

.title {
    font-size: 46px;
    line-height: 56px;
}

p {
    font-size: 17px;
    line-height: 26px;
}

.capa {
    position: relative;
    min-height: 600px;
    background-color: #4B0C85;
}

.capa div {
    max-width: 570px;
    font-size: 30px;
    line-height: 40px;
}

.capa .menu {
    position: absolute;
    top: 25px;
    right: 140px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 15px;
}

.capa .menu a {
    padding: 10px;
    border: none;
    background-color: transparent;
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.7px;
    text-decoration: none;
    cursor: pointer;
}

.capa .menu .login {
    cursor: pointer;
    border: 1px solid white;
    background-color: transparent;
    border-radius: 20px;
    padding: 10px 30px;
    color: white;
    text-align: center;
}

section div.video-container {
    overflow: hidden;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    top: 0;
    left: 0;
    position: absolute;
}

section div.video-container::before {
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, .5);
}

video {
    position: relative;
    width: inherit;
    max-width: inherit;
    object-fit: inherit;
    top: 50%;
    transform: translateY(-50%);
}

.section2 {
    min-height: 480px;
    background-image: url(../assets/bg-section2.png);
}

section.capa div,
section.capa img {
    z-index: 9999;
}

.section2 div {
    font-size: 32px;
    font-family: var(--font-thin-italic-200);
    line-height: 42px;
}

.section3 {
    padding: 44px 10%;
    align-items: flex-end;
    min-height: 480px;
    background-position: left bottom;
    background-size: contain;
    background-image: url(../assets/bg-section3.png);
}

.section3 div,
.section3 .title {
    text-align: left;
}

a.secondary {
    cursor: pointer;
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 42px;
    width: fit-content;
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
    font-family: var(--font-regular-400);
    color: #E6FA52;
    border-radius: 20px;
    border: none !important;
    box-shadow: none !important;
    background: var(--secondary);
}

a.secondary:hover {
    opacity: .7;
}

a.secondary span {
    font-size: 16px;
}

a.btn-contato {
    min-width: 250px;
}

.section4 {
    padding: 84px 10%;
    background: #48179A;
}

.section4 p,
.section4 .title {
    color: #6DE2A2;
}

.section3 p,
.section4 p,
.section5 p {
    font-family: var(--font-light-300);
}

.section5 {
    padding: 64px 10%;
    background: #181419;
}

.section5 div {
    font-size: 32px;
    font-family: var(--font-thin-italic-200);
    line-height: 48px;
}

.section5 div b {
    font-size: 18px;
    font-family: var(--font-bold-700);
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 34px 10%;
    background: #181419;
}

footer::after {
    content: '';
    display: block;
    width: 80%;
    top: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    border: .55px solid #FFFFFF4D;
}

footer div {
    font-size: 13px;
    font-family: var(--font-thin-200);
}

@media (max-width: 992px) {
    section {
        overflow: hidden;
        padding-left: 44px;
        padding-right: 44px;
    }

    .title {
        font-size: 40px;
        line-height: 50px;
    }

    p {
        font-size: 20px;
        line-height: 29px;
    }

    .capa {
        min-height: 494px;
    }

    video {
        height: inherit;
    }

    section div.video-container,
    section div.video-container::before {
        height: 104%;
    }

    section.capa img {
        margin: 0 auto 32px;
        height: 138px !important;
    }

    .section2 div br,
    .section5 div br,
    .capa br {
        display: none !important;
    }

    .section2 {
        max-width: 800px;
    }

    .section5 div {
        position: relative;
    }

    .section5 div b {
        top: 100%;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
    }

    footer {
        margin-top: 22px;
    }
}

@media (max-width: 600px) {
    section {
        padding-left: 22px;
        padding-right: 22px;
    }

    section.capa img {
        height: 92px !important;
    }

    .capa div,
    .section2 div {
        font-size: 26px;
        line-height: 30px;
    }

    .section2 {
        min-height: 430px;
    }

    .section5 div {
        font-size: 30px;
        line-height: 38px;
    }
}