#hero {
    background-image: url('/assets/images/fondo-hero.webp');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    padding: 120px 64px;
}

#hero .container {
    padding-inline: 80px;
}

#hero .hero-content {
    padding: 24px;
    background-color: rgba(247, 115, 43, 0.82);
    border-radius: 20px;
}

#hero .hero-content-header{
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

#hero .hero-content-header span {
    display: block;
    font-size: 32px;
}

#hero .hero-content-header img {
    flex: none;
    aspect-ratio: 1;
    height: 56px;
    width: 56px;
    border-radius: 100%;
}

#hero form{
    display: flex;
    flex-direction: row;
    gap: 16px;
}

#hero form .form-group{
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#hero form .form-group input[type=search]{
    padding: 14px 24px 14px 56px;
    border-radius: 12px;
    font-size: 16;
    border: none;
    width: 100%;
}

#hero form .form-group input[type=search]::placeholder{
    color: #00000040;
}

#hero form .form-group select{
    width: 100%;
}

#hero form .form-group .form-control{
    margin-top: 0;
    height: 50px;
    border-radius: 12px !important;
    padding-left: 56px;
}

#hero #selectLocation {
    width: 100%;
    height: 50px;
    border-radius: 12px;
}

#hero form .form-group i{
    position: absolute;
    left: 24px;
    color: #00000040;
}

#hero form button{
    padding-inline: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
}

#hero form button i {
    font-size: 16px;
}

@media (max-width : 1024px){
    #hero {
        padding: 80px 32px;
    }
    #hero .container {
        padding-inline: 0;
    }
}

@media (max-width : 767px){
    #hero {
        padding: 64px 16px;
    }
    #hero .container {
        padding-inline: 0;
    }
    #hero .hero-content-header{
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: -56px;
        margin-bottom: 12px;
    }
    #hero .hero-content-header img {
        height: 64px;
        width: 64px;
    }
    #hero .hero-content-header span {
        font-size: 26px;
    }
    #hero form{
        flex-direction: column;
        gap: 16px;
    }
    #hero form button{
        width: 100%;
    }
}