/**ESTRUTURA DO MODAL SUCCESS**/
.angotic-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

/* MODAL */
.angotic-modal {
    width: 100%;
    max-width: 520px;
    background-color: #ffffff !important;
    color: #333333 !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    font-family: 'Inter', system-ui, sans-serif;
}

/* HEADER */
.angotic-modal-header {
    background-color: #9964E0;
    padding: 24px;
    text-align: center;
    position: relative;
}

.angotic-modal-header img {
    max-width: 160px;
}

/* CLOSE */
.angotic-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
}

/* BODY */
.angotic-modal-body {
    padding: 32px;
    text-align: center;
}

.angotic-modal-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #9964E0;
    margin-bottom: 12px;
}

.angotic-modal-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #444444 !important;
    margin-bottom: 22px;
}

/* BUTTON */
.angotic-btn-primary {
    display: inline-block;
    background-color: #9964E0;
    color: #ffffff !important;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.angotic-btn-primary:hover {
    background-color: #7d4ed1;
    transform: translateY(-2px);
}

/* INFO */
.angotic-info {
    margin-top: 18px;
    font-size: 14px;
    color: #777777 !important;
}

/* FOOTER */
.angotic-modal-footer {
    background-color: #f4f4f8;
    text-align: center;
    padding: 14px;
    font-size: 13px;
    color: #888888 !important;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .angotic-modal {
        margin: 20px;
    }
}

/***END ESTRUTURA MODAL SUCCESS**/


/**ESTRUTURA DO MODAL DO FORM PARTICIPANTE***/
.angotic-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.angotic-form-modal {
    width: 100%;
    max-width: 620px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.angotic-form-header {
    background: #9964E0;
    color: #fff;
    padding: 5px;
    position: relative;
    text-align: center;
}

.angotic-form-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

.angotic-form-body {
    padding: 28px;
}
