
/* STYLE CSS DO INDEX */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    /* IMAGEM DE FUNDO */
    background-image: url("fundoindex.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    font-family: Arial, sans-serif;
}

/* Caixa principal */
.container-principal {
    width: 90%;
    max-width: 800px;

    margin: 40px auto;
    padding: 40px;

    background-color: rgba(0, 0, 0, 0.45);

    border-radius: 25px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* Título */
.titulo {
    color: aliceblue;
    font-size: 42px;
    font-weight: bold;
    text-shadow: 2px 2px 5px black;
    margin-bottom: 20px;
}

/* Foto */
.foto-perfil {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid aliceblue;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

/* Linhas */
hr {
    border: 0;
    border-top: 2px solid aliceblue;
    opacity: 0.7;
    margin: 30px 0;
}

/* Subtítulo */
.subtitulo {
    color: aliceblue;
    font-size: 23px;
    text-shadow: 1px 1px 3px black;
    margin-bottom: 15px;
}

/* Texto */
.descricao {
    color: aliceblue;
    font-size: 17px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px black;
}

/* Área dos botões */
.botoes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Botões */
.botao {
    width: 280px;
    padding: 12px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s;
}

/* Efeito quando passa o mouse */
.botao:hover {
    transform: scale(1.05);
    background-color: aliceblue;
    color: black;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

/* Rodapé */
.rodape {
    text-align: center;
    color: aliceblue;
    font-size: 14px;
    opacity: 0.8;
}

/* Celular */
@media (max-width: 600px) {
    .container-principal {
        width: 94%;
        margin: 20px auto;
        padding: 25px 15px;
    }

    .titulo {
        font-size: 32px;
    }

    .subtitulo {
        font-size: 19px;
    }

    .foto-perfil {
        width: 140px;
        height: 140px;
    }

    .botao {
        width: 90%;
    }
}
