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

body{

}

ul, ol, li{
    list-style: none;
}

header{
    height: 120px;
    width: 100%;
}

.div-header{
    display: flex;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    align-items: center;
    padding: 0 4rem 0 2rem;
    background-color: #131921;
}

.div-header img{
    width: 110px;
    height: 60px;
    object-fit: cover;
}

#barra-pesquisa{
    width: 400px;
    height: 35px;
    padding: 8px;
}

#botao-pesquisar{
    width: 60px;
    height: 35px;
}

.div-header span{
    padding: 8px 16px;
    color: white;
}

.sub-header ul{
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 0px 30px;
    background-color: #232f3d;
    color: white;
}

#quadro-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    background-color: #f3f3f3;
    gap: 2rem;
    padding: 2rem;
}

.cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cards img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.cards span {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

.cards h1 {
    font-size: 1rem;
    font-weight: normal;
    color: #555;
    line-height: 1.4;
}

.cards p:nth-of-type(1) {
    color: #d32f2f;
    font-size: 1.2rem;
    font-weight: bold;
}

.cards p:nth-of-type(2) {
    color: #fbc02d;
    font-size: 0.9rem;
}

.cards p:nth-of-type(3) {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}