/* styles.css */

/* Atualização para estilo clean e fontes modernas */

body, html {
    margin-top: -5px;
    width: 100%;
    background-color: #0a0a0a; /* Fundo preto */
    overflow-x: hidden; /* Evita rolagem horizontal */
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff; /* Cor do texto */
    font-family: 'Roboto', sans-serif; /* Exemplo de fonte moderna */
    position: relative; /* Define o corpo como relativo */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    width: 100%;
    position: relative; /* Define o container como relativo */
    z-index: 0; /* Garante que o conteúdo fique acima do fundo preto */
}

.black-background {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #ff0000; /* Cor de fundo preto */
    z-index: 1; /* Coloca o fundo preto atrás do conteúdo */
}

.section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.top-section {
    position: relative;
    height: 1000px; /* Ocupa 100% da altura da viewport */
    width: 10000px;
    max-width: 100%; /* Define uma largura máxima para manter a proporção vertical */
    max-height: 100%;
    background-color: #000000;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    object-fit: cover; /* Faz a imagem cobrir todo o espaço */
    object-position:50% 30%;
}

.overlay {
    margin-top: 379px;
    position: absolute;
    bottom: 300px;
    width: 100%;
    height: 500px;
    background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    z-index: 2;
}

.logo {
    margin-top: 10px;
    height: 70%;
    width: 100%;
    display: block;
    position: absolute;
    top: 600px;
    left: 50%;
    transform: translate(-50%, -50%);
    size: 100%;
    max-width: 400px;
    max-height: 400px;
    z-index: 3;
}

.middle-section {
    margin-top: -300px;
    height: 5vh; /* Ocupa 20% da altura da viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%; /* Define uma largura máxima para manter a proporção vertical */
    width: 100%;
    flex-direction: row; /* Coloca os botões lado a lado */
    z-index: 4;
}

.button {
    margin: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transition: transform 0.3s;
}

.button img {
    width: 60%;
    height: 60%;
}

.button:hover {
    transform: scale(1.1);
}

.instagram {
    background-color: #e4407f; /* Cor do Instagram */
}

.whatsapp {
    background-color: #25D366; /* Cor do WhatsApp */
}

.bottom-section, .horizontal-image-section, .photos-section, .vip-section {
    text-align: center;
    color: #fff;
    max-width: 100%; /* Define uma largura máxima para manter a proporção vertical */
    width: 100%;
}

.horizontal-image-section img {
    width: 600px;
    max-width: 100%; /* Define uma largura máxima para manter a proporção vertical */
    height: auto;
    border-radius: 0px;
    margin-bottom: 20px;
}

.bio-text {
    font-size: small;
    padding: 20px;
    text-align: justify; /* Justificar o texto */
    line-height: 1.6; /* Espaçamento entre linhas */
    max-width: 600px; /* Define uma largura máxima para manter a proporção vertical */
    width: 80%;
    margin: 0 auto; /* Centraliza horizontalmente */
}

.bio-text p {
    margin-bottom: 10px; /* Espaçamento inferior entre parágrafos */
}

.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.photo {
    margin: 10px;
}

.photo img {
    width: 130px; /* Tamanho das imagens */
    height: 130px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.photo img:hover {
    transform: scale(1.1);
}

.vip-section {
    padding: 20px;
    text-align: center;
    color: #fff;
    max-width: 600px; /* Define uma largura máxima para manter a proporção vertical */
    width: 100%;
}

.signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signup-form label {
    margin-bottom: 10px;
}

.signup-form input[type="tel"] {
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 16px;
}

.signup-form button {
    padding: 10px 20px;
    background-color: #E4405F; /* Cor do botão */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: #ffffff; /* Cor do botão ao passar o mouse */
}

.soundcloud{
    max-width: 800%;
    margin-top: 50px;
    z-index: 5;
}

.divider {
    width: 80%;
    margin: 20px auto;
    border-top: 1px solid #666; /* Cor da linha horizontal */
    border-radius: 20%;
}

.footer {
    width: 30%;
    background-color: #000; /* Fundo preto */
    padding: 10px;
    text-align: center;
    position: relative;
}

.footer img {
    margin: auto;
    width: 80%; 
    height: 80%;
    max-width: 500px;
    max-height: 500px;
}

@media (max-width: 100%) {
    .logo {
        max-width: 100%;
    }

    .button {
        width: 40px;
        height: 40px;
    }

    .button img {
        width: 50%;
        height: 50%;
    }

    .photo img {
        width: 30%;
        height: 30%;
    }
}