body {
    background-color: rgb(15, 15, 15);
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(24, 24, 24);
    padding: 10px 20%;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.74);
    position:relative;
}

ul {
    display: flex;
    list-style: none;
    gap: 50px;
}

a {
    font-size: 25px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #ffb84e;
}

.logomenu {
    max-width: 150px;
    width: 100px;
    margin: 10px;
}

.titulo-pagina {
    padding-top: 2%;
    font-size: 50px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    text-align: center;
}

.pagina-ativa {
    color:#ffb84e;
    border-bottom: 2px solid #ffb84e;
    border-radius: 2px;
}

.secao-destaque{
    background-image: url(assets/destaquebanner.jpg);
    background-size: cover;
    text-align: center;
    color: white;
    padding-bottom: 4%;
}

.desc-secao {
    font-size: 40px;
    margin-top: 4%;
}

.desc-secao2 {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 40px;
    margin-top: 3%;
    margin-bottom: 5%;
    text-shadow: 0 0 40px rgb(255, 255, 255);
}

.destaque-desconto {
    font-weight: 600;
    border-bottom: 2px solid white;
    text-shadow:
    0 0 5px rgba(255, 255, 255, 0.377),
    0 0 10px rgba(255, 255, 255, 0.185),
    0 0 20px rgba(255, 255, 255, 0.199);
}

.saiba {
    padding: 10px 20px;
    background-color: rgb(211, 137, 27);
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    border-radius: 5px;
    box-shadow: 0 0 18px black;
}

.saiba:hover {
    background-color: rgb(184, 119, 23);
    border-color: rgb(255, 166, 33);
    color: white;
    text-shadow:
    0 0 1px rgba(255, 255, 255, 0.575),
    0 0 2px rgba(255, 255, 255, 0.377),
    0 0 5px rgba(255, 255, 255, 0.438);
    box-shadow: 
    0 0 1px rgb(255, 166, 33),
    0 0 10px rgb(255, 166, 33),
    0 0 15px rgb(255, 166, 33);
}

.cards-container {
    display:flex;
    justify-content:space-evenly;
}

.titulo-cards {
    text-align: center;
    margin: 3%;
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
}

.box-cards {
    justify-items: center;
    text-align: center;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
}

button {
    background-color: rgb(39, 172, 22);
    padding: 2%;
    padding-inline: 3%;
    border-radius: 5px;
    font-size: 15px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    border-color: transparent;
    margin-top: 2rem;
    color: white;
    box-shadow: 0px 0px 10px rgb(94, 221, 100, 0.3);
}
.box-cards {
    align-items: center;
}

.sub-menu{
    display:block;
    position: absolute;
    text-align: center;
    background-color: rgb(24, 24, 24);
    visibility: hidden ;
}

.listasub {
    display:block;
    align-items: center;
}

.subtext {
    padding: 10px;
}

.sub-menu:hover{
    visibility:visible;
}