/* Modal principal */
#wc-modal-fechado {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(3px);
}

.wc-modal-container {
    position: relative;
    background: #d32f2f;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-align: center;
    color: white;
    animation: modalAppear 0.4s ease-out;
    border: 3px solid white;
}

.wc-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-modal-icon svg {
    width: 50px;
    height: 50px;
    fill: #d32f2f;
}

.wc-modal-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.wc-modal-content p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

/* Countdown */
.wc-reabertura {
    margin-top: 20px;
    padding: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
}

.wc-reabertura p {
    margin: 0;
}

#wc-countdown {
    font-weight: bold;
    color: #fff;
}

/* Animação */
@keyframes modalAppear {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Bloqueio de scroll */
body.wc-modal-active {
    overflow: hidden;
}