@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.mask-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

.logo {
    max-width: 25%;
    margin-bottom: 35px;
}

.contentSlogan {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.barra {
    width: 15px;
    height: 60px;
    background: linear-gradient(120deg, rgba(238,199,32,1) 30%, rgba(247,165,13,1) 100%);
    transform: rotate(10deg) skewY(-10deg);
    margin-right: 25px;
}

.slogan {
    max-width: 52%;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 50px;
    background: linear-gradient(120deg, rgba(238,199,32,1) 60%, rgba(247,165,13,1) 100%);
    -webkit-background-clip: text;
    color: transparent;

    span {
        color: white;
    }

    /* &::before {
        content: "";
        position: absolute;
        top: 365px;
        left: 430px;
        width: 15px;
        height: 55px;
        background: linear-gradient(120deg, rgba(238,199,32,1) 30%, rgba(247,165,13,1) 100%);
        transform: rotate(10deg) skewY(-10deg);
    } */
}

.badge {
    width: 52%;

    h3 {
        background-color: rgba(117, 117, 117, 0.9);
        width: max-content;
        padding: 10px;
        border-radius: 5px;
        font-family: "Barlow Condensed";
        font-weight: 400;
        color: white;
        font-size: 25px;
    }
}

.footer-text {
    font-family: "Barlow Condensed";
    font-weight: 200;
    color: white;
    font-size: 45px;
    margin-top: 35px;
}