@import url('https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,400..900;1,400..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body{
    background-color: black;
    color: rgb(197, 197, 197);
}

.titulo{
    font-family: "Oswald", sans-serif;
    font-size: xx-large;
}

.subtitulo{
    font-family: "Roboto", sans-serif;
    margin: 1px;
}

.texto{
    font-family: "Besley", serif;
}

.navbar{
    background-color: black !important; 
}

.nav-item a{
    color: white;
    transition: 0.25s;
}

.nav-item a:hover{
    color: #5ce1e6;
    font-size: large;
}

#profile{
    border-radius: 50%;
    width: 85%;
    background-color: white;
    border: 5px solid #5ce1e6;

}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#logo,
#profile {
    transition: margin-top 0.3s ease, margin-bottom 0.3s ease; /* Adiciona transição suave para margin-top e margin-bottom */
}

#logo.mt-5,
#profile.mt-5 {
    margin-top: 3rem !important; /* Garante que a margem seja aplicada */
}

#profile.mb-3 {
    margin-bottom: 1.5rem !important; /* Garante que a margem seja aplicada */
}

#github{
    border: solid 1px white;
    background-color: white;
}

.projeto{
    border: 2px solid #d3d3d3; /* Cor da borda padrão */
    transition: border-color 0.3s ease; /* Transição suave da cor da borda */
    padding: 5px;
    border-radius: 25px;
}

.projeto:hover{
    border: 2px solid #3d8a8c;
    cursor: pointer;
}

/* Estilos para o container das telas */
.telas {
    display: flex;
    flex-direction: row; /* Alinha as imagens horizontalmente */
    align-items: center; /* Centraliza as imagens verticalmente */
    justify-content: center; /* Espaço entre as imagens */
    gap: 5px; /* Adiciona um espaço entre as imagens */
    width: 100%; /* Garante que o container ocupe toda a largura disponível */
    margin: 0 auto; /* Centraliza o container horizontalmente */
}

/* Estilos para a imagem do PC */
.pc {
    width: 65%; /* Ajuste a largura conforme necessário */
    max-width: 720px; /* Define uma largura máxima */
    height: 110px; /* Ajuste a altura conforme necessário */
    background-size: contain; /* Garante que a imagem caiba dentro do container */
    background-repeat: no-repeat;
    background-position: center;
    
}

/* Estilos para a imagem do Celular */
.cell {
    width: 35%; /* Ajuste a largura conforme necessário */
    max-width: 240px; /* Define uma largura máxima */
    height: 210px; /* Ajuste a altura conforme necessário */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Estilos para a seção de feedbacks */
#feedbacksClientes {
    width: 100%; /* Garante que a seção ocupe toda a largura */
}

#feedbacks {
    display: flex;
    flex-direction: column; /* Alinha os feedbacks em coluna */
    align-items: center; /* Centraliza os itens horizontalmente */
    width: 100%; /* Garante que o container ocupe toda a largura */
}

#feedbacks .feedback {
    display: flex;
    flex-direction: column; /* Coloca a imagem e o texto em coluna no mobile */
    align-items: center; /* Centraliza os itens horizontalmente no mobile */
    width: 90%; /* Largura do feedback no mobile */
    margin-bottom: 20px; /* Espaçamento inferior entre os feedbacks */
    text-align: center; /* Centraliza o texto */
}

#feedbacks .feedback img {
    width: 80%; /* Largura da imagem no mobile */
    max-width: 300px; /* Largura máxima da imagem */
    margin-bottom: 10px; /* Espaço entre a imagem e o texto no mobile */
    border-radius: 50%; /* Mantém a imagem arredondada */
}

#feedbacks .feedback p {
    margin: 10px; /* Espaçamento ao redor do texto */
}

/* Estilos para a seção Sobre Mim */
#sobreMim {
    width: 100%;
}

#sobre {
    display: flex;
    flex-direction: column; /* Coloca a imagem e o texto em coluna no mobile */
    align-items: center; /* Centraliza os itens horizontalmente no mobile */
    padding: 20px;
}

#sobreMim #sobre img {
    width: 80%;
    max-width: 300px;
    border-radius: 50%;
    margin-bottom: 10px;
}

#sobreMim #sobre p {
    margin: 10px;
    text-align: center;
}

/* Media query para telas maiores */
@media (min-width: 767px) {

    #profile{
        border-radius: 50%;
        width: 30%;
    }

    .projeto{
        width: 40%;
    }

    .nav-item a{
        margin: 20px;
    }

    #fotoSilvio{
        border-radius: 50%;
    }

    #sobre {
        flex-direction: row; /* Coloca a imagem e o texto em linha no desktop */
        align-items: flex-start; /* Alinha os itens ao topo no desktop */
    }

    #sobreMim #sobre img {
        width: 30%;
        max-width: 200px;
        margin-right: 20px;
        margin-bottom: 0;
    }

    #sobreMim #sobre p {
        text-align: left;
    }

    .pc {
        width: 50%; /* Ajuste a largura conforme necessário */
        max-width: 1200px; /* Define uma largura máxima */
        height: 110px; /* Ajuste a altura conforme necessário */
    
    }
    .cell {
        width: 30%; 
        max-width: 1000px; 
        height: 210px; 
    }

    .telas{
        flex-direction: row;
    }
}





