@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins: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');
*{
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root{
    --primary-color: #33CB98;
    --secondary-color: #cccccc;
    --text-color: #f1f1f1;
    --background-color: #282A36;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--background-color);
    
}

header{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    
    /* background-image: url(../video/background.mp4); */
}
header video{
    width: 100%;
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 20%;
}
header figure{
    z-index: 1;
    width: 120px;
    height: 120px;
    display: flex;
    margin-top: -20px;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0.1px 0.1px 2px 0.1px #000;
}
header figure img{
    width: 100%;
}

main .main{
    max-width: 960px;
    margin: auto;
    margin-top: -100px;
    padding-bottom: 50px;
    background-color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
main .main .titulo{
    display: flex;
    color: var(--text-color);
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
main .main .titulo .agencia{
    padding-top: 130px;
    margin-bottom: 20px;
}
main .main .titulo .descricao{
    padding: 10px;
    font-weight: 400;
    text-align: center;
}
main .main .links{
    width: 70%;
    margin: auto;
    padding-top: 50px;
}
main .main .links a{
    color: var(--text-color);
    display: flex;
    font-weight: 500;
    font-size: 1.2rem;
    transition: 1s;
    margin-bottom: 20px;
    align-items: center;
    text-decoration: none;
    background-color: var(--background-color);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.274);
    /* border-bottom: solid 1px #ccc; */
}
main .main .links a:hover{
    background: linear-gradient(90deg, #9436BB 0%, #475CBF 100%);
}
 /* main .main .links a i{
    margin-right: 5px;
 } */
 main .main .links a label{
    cursor: pointer;
    font-size: 1rem;
 }
  main .main .links a label:hover{
    color: var(--background-color);
  }
main .main .links a img{
    width: 50px;
    margin-right: 10px;
}
main .main .links a:hover{
    color: #ccc;
}

footer{
    padding-bottom: 50px;
    background-color: #000;
}
footer p{
    color: #fff;
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
}
footer p a{
    color: #aaa;
    font-size: 0.8rem;
    text-decoration: none;
}
footer p{
    text-align: center;
}
footer p a{
    font-size: 0.8rem;
    color:var(--secondary-color);
    text-decoration: none;
}
footer p a:hover{
    color: var(--text-color);
}
/* @media(max-width: 430px){
     main .main .titulo h1{
        font-size: 1rem;
    }
    main .main .titulo h2{
        font-size: 0.8rem;
    }
    main .main .links a{
        font-size: 0.7rem;
    }
} */
@media(max-width: 500px){
    main .main, .links{
        width: 100%;
    }
     main .main .titulo .agencia{
        font-size: 1rem !important;
    }
    main .main .titulo .descricao{
        font-size: 0.9rem !important;
    }
    main .main .links a{
        font-size: 0.8rem;
    }
    /* main .main .links a i{
        font-size: 0.5rem;
    } */
    main .main .links a label{
        line-height: 15px;
        font-size: 0.7rem;
    }
    footer p{
        font-size: 0.6rem;
    }
    footer p a{
        font-size: 0.6rem;
    }
}
@media(max-width: 600px){
    header{
        height: 100px;
    }
    main .main .titulo .agencia{
        font-size: 1.3rem;
    }
    main .main .titulo .descricao{
        font-size: 1rem;
    }
    main .main .links a{
        font-size: 1rem;
    }
    header figure{
        width: 90px;
        height: 90px;
    }
}

@media(max-width: 700px){
    main .main, main .main{
        padding-right: 10px;
        padding-left: 10px;
    }
    main .main, main .main .links{
        width: 100%;
    }
}
