@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&family=Ubuntu:wght@400;500;700&display=swap');
.whatsapp-link{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#00804ba9;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #888;
    z-index:1000;
    transition: opacity 0.5s ease-in-out; /* Adicionado para suavizar o desaparecimento */
    transition: transform 0.3s ease, background-color 0.5s ease, color 0.5s ease;
    opacity: 1; /* Definido como 1 por padrão */
}

.whatsapp-link:hover{
    background-color: rgba(255, 255, 255, 0.753);
    color: #00804b;
}

.my-whatsapp-link{
	margin-top:16px;
}
.whatsapp-link.hidden {
    opacity: 0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
/*  navbar   inicio*/
.navbar{
    position: fixed;
    width: 100%;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    z-index: 999;
    transition: all 0.3s ease;
}
.navbar.sticky{
     background: #00804b;
     padding: 15px 0;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 500;
}
.navbar .logo a span{
    color: #00804b;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #fff;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: #00804b;
}
.navbar.sticky .menu li a:hover{
    color: #fff;
}
/*  Home   inicio  */
.home{
    display: flex;
    background: url(../IMAGE/001.png) no-repeat;
    background-size: cover;
    text-align: center;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    font-family: 'Ubuntu', sans-serif;
    justify-content: center;
    position: relative;
}

.button-container {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
}

.button-group {
    display: flex;
    margin-right: 10px;
}

.button-1 {
    background-image: url(../IMAGE/x-bio.png);
}

.button-2 {
    background-image: url(../IMAGE/x-set.png);;
}

.button-3 {
    background-image: url(../IMAGE/x-contato.png);
}

.round-button {
    display: inline-block;
    width: 80px; /* Aumente a largura conforme desejado */
    height: 80px; /* Aumente a altura conforme desejado */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    line-height: 80px; /* Ajuste a altura da linha conforme a altura do botão */
    margin: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.5s ease-in-out;
}

.round-button:hover {
    transform: translateY(-8px); 
}

.icon-container {
    text-align: center;
    margin-top: 10px; 
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}


.home .max-width{
    margin: auto ;
}
.home .home-content .text-1{
    font-size: 27px;
}
.home .home-content .text-2{
    font-size: 75px;
    font-weight: 500;
}

.centered-image {
    max-width: 80%; 
    max-height: 100px;
    margin-left: 0px;
    margin-right: 0px;
}

.text-3 {
    font-size: 10px;
    margin: 0;
    text-align: center; /* Centralizar horizontalmente */
    padding-top: 20px; /* Adicionar espaçamento superior para alinhar no topo */
}

.text-3 span {
    color: #00804b;
    font-weight: 500;
}

/*  Menu  Mobile  */
.menu-btn{
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    width: 41px;
    height: 45px;
    right: 30px;
    bottom: 30px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background: #00804b;
    border-radius: 6px;
    font-size: 30px;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events:auto;
    
}

/*  todos os codigos similares  */
section{
    padding: 100px 0;
    background: black;
}
section .title{
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    position: relative;
}

section .title2{
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    position: relative;
}

section .biografia{
    text-align: center;
}

section .title::after{
    position: absolute;
    bottom:-12px;
    left: 50%;
    font-size: 15px;
    background: transparent;
    color: #00804b;
    padding: 5px;
    transform: translateX(-50%);
}

section .title2::after{
    position: absolute;
    bottom:-12px;
    left: 50%;
    font-size: 15px;
    background: transparent;
    color: #fff;
    padding: 5px;
    transform: translateX(-50%);
}
.biografia, .djsets, .download, .teams, .contato, footer{
    font-family: 'Roboto', sans-serif;
}
.biografia .biografia-striix,
.biografia .biografia-curiosidades,
.biografia .biografia-stx,
.djsets .soundcloud,
.download .download-content,
.contato .contato-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

/*  sessão sobre  */

.biografia {
    background: url(../IMAGE/002.png) no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
}

.biografia .max-width {
    text-align: center; 
}

#biografia, #curiosidades, #stx {
    color: #FFF; 
    text-align: center; 
    padding: 20px; 
}

.bio-image {
    max-width: 300px; /* Ajuste conforme necessário */
    display: block;
    margin: 0 auto 60px;
}

/* striix */
.biografia .biografia-striix .right {
    width: 100%;
}

.biografia .biografia-striix .right .text {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.biografia .biografia-striix .right .text span {
    color: #00804b;
}

.biografia .biografia-striix .right p {
    text-align: left; 
}

.biografia .biografia-striix .right a {
    display: inline-block;
    background: #00804b;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #00804b;
    transition: all 0.3s ease;
    text-align: center;
}

.biografia .biografia-striix .right a:hover {
    color: #00804b;
    background: none;
}

/* curiosidades */
.biografia .biografia-curiosidades .right{
    width: 100%;
}
.biografia .biografia-curiosidades .right .text{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}
.biografia .biografia-curiosidades .right .text span{
    color: #00804b;
}
.biografia .biografia-curiosidades .right p{
    text-align: left;
}

/* stx */
.biografia .biografia-stx .right{
    width: 100%;
}
.biografia .biografia-stx .right .text{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}
.biografia .biografia-stx .right .text span{
    color: #00804b;
}
.biografia .biografia-stx .right p{
    text-align: left;
}

/*  sessão djsets */
.djsets {
    background: url(../IMAGE/003.png) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
}

.djsets, .teams{
    color: #fff;
}
.djsets .title::after,
.teams .title::after{
    content: "CLIQUE PARA OUVIR";
    width: 100%;
    background-color: transparent;
}

.djsets .title2 a {
    text-decoration: none; 
    color: #fff;
    font-size: 18px;
}

.djsets .title2 a:hover {
    color: #00804b;
}

.djsets p {
    margin: 0 0 10px;
    font-size: 14px; 
    color: #fff; 
    border-bottom: 5px solid #00804b; 
    padding-bottom: 1px;
}

.djsets pa {
    margin: 0 0 10px;
    font-size: 14px; 
    color: #fff;  
    padding-bottom: 1px;
}

.djsets .soundcloud iframe {
    width: 100%;
    height: 166px;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.djsets .soundcloud-text {
    font-size: 10px;
    color: #cccccc;
    line-break: anywhere;
    word-break: normal;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: Interstate, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Garuda, Verdana, Tahoma, sans-serif;
    font-weight: 100;
    text-decoration: none; 
}

.djsets .soundcloud-text a {
    color: #cccccc;
    text-decoration: none;
}

.djsets .soundcloud-text a:hover {
    text-decoration: underline;
}

.djsets .fa-soundcloud {
    color: #00804b;
    margin-right: 10px;
}

.download{
    height: 100vh;
}

.tracks-image {
    max-width: 300px; /* Ajuste conforme necessário */
    display: block;
    margin: 0 auto 60px;
}

/* Sessão Fotos */
@media (max-width: 768px) {
    body, html {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }
    .max-width {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: 100%;
    }
    .justified-gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .justified-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .justified-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        align-items: stretch;
    }
    .gallery-item {
        flex: 1 1 calc(33.333% - 5px);
        max-width: calc(33.333% - 5px);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .gallery-item img {
        width: auto;
        height: auto;
        max-width: 90px; /* Reduzindo um pouco para melhor espaçamento */
        max-height: 90px;
        object-fit: cover;
        border-radius: 5px;
    }
    .image-container img {
        width: 80%;
        height: auto;
    }
    .title {
        font-size: 14px;
        text-align: center;
    }
    .link-download a {
        font-size: 12px;
        display: block;
        text-align: center;
    }
}

.justified-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.justified-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
}

.gallery-item img {
    width: auto;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item {
    flex: 1 1 auto;
    max-width: calc(25% - 10px); /* 4 colunas por linha */
    display: flex;
}
.gallery-item img {
    width: 100%;
    height: 150px; /* Miniaturas menores */
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.05);
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .gallery-item {
        max-width: calc(33.333% - 10px); /* 3 colunas por linha */
    }
}

@media (max-width: 480px) {
    .gallery-item {
        max-width: calc(50% - 10px); /* 2 colunas por linha */
    }
}

.fotos-videos {
    display: flex;
    background: url(../IMAGE/004.png) no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; 
}

.linha-superior-fotos,
.linha-inferior-fotos {
    position: absolute;
    left: 50%; 
    transform: translateX(-50%); 
    width: 20%; 
    height: 1px; 
    background-color: #00804b; 
}

.linha-superior-fotos {
    top: 120px; 
}

.linha-inferior-fotos {
    bottom: 120px; 
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px; /* Ajusta o espaçamento entre a imagem superior e o título */
}

.top-image {
    width: 150px; /* Ajuste o tamanho conforme necessário */
}

.bottom-image {
    width: 150px; /* Ajuste o tamanho conforme necessário */
    margin-top: 10px; /* Espaço entre o ícone de download e a imagem inferior */
}

.fotos-videos .link-download {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Garante que ocupa toda a largura disponível */
}

.fotos-videos .link-download a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: white;
    text-decoration: none;
    background-color: transparent;
    transition: transform 0.5s, text-shadow 0.5s ease-in-out;
    animation: moveUpDown 0.5s infinite alternate; 
}

.fotos-videos .link-download a:hover {
    text-shadow: 0px 0px 20px #25d366;
    color: rosybrown;
    transform: translate(0px, -5px);
}

.fotos-videos .title::after{
    content: "CLIQUE NO BOTÃO ABAIXO PARA ACESSAR";
    background-color: transparent;
    width: 100%;
}

.title {
    color: white;
}

@media (max-width: 768px) {
    .title {
        white-space: nowrap; /* Impede que o texto quebre em mais de uma linha */
        font-size: 18px; /* Ajuste o tamanho para evitar que ultrapasse a tela */
    }
}

@media (max-width: 768px) {
    .bottom-image {
        width: 100%; /* Faz a imagem se ajustar ao tamanho da tela */
        max-width: 150px; /* Mantém o tamanho máximo para não ficar muito grande */
        margin: 10px auto; /* Centraliza a imagem e ajusta espaçamento */
        position: relative; /* Garante que a imagem fique dentro da section */
        bottom: 0; /* Mantém a imagem fixa na parte de dentro da section */
    }
}

@media (max-width: 768px) {
    .contato-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}


/* Sessão Download */
.download, .teams {
    color: #fff;
}

.download.title {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    position: relative;
}

.download {
    display: flex;
    background: url(../IMAGE/NONE2.png) no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; /* Adicionando posição relativa para posicionar as linhas */
}

.linha-superior,
.linha-inferior {
    position: absolute;
    left: 50%; /* Posiciona no centro */
    transform: translateX(-50%); /* Centraliza horizontalmente */
    width: 20%; /* Ajuste a largura conforme necessário */
    height: 1px; /* Espessura da linha */
    background-color: #00804b; /* Cor da linha */
}

.linha-superior {
    top: 250px; /* Distância do topo */
}

.linha-inferior {
    bottom: 250px; /* Distância da parte inferior */
}

.download .title::after {
    content: "CLIQUE PARA FAZER O DOWNLOAD";
    width: 100%;
    background-color: transparent;
}

.download .download-content {
    text-align: center;
    display: block;
    text-decoration: none;
    margin-bottom: 0.1cm;
}

.download .download-content a {
    color: white;
    font-size: 80px;
    display: block;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    transition: transform 0.5s;
    animation: moveUpDown 0.5s infinite alternate; 
}

.download .download-content:hover a {
    background-color: transparent;
    text-shadow: 0px 0px 20px #25d366;
    color: rosybrown;
    transform: translate(0px, -5px);
    transition: transform 0.5s;
    text-align: center;
}

@keyframes moveUpDown {
    to {
        transform: translateY(-10px); 
    }
}

/*  sessão Contato  */
.contato {
    background: url(../IMAGE/contato3.png) no-repeat;
    background-size: cover;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contato .max-width {
    height: 100%; 
}

.contato, .teams{
    color: #fff;
}

.contato .contato-content .column{
    width: calc(50% - 30px);
}
.contato .contato-content{
    align-items: center;
}
.contato .contato-content .left p{
    text-align: justify;
}
.contato .contato-content .text{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.contato .contato-content .left .icons{
    margin: 10px 0;
}
.contato .contato-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contato .contato-content .row .info{
    margin-left: 30px
}
.contato .contato-content .row .info .head{
    font-weight: 500;
}
.contato .contato-content .row .info .sub-title{
    color: #333;
}
.contato .contato-content .row ion-icon{
    font-size: 25px;
    color: #00804b;
}
.contato .rigth form .fields{
    display: flex;
    
}
.contato .rigth form .field,
.contato .rigth form .fields .field{
    width: 100%;
    margin-bottom: 15px;
}
.contato .rigth form .field input,
.contato .rigth form .textarea textarea{
    width: 100%;
    height: 100%;
    border: 1px solid #00804b;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto',sans-serif;
}

.contato .rigth form .name .form-control{
    background-color: #35353573;;
    color: white;
}

.contato .rigth form .email .form-control{
    background-color: transparent;
    color: white;
}

.contato .rigth form .whats .form-control{
    background-color: transparent;
    color: white;
}

.contato .rigth form .textarea .form-control{
    background-color: #35353573;
    color: white;
}

.contato .rigth form .name{
    width: 100%;
    height: 45px;
    align-items: center;
    justify-content: center;
}

.contato {
    align-items: center;
    justify-content: center;
}
.contato .rigth form .email{
    width: 100%;
    height: 45px;
    align-items: center;
    justify-content: center;
}
.contato .rigth form .whats{
    width: 100%;
    height: 45px;
    align-items: center;
    justify-content: center;
}
.contato .rigth form .textarea{
    width: 100%;
    height: 80px;
    align-items: center;
    justify-content: center;
}
.contato .rigth form .textarea textarea{
    padding-top: 10px;
    resize: none;
    align-items: center;
    justify-content: center;
}
.contato .rigth form .button{
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
}
.contato .rigth form .button button{
    width: 100%;
    height: 100%;
    border: 2px solid #00804b;
    background-color: #00804b;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}
.contato .rigth form .button button:hover{
    color: #00804b;
    background-color: transparent;
}

.contato-image {
    max-width: 300px; /* Ajuste conforme necessário */
    display: block;
    margin: 0 auto 60px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.social-btn {
    width: 50px;
    height: 50px;
    background-color: #00804b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: transform 0.3s ease, background-color 0.5s ease, color 0.5s ease;
    font-size: 24px;
    color: white;
    text-decoration: none;
}
.social-btn i {
    line-height: 1;
}
.social-btn:hover {
    transform: scale(1.1);
    background-color: white;
    color: #00804b;
}


.final {
    display: flex;
    background: url(../IMAGE/FINAL5.png) no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; 
}

.contato .contato-content {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    text-align: center; /* Garante alinhamento de texto */
}

/*  sessão footer  */
footer{
    background: black;
    padding: 20px 23px;
    color: #fff;
    text-align: center;
}

.button img {
    width: 19px; 
    margin-left: 5px; 
}

footer span a{
    color: #00804b;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}

.social-icons a {font-size: 1.5em; color: rgba(255, 255, 255, 0.253); margin-right: 3%}
.social-icons a:last-child {margin-right: 0;}
.social-icons a:hover {color: rgb(255,255,255);}


/*  responsivo  */
/* Correção para evitar que a imagem da seção DJ Sets sobreponha a biografia */
@media (max-width: 992px) {
    .djsets {
        position: relative;
        padding-top: 100px; /* Aumenta o espaçamento superior */
    }
    .tracks-image {
        max-width: 250px;
        margin-bottom: 20px;
    }
}

@media (min-width: 993px) {
    .biografia {
        padding-bottom: 100px; /* Adiciona espaço abaixo da biografia para evitar invasão da seção DJ Sets */
    }
    .djsets {
        padding-top: 150px; /* Aumenta a distância da seção anterior */
    }
}

/* Correção para o botão de download não ficar sobre a seção contato */
@media (max-width: 992px) {
    .fotos-videos .link-download {
        position: relative;
        margin-bottom: 40px; /* Adiciona um espaçamento para evitar sobreposição */
    }
    .contato {
        padding-top: 80px; /* Ajusta o espaçamento da seção de contato */
    }
}

/* Ajuste no tamanho das imagens da galeria para diferentes resoluções */
@media (max-width: 1317px) {
    .gallery-item {
        flex: 1 1 calc(25% - 10px); /* Ajusta para 4 colunas por linha */
        max-width: calc(25% - 10px);
    }
    .gallery-item img {
        height: 120px; /* Ajuste para telas menores que 1317px */
    }
}

@media (max-width: 992px) {
    .gallery-item {
        flex: 1 1 calc(33.333% - 10px); /* Ajusta para 3 colunas por linha */
        max-width: calc(33.333% - 10px);
    }
    .gallery-item img {
        height: 100px; /* Ajuste para notebooks menores */
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 10px); /* Ajusta para 2 colunas por linha */
        max-width: calc(50% - 10px);
    }
    .gallery-item img {
        height: 80px; /* Ajuste para celulares */
    }
}






@media (max-width: 1300px){
    .navbar .max-width{
        margin-left: 0;
    }
}
@media (max-width: 1104px){
    .biografia .biografia-striix .left img{
        width: 350px;
        height: 350px;
    }
}
@media (max-width: 1104px){
    .biografia .biografia-curiosidades .left img{
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 1104px){
    .biografia .biografia-stx .left img{
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 991px){
    .navbar .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .home {
        background: url(../IMAGE/001.png);
        background-position: center;
        background-size: cover;
    }
    .biografia{
        background: url(../IMAGE/002-M.png);
        background-position: center;
        background-size: cover;
    }
    .djsets{
        background: url(../IMAGE/003.png);
        background-position: center;
        background-size: cover;
    }
    .fotos-videos{
        background: url(../IMAGE/004.png);
        background-position: center;
    }
    .download{
        background: url(../IMAGE/NONE3.png);
        background-position: center;
        background-size: cover;
    }
    .contato{
        background: url(../IMAGE/contato3.png);
        background-position: center;
        background-size: cover;
    }
    .final{
        background: url(../IMAGE/FINAL5.png);
        background-position: center;
        background-size: cover;
    }
    .max-width{
        max-width: 800px;
        padding: 0 50px;
    }
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .navbar .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        left: -100%;
        top: 0;
        background: black;
        padding-top: 80px;
        text-align: center;
        transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .home .home-content .text-2{
        font-size: 70px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .biografia .biografia-striix .column{
        width: 50%;
    }
    .biografia .biografia-striix .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .biografia .biografia-striix .right{
        flex: 100%;
    }
    .biografia .biografia-curiosidades .column{
        width: 50%;
    }
    .biografia .biografia-curiosidades .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .biografia .biografia-curiosidades .right{
        flex: 100%;
    }
    .biografia .biografia-stx .column{
        width: 50%;
    }
    .biografia .biografia-stx .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .biografia .biografia-stx .right{
        flex: 100%;
    }
    .djsets .soundcloud .card {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .djsets .soundcloud .iframe{
        width: 500px;
        height: 50px;
    }
    .download .download-content .column,
    .contato .contato-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
    footer{
        margin-top: 15px;
    }
}

@media (max-width: 690px){
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .djsets .soundcloud .card {
        width:100%;
    }
}
@media (max-width: 500px){
    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 27px;
    }
}
