    html,body {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw; /*que a largura seja o máx do navegado*/
    padding: 0;
    margin: 0;
    }
    
    body {
        background: rgb(235, 226, 203);
        background: linear-gradient(90deg, rgb(235, 226, 203,1) 0% rgba(229, 195, 143, 0.801)100%);
    }
    .nav-bar {
        background-color: #ff6464;
        height: 60px;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        text-decoration: none;
    }
    
    a {
        color: inherit; /* Usa a cor do elemento pai */
        text-decoration: none; /* Remove o sublinhado */
    }

      Tag :hover {
        color: pink; /* mudar a Cor ao passar o mouse */
      }

    main {
        margin-top: 60px; /*para a main não ficar aculta na nav*/
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 100vh;
    } 
    
    .menu {
        display: flex;
        justify-content:center;
        gap: 30px; /* espaçamento dos icones do menu*/
        list-style: none; /* o estilo da lista n terá nenhum caractere*/
    
    }
    
    .hero-section {
        max-width: 900px; /*a largura máxima q o conteúdo terá*/
        margin: 0 auto; /* "0" centraliza em cima/baixo e "auto" da esquerda/direita*/
        background-color:#ff646456;
        padding: 50px 20px;
    }
    
    .hero-container {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 4px; 
        width: 100%;
        flex-wrap: wrap;
    }
    
    img {
        mix-blend-mode: darken; /*removee fundo da img*/
    }
    
    .hero-text {
        width: 50%;
    }
    
    .hero-text > h1 {
        font-size: 2em;
        color: #282938;
    }
    
    .hero-text > h1 > span {
        color: #ff6363;
    }
    
    .hero-text > p {
        margin: 20px 0;
        color: #1c1e53;
    }
    
    .button-group {
        display: flex;
        align-items: center;
        justify-content: space-around;
       
    }
    
    .btn {
        border: 1px solid #ff6464;
        color: #ffffff;
        border-radius: 5px;
        /*width: 180px;*/
        /*height: 40px;*/
        padding: 10px 40px;
        background-color: #ff6464;
    
    }
    
    .btn-github {
        color: #ff6464;
        border-radius: 5px;
        /*width: 180px;*/
        /*height: 40px;*/
        padding: 10px 40px;
        background-color: #ffffff;
        border-color: #ff6464;
    }
    
    .hero-image > img {
        
        width: 300px; /* Largura fixa */
        border-radius: 50%; /* Torna a imagem circular */
    }
    
    .section-formacoes {
        padding: 50px 20px;
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    h2 {
        font-size: 32px;
        color: #ff6464;
        margin-top: 60px;
        margin-bottom: 20px;
    }
    
    .list-formacao {
        list-style: none;
    }
    
    .formacao-itens {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-bottom: 1px solid #bebebe;
        padding: 30px 0;
    }
    
    .sobre-mim {
        max-width: 900px; 
        margin: 0 auto; 
        padding: 50px 20px;
        background-color: #ff646456;
    }
    
    .sobre {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px; 
    }
    
    .mim {
        max-width: 50%;
    }
    
    .mim > h2 {
        color: #ff6363;
    }
    
    .mim  > p {
        margin: 20px 0;
        color: #1c1e53;
    }
    
    .hero-image-sobre > img {
        width: 300px; /* Largura fixa */
        border-radius: 50%; /* Torna a imagem circular */
    }

    .rodape {
        height: 70px;
        width: 100%;
        background-color:#ff6364;
    }
    
    .icones {
        display: flex;
        justify-content: center;
        gap: 20px;
        list-style: none;
    
    } 