.banner {
    width: 100%;
    aspect-ratio: 12 / 5;
    margin: 0 auto 0px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left,
            #075123,
            rgba(0, 0, 0, 0.45));
    pointer-events: none;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: end;

    padding: clamp(16px, 4vw, 60px);
    padding-left: clamp(25%, 40vw, 45%);
}

.banner-overlay h1 {
    color: #FFFDFD;
    font-size: clamp(32px, 6vw, 96px);
    line-height: 1.1;
    margin: 0 0 12px 0;
}

.banner-overlay p {
    color: #eeeaea;
    font-size: clamp(14px, 1.6vw, 28px);
    line-height: 1.5;
    margin: 0;
}

#section_limits {
    z-index: 2;
    background-color: #075123;
    text-align: center;
    position: relative;
    height: 20px;
}

#services_title {
    display: inline-block;

    background: radial-gradient(#1A9D2A, #107C5F);
    color: #eeeaea;

    font-size: clamp(24px, 4vw, 40px);
    padding: 12px 36px;

    border-radius: 999px;

    position: relative;
    transform: translateY(-50%);

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}


#services_bg {
    position: relative;
    z-index: 1;

    background:
        url('/assets/photos/WhatsApp Image 2025-12-03 at 15.17.212.jpeg'),
        url('/assets/photos/WhatsApp Image 2025-12-03 at 15.00.25.jpeg');

    background-size:
        50% 100%,
        50% 100%;

    background-position:
        left center,
        right center;

    background-repeat: no-repeat;

    padding: 60px 20px;
}

@media (max-width:699px) {

    #services_bg {
        background:
            url('/assets/photos/WhatsApp Image 2025-12-03 at 15.17.212.jpeg');

        background-size:
            100% 100%;

        background-position:
            center center;
    }
}

#services_container {
    max-width: 1000px;
    margin: 0 auto;

    background: rgba(255, 244, 244, 0.651);
    padding: 32px;
    border-radius: 14px;

    text-align: center;
}

.service_badges {
    background-color: #eeeaea;
    padding: 5px;
    border-radius: 10px;
    margin: 0px 5px 5px 0px;
    justify-items: center;
}

#services_container h3 {
    font-family: 'open-sans-regular', sans-serif;
    color: #075123;
    font-size: 20px;
}

#services_container p {
    font-size: 20px;
}

#guincho_link {
    text-decoration: none;
    color: #000;
    /* font-weight: bold; */
}

#guincho_badge {
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

#guincho_badge:hover {
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #267905;
}