.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 40px 100px;
}

.hero-header {
    max-width: 800px;
    margin-bottom: 20px;
}

.hero-header h1 {
    margin-top: 10px;
    color: #ffffff;
    font-size: 2em;
    line-height: 1.2;
}

.hero-header span.vagas-abertas {
    color: #ff6347;
    font-weight: bold;
    font-size: 1.2em;
    text-shadow: 0 0 5px #ff6347, 0 0 10px #ff6347;
}

.hero-header p s {
    color: #cccccc;
    font-size: 0.9em;
    opacity: 0.7;
    text-decoration: line-through;
}

.vagas-timer {
    margin: 20px 0;
    color: #ff6347;
    font-weight: bold;
    font-family: "Arial", sans-serif;
}

/* Mobile-first design */
@media (max-width: 768px) {

    .hero-section {
        padding: 20px;
    }

    .hero-header h1 {
        font-size: 1.5em;
    }

    .hero-header span.vagas-abertas {
        font-size: 1em;
    }

}