/* RESET */
* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    border: none;
    outline: none;
    font-weight: 300;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* RESET */

body {
    background-image: url(../img/showcase.webp);
}

/* CABEÇALHO */

.logo-spotify {
    min-width: 7vw;
    max-width: 7vw;
}

.navbar {
    opacity: 0.85;
    background-color: #191414;
}

.nav-link {
    color: #FFFFFF !important;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #1DB954 !important;
}

.navbar-toggler:hover {
    border: none !important;
}

.container {
    width: 60%;
}

.bar:hover {
    color: #FFFFFF !important;
}

.baixar-link::after {
    content: "";
    border: 1px solid #FFFFFF;
    margin-left: 15px;
}

/* CORPO */

.corpo {
    background-image: url(../img/showcase.webp);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(0, 0, 0, 0.4);
    background-blend-mode: color;     
}

.alinhamento-corpo {
    height: 115vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
}

.alinhamento-corpo h1 {
    font-weight: bold;
    font-size: 4em;
    margin-top: 22%;
}

.btn {
    background-color: #1DB954;
    border-radius: 20px;
    color: #FFFFFF;
    width: 20vw;
    border: none;
}

.btn:hover {
    color: #1DB954;
    border: 1px solid #1DB954;
    background-color: transparent;
}

/* FOOTER */
.rodape {
    background-color: #000000;
    border-radius: 0;
    font-size: 0.8em;
}

.rodape p {
    color: gray;
}

.rodape a {
    color:#FFFFFF;
}

.rodape-container-pai {
    width: 65vw;    
}

/* SECTION FOOTER COLUNAS */

.footer-colunas {
    display: flex;
    justify-content: space-evenly;
    margin-top: 7%;
    margin-bottom: 5%;  
    padding-right: 5%;
}

.footer-coluna-empresa, .footer-coluna-comunidade, .footer-coluna-links-uteis {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-coluna-rede-social {
    display: flex;
    font-size: 1.5rem;
    height: 5vh;
}

.footer-coluna-rede-social i {
    margin-right: 1vw;
    color: #FFFFFF;
}

.footer-coluna-empresa a, .footer-coluna-comunidade a, .footer-coluna-links-uteis a {
    margin-bottom: 5%;
}
.footer-coluna-empresa a:hover, .footer-coluna-comunidade a:hover, .footer-coluna-links-uteis a:hover, .footer-coluna-rede-social i:hover {
    color: #1DB954;
    cursor: pointer;
}

/* SECTION FOOTER END */

.footer-end {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: end;
    color: gray;
    margin-bottom: 5%;
}

.footer-end-right {
    display: flex;
    align-items: end;
}

.footer-end-right a {
    margin-right: 5%;
    color: gray;
}

.footer-end-right a:hover {
    color: #1DB954;
}

.footer-end-left {
    display: flex;
    flex-direction: column;
    width: 25vw;
}

.footer-end-lang, .footer-end-copyright {
    display: flex;
    justify-content: end;
}

.brasil-icon {
    width: 20px;
    margin-left: 10px;
}

/* Pequena */
@media screen and (max-width:600px){

   
}

/* Média */
@media screen and (min-width:601px) and (max-width:1000px){
    
}

/* Grande */
@media screen and (min-width:1001px){
    
}