@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');

*{
    font-family: 'Poppins', sans-serif;
}

main .logo {
    display: inline-block;
    position: absolute;
}

main .logo img {
    padding-top: 10px;
    width: 100%;
    height: 180px;
    opacity: 30%;
}

main .side {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

main .img-central {
    display: flex;
    justify-content: center;
}

main .img-central img {
    padding-top: 80px;
    width: 100%;
    height: 400px;
}

main .titulo {
    display: flex;
    justify-content: center;
}

main .titulo h1 {
    font-size: 3em;
    color:#2F2D5F;
    margin-bottom: 30px;
    text-transform: uppercase;
}

main .texto_descritivo {
    display: flex;
    justify-content: center;
}

main .texto_descritivo p {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5em;
    color:#2F2D5F;
    margin-bottom: 20px;
}

main .prev_retorno {
    display: flex;
    justify-content: center;
}

main .prev_retorno {
    font-size: 1.2em;
    font-weight: 500;
    color:#5f5f5f;
    margin-bottom: 30px;
    display: none;
}

main .countdown {
    position: relative;
    width: 100%;
    max-width: 960px;
    min-height: 100%;
    margin: 0px auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

main .countdown .card {
    position: relative;
    width: 100px;
    height: 130px;
    transform-style: preserve-3d;
    transition: transform .2s;
    transform: rotatey(0deg) translatex(0px) translatey(0px);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.4);
    margin: 5px;
    cursor: default;
}

main .countdown .card:hover {
    transform: scale(1.1);
}

main .countdown .card .card-item {
    transform: rotateY(0deg) translateZ(2px);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    border: 2px white solid;
    border-radius: 5px;
}
main .countdown .card .card-item .numerico {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 42px;
    margin: -35px 0 0 0;
    text-align: center;
    color: #74b843;
}

main .countdown .card .card-item .title {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    text-transform: uppercase;
    font-size: 16px;
    margin: 15px 0 0 0;
    text-align: center;
    color: #2f2d5f;
}

