* {
    box-sizing: border-box;
}

.header_box_16_9_wrapper {
    margin: 0;
    min-height: 100vh;
    font-family: "Roboto", sans-serif;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_box_16_9 {
    width: 90%;
    aspect-ratio: 2 / 1;
    border-radius: 10px;
    overflow: hidden;
    background-image: url("/images/sfondo.png");
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-color: #f8f8f8;
}

.header_left_fade_panel {
    width: 60%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, #f8f8f8 0%, #f8f8f8 62%, rgba(248, 248, 248, 0) 100%);
}

.header_orange_border_box {
    width: 50%;
    border: 1px solid #f9790f;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_orange_border_box p {
    margin: 0;
    text-transform: uppercase;
    color: #f9790f;
    font-weight: 700;
}

.header_promo_line_1 {
    font-size: 16px;
}

.header_promo_line_2 {
    font-size: 15px;
    color: #082758;
}

.header_promo_date {
    color: #f9790f;
}

.header_promo_calendar_icon {
    color: #f9790f;
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}

.header_hero_title {
    margin: 18px 0 0;
    color: #082758;
    font-size: 64px;
    line-height: 1.03;
    font-weight: 700;
}

.header_hero_title span {
    color: #1b9124;
}

.header_hero_title_line {
    width: 100px;
    height: 5px;
    background: #f9790f;
    border-radius: 999px;
    margin-top: 14px;
}

.header_hero_description {
    margin: 14px 0 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    color: #082758;
}

.header_hero_highlight {
    color: #1b9124;
}

.header_hero_features {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.header_hero_feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 16px;
}

.header_hero_feature + .header_hero_feature {
    border-left: 1px solid #d8dee8;
    padding-left: 16px;
}

.header_hero_feature_icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.header_hero_feature_icon--blue {
    background: rgba(8, 39, 88, 0.12);
    color: #082758;
}

.header_hero_feature_icon--green {
    background: rgba(27, 145, 36, 0.12);
    color: #1b9124;
}

.header_hero_feature_icon--orange {
    background: rgba(249, 121, 15, 0.12);
    color: #f9790f;
}

.header_hero_feature_text {
    color: #082758;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.header_hero_cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 32px;
    padding: 14px 20px;
    width: 37.5%;
    align-self: flex-start;
    background: #1b9124;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
}

.header_hero_cta_icon {
    font-size: 22px;
    flex-shrink: 0;
}

.header_hero_cta_text {
    flex: 1;
}

.header_hero_cta_arrow {
    font-size: 22px;
    font-weight: 400;
    flex-shrink: 0;
}

.header_hero_cta:hover {
    background: #f9790f;
}
@media (max-width: 1170px) {
    body {
        align-items: flex-start;
        padding: 12px 0;
    }

    .header_box_16_9 {
        width: 95%;
        aspect-ratio: auto;
        min-height: 620px;
        background-size: cover;
        background-position: right center;
    }

    .header_left_fade_panel {
        width: 72%;
        padding: 18px;
        background: linear-gradient(to right, #f8f8f8 0%, #f8f8f8 72%, rgba(248, 248, 248, 0.2) 100%);
    }

    .header_orange_border_box {
        width: 64%;
    }

    .header_hero_title {
        font-size: 48px;
    }

    .header_hero_description {
        font-size: 16px;
    }

    .header_hero_features {
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .header_hero_feature + .header_hero_feature {
        border-left: none;
        padding-left: 0;
    }

    .header_hero_cta {
        width: 56%;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .header_box_16_9 {
        min-height: 700px;
    }

    .header_left_fade_panel {
        width: 100%;
        padding: 16px;
        background: linear-gradient(to right, #f8f8f8 0%, #f8f8f8 84%, rgba(248, 248, 248, 0.45) 100%);
    }

    .header_orange_border_box {
        width: 82%;
    }

    .header_promo_line_1 {
        font-size: 14px;
    }

    .header_promo_line_2 {
        font-size: 13px;
    }

    .header_promo_calendar_icon {
        font-size: 34px;
    }

    .header_hero_title {
        font-size: 40px;
        line-height: 1.06;
    }

    .header_hero_description {
        font-size: 15px;
        line-height: 1.4;
    }

    .header_hero_feature {
        width: 100%;
        padding-right: 0;
    }

    .header_hero_feature_text {
        font-size: 15px;
    }

    .header_hero_cta {
        width: 78%;
        font-size: 17px;
    }
}

@media (max-width: 520px) {
    .header_box_16_9 {
        width: 97%;
        min-height: 760px;
        border-radius: 8px;
    }

    .header_left_fade_panel {
        padding: 14px;
    }

    .header_orange_border_box {
        width: 100%;
        padding: 12px;
    }

    .header_hero_title {
        font-size: 34px;
    }

    .header_hero_description {
        font-size: 14px;
    }

    .header_hero_feature_text {
        font-size: 14px;
    }

    .header_hero_cta {
        width: 100%;
        font-size: 16px;
        padding: 12px 16px;
    }
}
