header{
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

header .content h4{
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1rem;
    font-weight: 600;
}

header .content h1{
    color: #fff;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
}

header .content h1 span{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke:  1px #fff;
}

header .content p{
    margin-bottom: 2rem;
    color: #ccc;
}


section .header{
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 500;
}


.sub-header{
    max-width: 600px;
    margin: auto;
    text-align: center;
    color: #ccc;
}

@media (width < 900px){
    .header{
        grid-template-columns: repeat(1, 1fr);
        padding: 1rem; /* Ajusta o padding para telas menores */
    }
}


@media (width < 600px){
    header .content h1 {
        font-size: 2rem; /* Diminui o tamanho do título */
    }

    header .content p {
        font-size: 1rem; /* Ajusta o tamanho da descrição */
    }
    header .image::before{
        display: none;
    }
    header .content h1 span {
        font-size: 2rem; 
    }
}

/* Para telas pequenas (mobile) */
@media (max-width: 768px) {
    header {
        grid-template-columns: 1fr; /* Muda para uma coluna no mobile */
        grid-template-rows: auto auto; /* Duas linhas, uma para o conteúdo e outra para a descrição */
        padding-top: 2rem;
    }

    /* Fazendo com que o conteúdo fique acima */
    header .content {
        order: 1; /* Coloca o conteúdo na parte superior */
    }
}

.update-list h2{
    color: #fff;
    margin-bottom: 1.5rem;
}

#update-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 5rem;
}

#update-list li {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ícone antes da atualização */
#update-list li::before {
    content: "•";
    margin-right: 15px;
    color: #f39c12;  /* Cor de destaque */
    font-size: 1.5rem;
}

/* Efeito hover */
#update-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

#update-list li:hover::before {
    color: #e67e22; /* Cor de destaque ao passar o mouse */
}