@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    color: white;
    list-style: none;
    line-height: 1.5;
    font-weight: 400;
    color: black;
}

a:link {
    text-decoration: none;
  }
  
  a:visited {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  a:active {
    text-decoration: none;
  }

html {
    background-color: rgba(0, 0, 0, 0.05);
    -ms-overflow-style: none;  /* Internet Explorer and Edge */
    scrollbar-width: none;  /* Firefox */
}

::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

body {
    background-color: white;
    max-width: 1024px;
    margin: auto
}

header div {
    height: 100%;
}

header nav {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

#logo {
    margin-left: 15px;
    height: 40px;
    cursor: pointer;
}

#menuButton {
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
}

#menuList {
    display: none;
    text-align: end;
    border-radius: 0 0 10px 10px;
    margin-right: 15px;
    padding-bottom: 15px;
    cursor: pointer;
}

#menuList.active {
    display: block;
}

#menuList li {
    line-height: 2;
    font-weight: 500;
}

#menuList a {
    line-height: 2;
    font-weight: 500;
}

main {
    text-align: center;
}

#hero img {
    padding: 15px;
    width: 95%;
    border-radius: 30px;
}

#hero h1 {
    padding: 15px;
    text-align: center;
    font-size: 1.5em;
}

#hero img {
    padding: 15px;
    width: 100%;
}

#images img {
    padding: 15px;
    width: 75%;
}

#images img:last-child {
    padding: 15px;
    width: 100%;
}

@media only screen and (min-width: 768px) {
    #images img {
        width: 50%;
    }
    #images img:last-child {
        width: 70%;
    }
}

#catalogo {
    padding: 30px;
    border: solid 1px #555555;
    margin: 30px;
    border-radius: 15px;
}

#catalogo h1 {
    font-weight: bold;
    font-size: 1.5em;
}

#catalogo button {   
    color: black;
    background-color: white;
    margin: 15px;
    padding: 5px;
    border: solid #FFC700;
    width: 170px;
    line-height: 2;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.1em;
}

table {
    margin: auto;
    border-collapse:collapse;
    font-size: 0.5em;
}

table th {
    padding: 10px;
    border: solid 1px #555555;
    font-weight: 500;
}

table td {
    padding: 10px;
    border: solid 1px #555555;
}

#whatsapp {
    width: 50%;
}

.servicos article {
    margin-top: 30px;
    margin-bottom: 100px;
}

.servicos article:last-child {
    margin-bottom: 30px;
}

.servicos h1 {
    font-weight: bold;
    font-size: 1.5em;
}

.servicos article img {
    width: 100%;
    padding: 15px;
}

@media only screen and (min-width: 768px) {
    .servicos article img {
        width: 50%;
    }
}

.servicos article p {
    font-size: 1.5em;
    font-weight: 500;
    color: black;
    text-align: center;
}

footer {
    background-color: #FFC700;
    color: black;
    padding: 30px;
    font-size: 1em;
    text-align: center;
}

footer h1 {
    font-weight: 500;
    font-size: 1em;
}

dialog {
    overflow: auto;
    overscroll-behavior: contain;
    background-color:lightyellow;
    margin: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border: rgba(0, 0, 0, 0.1) solid 1px;
    line-height: 1.5;
    text-align: justify;
    font-size: 0.85em;
  }
  
  dialog div {
    height: 50px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: lightyellow;
    position: sticky;
    top: 0;
  }
  
  dialog div h1 {
    font-size: 1.5em;
    font-weight: bold;
  }
  
  .buttonCloseModal {
    width: 15px;
    cursor: pointer;
  }


