/* ============================================
   WRAPPER DO SUBMIT
   ============================================ */
.wrapper-sub {
    padding: 30px 0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: flex-start;
    z-index: 999;
    font-family: "Source Sans Pro";
    align-items: flex-start;
}

/* ============================================
   BOTÃO SUBMIT
   ============================================ */
.artist-form-submit-wrapper .submit-row {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    flex-direction: column;
}

.artist-form-submit-wrapper .button-primary {
    background: #6c63ff;
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Source Sans Pro', sans-serif;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(108, 99, 255, 0.3);
    min-width: 180px;
    letter-spacing: 0.3px;
}

a.btn-ver-artista {
    padding: 15px 0;
    display: flex;
    gap: 5px;
    line-height: 1.4em;
}


.artist-form-submit-wrapper .button-primary:hover {
    background: #5a52e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.4);
}

.artist-form-submit-wrapper .button-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(108, 99, 255, 0.3);
}

.artist-form-submit-wrapper .button-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

a.btn-ver-artista {
    padding: 15px 0;
}



/* ============================================
   SPINNER
   ============================================ */
/* ============================================
   SPINNER DENTRO DO BOTÃO
   ============================================ */
.artist-form-submit-wrapper .button-primary .btn-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: btn-spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 10px;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}
/* ============================================
   MENSAGEM
   ============================================ */
.artist-form-submit-wrapper .message {
    font-weight: 600;
    font-size: 15px;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 8px 0;
}

.artist-form-submit-wrapper .message.success {
    color: #2d8a4e;
}

.artist-form-submit-wrapper .message.error {
    color: #d63638;
}

/* ============================================
   MODO FIXO (ativa via classe)
   ============================================ */
.artist-form-submit-wrapper.is-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(108, 99, 255, 0.1);
}

.artist-form-submit-wrapper.is-fixed .submit-row {
    max-width: 780px;
    margin: 0 auto;
    justify-content: flex-end;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 767px) {
    .artist-form-submit-wrapper .submit-row {
        flex-direction: column;
        align-items: stretch;
       
    }

    .artist-form-submit-wrapper .button-primary {
        width: 100%;
        justify-content: center;
        min-width: unset;
        padding: 16px 24px;
        font-size: 15px;
    }

    .artist-form-submit-wrapper .message {
        text-align: center;
        padding: 0;
    }

    .artist-form-submit-wrapper.is-fixed {
        padding: 12px 16px;
    }

    .artist-form-submit-wrapper.is-fixed .button-primary {
        padding: 14px 20px;
        font-size: 14px;
    }




    .wrapper-sub {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffffb3;
        padding: 20px 20px;
        backdrop-filter: blur(30px) saturate(1.8);
        box-shadow: 0px -26px 30px 0px rgba(12, 4, 32, 0.07);
    }










}