@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Substitua 100px pela altura real do seu menu fixo */
}

body {
    width: 100%;
    background: linear-gradient(to bottom, #FDF4EF, #C4A49B);
    /*background-color: rgb(244,220,210);*/
    overflow-x: hidden;
}
section{
    padding: 28px 8%;
}



#sobre_mim{
    width: 100vw;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    /*background: linear-gradient(to bottom, #C4A49B, #FDF4EF);*/
    
}

#servicos {
    display: flex;
    flex-direction: column;
    width: 100vw;
    box-sizing: border-box;
    /*background: linear-gradient(to bottom, #FDF4EF, #C4A49B);*/
    align-items: center;
    align-content: center;
    text-align: center;
}

#duvidas{
    /*background: linear-gradient(to bottom, #C4A49B, #FDF4EF);*/
}

#contato{
   /* background-color: #fff6f0;*/
}


.btn-default{
    border: none;
    display: flex; 
    align-items: center;
    justify-content: center;
    background-color: rgb(180,93,98,0.8);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: rgba(7, 7, 7, 0.76);
}

.btn-default a{
  text-decoration: none;    /* Remove o sublinhado */
  color: rgba(7, 7, 7, 0.76);           /* Substitua pela cor que você deseja */
}


.btn-default:hover{
    background-color: rgb(180,93,98,0.8);
}