.header {
    position: relative;
    margin-top: 0;
    padding: 2% 5%;
}

.iconHeader path {
    fill: var(--blackFontTitle);
}

.divPaiSuporte {
    background-color: var(--whiteBackGround);
}

.sectionSuporte {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--paddingLeftRight);
    gap: 4%;
    margin-bottom: 4%;
}

.div01Suporte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 55%;

    h2,
    h3 {
        color: var(--blackFontTitle);
    }

    h2 {
        margin-bottom: 8px;
    }

    h3 {
        margin-bottom: 24px;
    }

    p {
        color: var(--blackFontText);
    }

    .email {
        margin: 10% 0 8px 0;
        font-family: "Inter", sans-serif;
        font-weight: 400;
        font-size: clamp(0.88rem, 1rem + 2vw, 1.2rem);
        line-height: 120%;
    }

    a {
        font-family: "Inter", sans-serif;
        font-weight: 400;
        font-size: clamp(0.88rem, 0.9rem + 0.4vw, 1rem);
        color: var(--blackFontText);
        line-height: 140%;
    }
}

.divForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45%;
    font-family: "Inter", sans-serif;
}

form {
    background-color: #29D385;
    padding: 8%;
    border-radius: 32px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.grupo-formulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    font-family: "Inter", sans-serif;

    label {
        color: var(--whiteFontTitle);
        font-size: 18px;
        line-height: 120%;
    }

    input,
    select,
    textarea {
        font-family: "Inter", sans-serif;
        width: 100%;
        border: none;
        background-color: #5CE5A6;
        border-radius: 16px;
        padding: 16px;
        line-height: 140%;
    }
}

.grupo-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    font-family: "Inter", sans-serif;
    color: var(--whiteFontText);

    label {
        color: var(--whiteFontTitle);
        font-size: 18px;
        line-height: 120%;
    }

    input[type="file"] {
        width: 100%;
    }
}

.grupo-image input[type="file"]::file-selector-button {
    border: none;
    background-color: #5CE5A6;
    color: var(--whiteFontTitle);
    border-radius: 16px;
    padding: 16px;
    line-height: 120%;
    font-size: 16px;
    cursor: pointer;
    margin-right: 8px;
}

button {
    background: transparent;
    border: none;
    width: fit-content;
    cursor: pointer;

}

button.botaoBaixarHeader .rotate1,
button.botaoBaixarHeader .rotate2 {
    border-radius: 50px;
    padding: 16px 48px;
}

.alert-danger {
    padding: 16px;
    border-radius: 16px;
    background: #F08686;
    width: 100%;
    color: #940F0F;
    margin-bottom: 8px;
}

.alert-success {
    padding: 16px;
    border-radius: 16px;
    background: #86F08F;
    width: 100%;
    color: #0F941A;
    margin-bottom: 8px;
}

@media (max-width:768px) {
    .header {
        padding: 4% 5%;
    }

    .sectionSuporte {
        height: auto;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        margin-bottom: 12%;
    }

    .div01Suporte {
        width: 100%;

    }

    .divForm {
        width: 100%;
    }

    form {
        padding: 6%;
    }
}