.mva-timer-wrapper,
.mva-timer-fake-wrapper {
    text-align: center;
    font-family: inherit;
    width: 100%;
}

.mva-timer-preview, 
.mva-timer-placeholder {
    padding: 20px;
    background: #f6f7f7;
    border: 1px dashed #8c8f94;
    text-align: center;
    border-radius: 8px;
    color: #3c434a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.mva-timer-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mva-timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 80px;
}

.mva-timer-num {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.mva-timer-label {
    font-size: 0.85em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.mva-timer-expired {
    font-size: 1.5em;
    font-weight: bold;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsividade Básica */

@media (max-width: 600px) {
    .mva-timer-flex {
        gap: 10px;
    }
    .mva-timer-item {
        padding: 10px 15px;
        min-width: 60px;
    }
    .mva-timer-num {
        font-size: 1.8em;
    }
    .mva-timer-label {
        font-size: 0.75em;
    }
}