body{
    text-align: center;
    font-family: Open Sans, sans-serif;
    background-color: #d5c7cf;
    color: #455d6d;
    margin: 0px 0px 30px 0px;
}

h1{
    font-size: 60px;
    font-weight: 300;
}

h2{
    color: #858382;
    font-size: 40px;
}

h3{
    font-size: 22px;
    font-style: italic
}

p{
    font-size: 20px;
    line-height: 1.5;
}

.titulo-rosa{
    color: #e87e9c;
}

.titulo-vermelho{
    color: #FF9E9E;
}

.titulo-sazonal{
    color: red;
}

section{
    width: 60%;
    margin: 0 auto;
}

section section{
     width:100%;
}

img{
    width: 100%;
}

ul{
    list-style-type: none;
    line-height: 2;
    padding-left: 0;
}

a{
    text-decoration: none;
    color: #25D366;
    font-weight: 700;
    font-family: Open Sans, sans-serif;
    margin: 0px 0px 30px 0px;
}


.principal{
   background: #e68da2;
   height: 50px;
   max-width: 60%;
   margin: 0 auto;
   display: flex;
   justify-content: center;
   align-items: center
 }

.principal a{
   color: #fff;
   font-weight: normal;
   text-decoration: underline;
 }

 .principal li{
    display: inline-block;
    margin: 0 40px;
 }

button{
    padding: 2px 20px;
    background: #41f341;
    border: solid 1px transparent;
    border-radius: 3px;
    cursor: pointer;
 }

.whatsapp-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 0;
    border: none;

}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    border: none;
    vertical-align: middle; 
}

@media (max-width: 600px) {
        section {
            width: 90%;
        }

        .principal {
            width: 100%;
            max-width: 100%;
            height:auto;
            padding: 15px 0;
            margin-bottom: 40px;
        }

        .principal li {
            display:block;
            margin: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }

    button {
        padding: 15px;
        width: 100%;
        font-size: 18px;
        margin-top: 20px;
    }

    h1 { 
        font-size: 38px;
        line-height: 1.1; 
    }
    
    h2 {
        font-size: 28px;
    }
}


.galeria-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.galeria-menu img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (min-width: 800px) {
   .galeria-menu {
       display: grid;
       grid-template-columns: repeat(4, 1fr); 
       gap: 20px;
   }
}