*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html 
{
  scroll-behavior: smooth;
  scroll-padding: 85px;
}


.site
{
    background-color: #F8F5F2 ;
    font-family: "DM Serif Display", serif;
    color: #1F2937;
    margin-top: 50px;
}

.nav
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #8B0000;
    color: #F8F5F2;
    padding: 15px;
    margin-bottom: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}


.menu
{
    list-style: none;
    display: flex;
    gap: 15px;
    color: #F8F5F2;
}


.menu a:hover
{
    background-color: #D97706;
    transform:scale(1.10);
    transition: 0.5s ease;
}

a
{
    text-decoration: none;
    color: #F8F5F2;
    font-weight: 500;
    border-radius: 10px;
    padding: 6px 12px;
    
}




#inicio 
{
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../img/background.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 60vh;
    color: white;

    display: flex;
    flex-direction: column;
}



.h1 {
    margin: auto;
    font-size: 70px;
    color: transparent;
    -webkit-text-stroke: 1.5px #F8F5F2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.6);
    letter-spacing: 6px;
}


.sobre
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    width: 90%;
    margin: 150px auto;
    color: #D97706;
}

.sobre p
{
    background-color: #1F2937;
    border: 3px solid #8B0000;
    border-radius: 10px;
    color: #F8F5F2;
    box-shadow: 3px 10px 15px rgba(0, 0, 0, 0.3);
    padding: 20px 40px;
    margin-top: 25px;
}

.btn
{
    margin-top: 20px;
    background-color: #8B0000;
    border-radius: 10px;
    box-shadow: 3px 10px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover
{
    background-color: #D97706;
    transform: scale(1.10);
    transition: 0.5s ease;
}

.galeria
{
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #D97706;
}

.galeria h3
{
    color: #1F2937;
}

.galeria ul
{
    display: flex;
    gap: 15px;
    list-style: none;
    max-width: 700px;
    width: 90%;
    overflow-x: scroll;
    box-shadow: 3px 10px 15px rgb(0, 0, 0, 0.3);
}

.beneficios
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 150px auto;
    gap: 20px;
    color: #D97706;

}

.beneficios h3
{
    color: #1F2937;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.beneficios p
{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    width: 90%;
    padding: 12px 16px;
    border: 3px solid #8B0000;
    border-radius: 10px;
    background-color: #1F2937;
    color: #F8F5F2;
    box-shadow: 3px 10px 15px rgb(0, 0, 0, 0.3);
    margin: auto;
}

.footer
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer h2
{
    color: #D97706;
}

.contato
{
    display: flex;
    gap: 5px;
    list-style: none;
}

@media (max-width: 768px) {

    .h1 {
        font-size: 32px;
        letter-spacing: 2px;
        text-align: center;
        padding: 0 10px;
    }

    html
    {
        scroll-padding: 225px;
    }
    .site
    {
        justify-content: center;
        align-items: center;
    }

    .menu {
        flex-direction: column;
        gap: 5px;
    }

    .galeria ul {
        gap: 10px;
    }

    .galeria img {
        width: 150px;
        height: 150px;
    }

    .sobre
    {
        text-align: center;
    }

    .beneficios 
    {
        text-align: center;
    }

    .beneficios h3
    {
        text-align: center;
    }

    .beneficios p 
    {
        text-align: center;
    }

    .footer p 
    {
        text-align: center;
    }
}