*,
*::before,
*::after {
    box-sizing: border-box;
}

.wordpress-countdown-9999-container {
    font-family: 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: none;
    border-radius: 15px;
    padding: 30px;
    margin: 25px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333;
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
}

.wordpress-countdown-9999-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    z-index: 0;
}

.countdown-intro {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.countdown-main-text {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.countdown-main-text strong {
    color: #e74c3c; /* Um vermelho mais vibrante */
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.countdown-sub-text {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.countdown-sub-text strong {
    font-weight: 600;
    color: #34495e;
}

.countdown-table {
    width: 80%;
    margin: 30px auto;
    border-collapse: separate;
    border-spacing: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    table-layout: fixed;
}

.countdown-table th,
.countdown-table td {
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 1.05em;
    color: #333;
}

.countdown-table th {
    background-color: #3498db; /* Azul mais moderno */
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-table tbody tr:nth-child(even) {
    background-color: #ecf0f1;
}

.countdown-table tbody tr:hover {
    background-color: #dbe4eb;
    transition: background-color 0.3s ease;
}

.countdown-table td:nth-child(2) {
    word-break: break-word;
}

.countdown-note {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.share-button-container {
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.share-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366; /* Cor do WhatsApp */
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.share-button:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
}

.share-button svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .wordpress-countdown-9999-container {
        width: 95%; /* Ajusta a largura para mobile */
        margin: 20px auto; /* Garante centralização */
        padding: 20px;
    }

    .countdown-table {
        width: 100%; /* Ocupa toda a largura disponível */
    }

    .countdown-main-text {
        font-size: 2.2em;
    }

    .countdown-sub-text {
        font-size: 1em;
    }

    .countdown-table th,
    .countdown-table td {
        padding: 10px 12px;
        font-size: 0.9em;
    }
}
