.iniciar {
    height: 38px;
    display: flex;
    gap: 20px;
}

.iniciar button + button {
    background-color: #475569;
    color: white;
}

.iniciar button:first-child {
    background-color: #103458;
    color: #1173D4;
}

.iniciar button:hover {
    filter: brightness(1.1);
}

.iniciar a {
    color: #1173D4;
}

button:active {
    transform: scale(.95);
}

main {
    position: relative;
}

main .heroImage {
    width: 100%;
    position: absolute;
    opacity: 25%;
    z-index: -1;
    mask-image: linear-gradient(to bottom, #101922 5%, #10192200 70%);
}

.hero {
    padding-top: 170px;
    text-align: center;
    height: calc(100vh - 96px);
}

h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 16px;
}

h1 + p {
    margin-bottom: 48px;
    font-weight: 400;
    font-size: 1.2rem;
    color: #cbd5e1;
}

form {
    padding-inline: 15px;
    background-color: #1E293B;
    max-width: 672px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 11px;
    border-radius: 8px;
    gap: 30px;
}

form img {
    margin-left: 15px;
}

form input {
    background-color: transparent;
    flex: 1;
    font-size: 16px;
    color: white;
    outline: none;
    border: none;
}

input::placeholder {
    padding-left: 11px;
    color: #94a3b8;
    font-size: 16px;
}

form button {
    padding: 15px 25px;
    background-color: #0099ff;
    font-size: 16px;
}

.devjobs {
    text-align: center;
    margin-top: 96px;
    padding-inline: 40px;
}

.devjobs h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.devjobs p {
    font-size: 20px;
    max-width: 672px;
    margin: 0 auto;
    color: #94a3b8;
}

.recuadro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
}

.recuadro p {
    font-size: 16px;
}

.recuadro > div {
    background-color: #1e293b;
    border-radius: 16px;
    width: 400px;
    padding: 32px 48px;
}

.recuadro h3 {
    margin: 15px 0;
}

.recuadro img {
    background-color: #1B3759;
    width: 64px;
    padding: 16px;
    border-radius: 50%;
}