.contenedor-hero {
    background-image: url(../img/hero-mobile.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.hero {
    padding: 5rem 0 7rem 0;
    display: grid;
    gap: 5rem;

}

@media (min-width: 768px) {

    .hero {
        padding: 6rem 0 8rem 0;
        grid-template-columns: 7fr 2.5fr;
        align-items: center;
    }

}

@media (min-width: 1024px) {
    .contenedor-hero {
        background-image: url(../img/hero.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .hero {
        padding: 13rem 0 16rem 0;
        grid-template-columns: 7fr 2.5fr;
        align-items: center;
    }

}

/* ----------Hero texto------------ */
.hero-texto {}

.hero-titulo {
    color: var(--color-blanco);
    font-size: 3.5rem;
    font-weight: 600;
    margin: .5rem auto 3rem auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);

}

.hero-subtitulo {
    color: var(--color-blanco);
    font-size: 1.4rem;
    font-weight: 600;
    padding: .6rem 2rem;
    border-radius: 2rem;
    display: inline-block;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background: linear-gradient(113deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.00) 110.84%);

    /* Main Blur Effect */
    backdrop-filter: blur(21px);
}

@media (min-width: 1024px) {
    .hero-titulo {
        font-size: 5.5rem;
    }

    .hero-subtitulo {
        font-size: 1.5rem;

    }

}


/* ----------Hero Formulario------------ */
.tracking {
    min-width: 30rem;
    padding: 3rem 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background: linear-gradient(112deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.00) 99.06%);
    backdrop-filter: blur(7.5px);
}

.hero-tracking__titulo {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    justify-content: center;

}

.hero-tracking__titulo h2 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--color-blanco);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);

}

.hero-tracking__titulo img {
    width: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);

}


.trk-label span {
    display: block;
    font-size: 1.4rem;
    color: var(--color-blanco);
    font-weight: 600;
    margin-bottom: .5rem;
    margin-top: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.trk-input {
    display: block;
    padding: 1rem 1rem 1rem 3.5rem;
    font-size: 1.6rem;
    height: 4rem;
    color: #fff;
    width: 100%;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);

    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.60);
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.20) -6.44%, rgba(255, 255, 255, 0.05) 109.98%);
    backdrop-filter: blur(21px);
}

.trk-input.n-orden {
    background-image: url(../img/iconos/orden.svg);
    background-repeat: no-repeat;
    background-position: 1rem center;
    background-size: 1.6rem;
}

.trk-input.codigo {
    background-image: url(../img/iconos/codigo.svg);
    background-repeat: no-repeat;
    background-position: 1rem center;
    background-size: 1.6rem;
}

.trk-input::placeholder {
    color: #fff;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.trk-input:active,
.trk-input:focus {
    outline: none;
    box-shadow: none;
    border-color: inherit;

}

.tracking .boton {

    margin: 2rem auto 0 auto;
}