@import url(/variables.css);
.modal-puro-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-puro-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.modal-puro-content {
    margin: 0px 20px;
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-puro-backdrop.show .modal-puro-content {
    transform: scale(1);
}

.modal-puro-body {
    position: relative;
    z-index: 2;
}

.cupom-message-text {
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.text-success { 
    color: #60B210; 
}

.text-danger { 
    color: #e54646; 
}

.btn-cupom-fechar {
    background-color: var(--primary-color);
    color: var(--color-text-primary-button);
    border: none;
    border-radius: 5px;
    padding: 4px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 13px;
}

.btn-cupom-fechar:hover {
    background-color: #4f940d;
}

.confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.btn-box-cupom {
    display: flex;
    justify-content: end;
}