html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    list-style: none;
    font-family: LouisGeorge;
    font-size: 18px;
}


.menu-imagem {
    display: none;
}

.cabecalho {
    display: flex;
    position: fixed;
    width: 100%;
    top: 0;
    padding: 30px 50px;
    /* background-color: #CD853F;*/
    background-color: #823F00;
}

.menus {
    width: 20%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contato-style {
    color: aliceblue;
    gap: 0 20px;
    /* font-family: Didot; */
    font-family: LouisGeorge;
    font-size: 35px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px;
    /* text-shadow: 4px 3px 0 #7A7A7A; */   
}

.contato-style:hover {
    color: black;
}

.menu-search {
    display: flex;
    flex-direction: row;
    width: 25%;
    margin-left: auto;
    align-items: stretch;
}

.search-bar {
    padding: 10px 50px;
    border: 1px solid gray;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    border: none;
}

.search-icon-div {
    background-color: #F5F5DC;
    align-items: center;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border: none;
    cursor: pointer;
}

.search-icon {
    max-height: 40px;
    max-width: 40px;    
    align-self: center;
    align-content: center;
    margin-top: 10%;
}

.presentation {
    margin: 7vw 0 0vw 0;
    align-items: center;
}

.titulo {
    font-size: 60px;
    text-align: center;
    font-family: Agbalumo;
    text-shadow: 1px 0px 1px #CCCCCC, 0px 1px 1px #EEEEEE, 2px 1px 1px #CCCCCC, 1px 2px 1px #EEEEEE, 3px 2px 1px #CCCCCC, 2px 3px 1px #EEEEEE, 4px 3px 1px #CCCCCC, 3px 4px 1px #EEEEEE, 5px 4px 1px #CCCCCC, 4px 5px 1px #EEEEEE, 6px 5px 1px #CCCCCC, 5px 6px 1px #EEEEEE, 7px 6px 1px #CCCCCC;
}

.logo {
    display: flex;
    max-height: 400px;
    max-width: 400px;
    border-radius: 30px;
    margin:auto;
    width: 40%;
    align-self: center;
}

.upper-body {
    width: 100%;
    padding: 0 0 20px 0;
    background-image: url(../images/icons/background.png);
    fill-opacity: 70%;
    /* background-color: #FFE4C4; */
    margin: auto;
    background-repeat: repeat;
}

.container  {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    width: 100%;
    margin: auto;
    column-gap: 30px;
    justify-content: center;
}

.item {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 20px 0;
    border-radius: 10px;
}

/* .item:hover {
    animation: items-animation 0.5s forwards;
} */

.product-image {
    width: 250px;
    height: 300px;
}


.product-title {
    margin-top: 8px;
    color: black;
    font-weight: bolder;
    font-size: larger;
}

.description {
    margin-top: 4px;
}

.tamanho {
    margin-top: 10px;
    text-align: center;
}

.tamanhos {
    margin: auto;
    width: 100%;
    padding: 3px;
    border-radius: 6px;
    text-align: center;
}

.value {
    margin-top: 5px;
    font-size: 25px;
    font-weight:bolder;
}


.reservar-button {
    background-color: #823F00;
    cursor: pointer;
    margin-top: 10px;
    padding: 10px 15px;
    font-family: Didot;
    font-size: 20px;
    color: white;
    border: none;
    border-radius: 50px;
}

.reservar-button:hover {
    color: black;
}

.grid-reservas {
    display: grid;
    grid-template-columns: auto auto auto;
    margin: auto;
}

.reservas-container {
    display: none;
    height: 600px;
    width: 300px;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9;
}

.reservas-container-show {
    display: flex;
    margin-right: 40.5%;
    margin-left: auto;
    margin-bottom: 10%;
}

.form-container {
    /* min-height: 580px;
    min-width: 300px;
    max-width: 300px; */
    padding: 10px;
    background-color: white;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

.titulo-reserva {
    text-align: center;
    padding: 10px;
    font-size: 20px;
}

.form-subjects {
    gap: 10px 0;
}

.reserva-quantidade {
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 10px 0;
}

#tamanhos {
    gap: 30px;
}

#qtdade-title {
    margin-top: 20px;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}


.footer-p {
    text-align: center;
}