/* Estilo automático para a página: beneficiario */
.swiper {
    padding: 10px !important;
    user-select: none;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;

    h2 {
        color: #5a5a5a;
        font-size: 32px;
        font-weight: 400;
    }
}

section.vantagens {
    background-color: #F5F5F5;
    padding: 55px 0;

    .card-atividade {
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        gap: 10px;
        background-color: #FFFFFF;
        border: 1px solid #E3E3E3;
        border-radius: 10px;
        box-shadow: 5px 5px 8px 0px #2C2C2C26;

        h3 {
            color: #5a5a5a;
            font-weight: 500;
            font-size: 18px;
            line-height: 100%;
        }

        p {
            color: #5a5a5a;
            font-size: 16px;
        }
    }
}

.form-container {
    padding: 36px 40px;
    background-color: #E54344;
    border: 1px solid #E3E3E3;
    box-shadow: 5px 5px 8px 0px #2C2C2C26;
    border-radius: 10px;

    p {
        color: #fff;
    }

    span {
        margin-bottom: 30px;
        color: #E54344;
        font-size: 16px;
        font-weight: 400;
    }

    form {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    @media (max-width: 992px) {
        .form-group label {
            display: none;
        }

        .form-group input::placeholder {
            color: #5A5A5A;
        }

        .form-local {
            flex-direction: column;
            gap: 30px;
            justify-content: space-between;

            button {
                flex: 1 1 auto;
            }
        }
    }
}

label {
    color: #FFFFFF;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;

    input,
    select {
        flex: 1;
        height: 60px;
        border: 1px solid #DADADA;
        border-radius: 10px;
        padding: 0px 22px;
        color: #5A5A5A;
        background-color: #F8F8F8;

        &::placeholder {
            color: transparent;
        }

        &:focus {
            border: 1px solid #545454;
            outline: none;
        }

        &[type=checkbox] {
            flex: auto;
        }

        option {
            color: #545454;
        }
    }
}

.form-local {
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: space-between;
    width: 100%;

    button {
        border-radius: 10px;
        border: none;
        color: #E54344;
        background-color: #fff;
        width: fit-content;
        height: fit-content;
        outline: none;
        padding: 12px 36px;
    }
}

.form-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.form-checkbox {
    display: flex;
    gap: 14px;
    width: auto;
    align-items: center;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 8px 16px;

    span {
        width: 100%;
        font-size: 16px;
        color: #fff;
        margin: 0;
    }

    label {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: #fff;
        cursor: pointer;
    }

    input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 13px;
        height: 13px;
        border: 1px solid #fff;
        border-radius: 2px;
        background-color: transparent;
        cursor: pointer;
        flex-shrink: 0;
        position: relative;
        padding: 8px;

        &:checked {
            background-color: #fff;

            &::after {
                content: '';
                position: absolute;
                inset: 0;
                background-color: #fff;
                mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1 1l8 8M9 1l-8 8' stroke='%23E54344' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
                mask-size: contain;
                mask-repeat: no-repeat;
                mask-position: center;
            }
        }
    }
}

.cards-laterais {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.card-prestador {
    background-color: #fff;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    box-shadow: 5px 5px 8px 0 #2C2C2C26;
    flex: 1;

    .icon-card-prestador {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    h3 {
        font-weight: 500;
        font-size: 18px;
        line-height: 100%;
        text-align: center;
        color: #5A5A5A;
        margin: 0;
    }

    p {
        font-weight: 500;
        font-size: 18px;
        line-height: 100%;
        text-align: center;
        color: #5A5A5A;
        margin: 0;
    }

    a {
        font-weight: 500;
        font-size: 18px;
        line-height: 100%;
        text-align: center;
        color: #E54344;
        margin: 0;
    }
}