* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* Regular 400, Medium 500, Bold 700, Black 900 */
    font-size: 16px;
    color: #fff;
    overflow-x: hidden;
}

body h1,
body h2,
body h3,
body h4 {
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.flex {
    clear: both;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.center {
    justify-content: center;
}

.between {
    justify-content: space-between;
}

footer {
    background-color: #0c1146;
}

#footer-social {
    background: #0c1146;
    height: 150px;
}

#footer-social .container {
    position: relative;
}

#footer-social ul {
    width: 250px;
    margin: 0 auto;
}

#footer-social li {
    line-height: 150px;
    float: left;
    width: 20%;
    text-align: center;
}

#logo-kabum-rodape {
    position: absolute;
    top: 45px;
    right: 0;
}

#footer-social li span {
    padding: 8px;
    background-color: #fff;
    border-radius: 50%;
    color: #0c1146;
    transition: all 0.3s;
}

#footer-social li span:hover {
    background-color: #0c1146;
    color: #fff;

}

footer p {
    color: #fff;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0;
}


nav li a {
    color: #fff;
    padding: 10px 20px;
    transition: all 0.3s;
    font-weight: 700;
    display: inline-block;
}

nav li a::after {
    content: "";
    display: block;
    background: #ddfd00;
    width: 0px;
    height: 2px;
    margin: 5px auto 0;
    transition: all 0.3s;
}

nav li:hover a,
nav li a.ativo {
    color: #ddfd00;
}

nav li:hover a::after,
nav li a.ativo::after {
    width: 40px;
}

.uk-navbar-nav>li>a {
    color: #fff;
}

.uk-navbar-nav>li>a:hover {
    color: #fff;
}

#mobile-navbar img {
    margin-bottom: 40px;
}

.uk-nav-default {
    font-size: 20px;
}

header {
    background: #0c1c80 url(../img/bg-topo.jpg) center top no-repeat;
}

#topo {
    justify-content: space-between;
    padding: 30px 0;
}

#logotipos-topo {
    position: relative;
}

@keyframes logodesprendidos {
    0% {
        transform: translateX(0) translateY(100px);
    }

    20% {
        transform: translateX(-5px) translateY(105px);
    }

    100% {
        transform: translateX(0) translateY(100px);
    }
}

#logo-desprendidos {
    width: 100%;
    height: 167px;
    background: url(../img/logo-desprendidos.png) center top no-repeat;
    transform: translateY(100px);
    animation-duration: 2s;
    animation-name: logodesprendidos;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes cidpuxa {
    0% {
        transform: translateX(10px);
    }

    50% {
        transform: translateX(0px);
    }

    60% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(10px);
    }
}

#cid-corda {
    width: 100%;
    height: 453px;
    background: url(../img/cid-corda.png) center top no-repeat;
    text-align: right;
    animation-duration: 2s;
    animation-name: cidpuxa;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#logo-desprendidos img,
#cid-corda img {
    display: none;
}

#familia {
    position: absolute;
    bottom: 0px;
    right: 0;
    z-index: 3;
}


#chamada{
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}


@keyframes pop {
    0% {
        transform: scale(0);
    }

    5% {
        transform: scale(1);
    }

    65% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(0);
    }

    100% {
        transform: scale(0);
    }
}

.iconepop {
    transform: scale(0);
    position: absolute;
    animation-duration: 5s;
    animation-name: pop;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.iconepop:nth-child(1) {
    left: 20%;
    bottom: -10%;
    animation-delay: 1s;
}

.iconepop:nth-child(2) {
    right: 20%;
    top: 0;
    animation-delay: 2s;
}

.iconepop:nth-child(3) {
    left: 20%;
    top: 10%;
    animation-delay: 3s;
}

.iconepop:nth-child(4) {
    right: 10%;
    bottom: -30px;
}

#desprendidos {
    background: #d7e8f7;
    padding: 50px 0;
    text-align: center;
}

h1 {
    font-weight: 500;
    font-size: 1.2rem;
    color: #380b8a;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#desprendidos h2 {
    font-weight: 700;
    font-size: 1.8rem;
    color: #380b8a;
    text-transform: uppercase;
}

#desprendidos h2 span {
    display: block;
    font-size: 3rem;
    font-family: 'Bungee', cursive;
}

.destaque {
    margin: 0 20px;
}

.destaque p {
    color: #380b8a;
    padding: 0 30px;
    font-weight: 700;
}

.destaque a {
    color: #380b8a;
    font-weight: 700;
}

.destaque::before {
    content: url(../img/ico-coracao.png);
    display: block;
    margin-bottom: 20px;
    transform: scale(1);
    transition: all 0.3s;
}

.destaque:hover::before {
    transform: scale(1.1);
}


.destaque:nth-child(2):before {
    content: url(../img/ico-pessoas.png);
}

.destaque:nth-child(3):before {
    content: url(../img/ico-fone.png);
}

#inscreva-se {
    padding: 50px 0;
    background: rgb(71, 37, 133);
    background: radial-gradient(circle, rgba(71, 37, 133, 1) 0%, rgba(55, 8, 103, 1) 40%, rgba(55, 8, 103, 1) 100%);
}

#inscreva-se .container {
    text-align: center;
    background: url(../img/ondas.png) right top no-repeat;
}

#inscreva-se h2 {
    color: #d7e8f7;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 3rem;
}

#inscreva-se h2 span {
    display: block;
    font-size: 1.5rem;
}

#inscreva-se h2 span a {
    color: #8fe828;
    font-weight: 700;
}

#inscreva-se h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 2rem;
}

#inscreva-se h3 span {
    color: #8fe828;
}

#inscreva-se h3 a{
    color: #8fe828;
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 2rem;
}

.cid {
    transform: scale(1);
    transition: all 0.3s;
}

.cid:hover {
    transform: scale(1.05);
}

.data {
    padding: 50px 50px 50px 0;
    display: block;
    filter: drop-shadow(30px 0px 10px rgba(0, 0, 0, 0.2));
    overflow: visible;
    border-radius: 20px;
    background: rgb(55, 8, 103, 1);
    text-transform: uppercase;
    position: relative;
}

.data::after {
    content: url(../img/setinhas-verdes.png);
    position: absolute;
    right: -50px;
    top: 20%;
    transform: translateY(-50%);
}

.data h3 {
    text-transform: uppercase;
}

.data h3 span {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

form.flex div {
    width: 45%;
}

form.flex {
    align-items: flex-start;
}

form.flex input,
form.flex textarea {
    width: 100%;
    border: solid 2px #9c7fd3;
    border-radius: 40px;
    padding: 20px 20px;
    margin-bottom: 20px;
    background: #351a62;
    color: #c3d1f2;
    outline: none;
}

form.flex input:focus,
form.flex textarea:focus {
    background: #c3d1f2;
    color: #351a62;
    outline: none;

}

form.flex textarea {
    margin-bottom: 10px;
}

form.flex input.enviar {
    background: rgb(143, 233, 39);
    background: linear-gradient(0deg, rgba(143, 233, 39, 1) 0%, rgba(143, 233, 39, 1) 60%, rgba(201, 244, 152, 1) 80%, rgba(143, 233, 39, 1) 100%);
    border: none;
    color: #370867;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.2));
    transition: all 0.3s;
}

form.flex input.enviar:hover {
    filter: drop-shadow(-10px 10px 10px rgba(0, 0, 0, 0.5));
    color: #370867;
}

::placeholder {
    color: #c3d1f2;
    opacity: 1;
}

form.flex input:focus::placeholder,
form.flex textarea:focus::placeholder {
    color: #370867;
}

#spotify {
    background: #00a547 url(../img/bg-verde.jpg) left bottom repeat-x;
}

#spotify .container {
    background: url(../img/ondas-verdes.png) right 50px no-repeat;
}

#spotify div {
    text-align: center;
}

#spotify h2 {
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}

#spotify h2 span {
    display: block;
    color: #8fe927;
    font-size: 3rem;
}

#spotify p {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta {
    background: rgb(143, 233, 39);
    background: linear-gradient(0deg, rgba(143, 233, 39, 1) 0%, rgba(143, 233, 39, 1) 60%, rgba(201, 244, 152, 1) 80%, rgba(143, 233, 39, 1) 100%);
    border: none;
    color: #370867;
    font-weight: 900;
    border-radius: 40px;
    padding: 17px 50px;
    display: inline-block;
    font-size: 1rem;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.2));
    transition: all 0.3s;
}

.cta:hover {
    filter: drop-shadow(-10px 10px 10px rgba(0, 0, 0, 0.5));
    color: #370867;
}

#logitech {
    background: #d7e8f7 url(../img/bg-azul-coracao.jpg) center top no-repeat;
    padding: 50px 0;
}

#logitech .container {
    text-align: center;
}

#logitech h2 {
    color: #370867;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

#logitech h2 span {
    font-family: 'Bungee', cursive;
    display: block;
    font-size: 3rem;
}

#logitech p {
    font-size: 1.5rem;
    color: #370867;
    margin-bottom: 40px;
}

#logitech .uk-slider {
    border: solid 2px #8188e5;
    padding: 5px;
    margin-bottom: 20px;
}

#logitech li:nth-child(1),
#logitech li:nth-child(4) {
    background-color: #d76565;
}

#logitech li:nth-child(2),
#logitech li:nth-child(5) {
    background-color: #ba6cde;
}

#logitech li:nth-child(3),
#logitech li:nth-child(6) {
    background-color: #8188e5;
}

.laranja {
    background: #ff8400;
    color: #fff;
    margin-top: 20px;
}

#regulamento {
    background: #0c1c80;
    padding: 50px 0;
    text-align: center;
}

#regulamento h2 {
    font-family: 'Bungee', cursive;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 40px;
}



@media screen and (max-width: 1480px) {

    .container {
        margin: 0 30px;
    }

    #familia {
        display: none;
    }

}

@media screen and (max-width: 1180px) {

    #desprendidos .flex {
        flex-wrap: wrap;
    }



    header {
        background-size: cover
    }

    #logotipos-topo {
        text-align: center;
    }

    @keyframes logodesprendidos {
        0% {
            transform: translateX(0) translateY(0px);
        }

        10% {
            transform: translateX(-10px) translateY(5px);
        }

        100% {
            transform: translateX(0) translateY(0px);
        }
    }

    #logo-desprendidos {
        background: url(../img/logo-desprendidos-m.png) center top no-repeat;
        transform: translateY(0);
        margin-bottom: 40px;
        height: 129px;
    }

    #chamada{
        top: 150px;
        margin-left: 50px;
    }

    #cid-corda {
        background: url(../img/cid-corda-m.png) left top no-repeat;
        height: 356px;
    }

    #inscreva-se .flex {
        flex-wrap: wrap;
    }

    #spotify .flex {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    #spotify h2 {
        margin-top: 50px;
    }

    #logo-kabum-rodape {
        display: none;
    }

    #inscreva-se form {
        display: block;
    }

    #inscreva-se form div {
        width: 100%;
    }

    .data {
        margin-bottom: 20px;
        background: none;
        padding: 40px 0;
    }

    .data::after {
        content: url(../img/setinhas-verdes.png);
        position: absolute;
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateY(0) translateX(-50%);
    }


    .cta {
        margin-bottom: 20px;
    }

    .iconepop:nth-child(1) {
        left: 0;
        bottom: -40px;
        animation-delay: 1s;
    }

    .iconepop:nth-child(2) {
        right: -70px;
        top: 120px;
        animation-delay: 2s;
    }

    .iconepop:nth-child(3) {
        left: 20px;
        top: -30px;
        animation-delay: 3s;
    }

    .iconepop:nth-child(4) {
        right: 10%;
        bottom: -30px;
    }

}

@media screen and (max-width: 500px) {

    #inscreva-se .container {
        background: none;
    }

    #logo-desprendidos,
    #cid-corda {
        background: none;
        height: auto;
    }

    #chamada{
        position: relative;
        top:0;
        margin: 0 30px;
        transform: translateX(0);
        left: auto;
    }

    #logo-desprendidos img,
    #cid-corda img {
        display: block;
    }

    @keyframes pop {
        0% {
            transform: scale(0);
        }

        5% {
            transform: scale(0.6);
        }

        65% {
            transform: scale(0.4);
        }

        70% {
            transform: scale(0);
        }

        100% {
            transform: scale(0);
        }
    }

    .iconepop:nth-child(1) {
        left: 0;
        bottom: -60px;
        animation-delay: 1s;
    }

    #logitech h2 {
        font-size: 1.2rem;
    }

    #logitech h2 span {
        font-size: 1.8rem;
    }
}