body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 25px;
    color: #222;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.10);
}

h1 {
    margin-top: 0;
    font-size: 32px;
    line-height: 1.2;
}

h2 {
    margin-top: 25px;
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

p, label {
    font-size: 16px;
    line-height: 1.5;
}

input[type="text"],
input[type="number"],
textarea {
    width: 300px;
    max-width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

textarea {
    width: 500px;
    height: 120px;
    resize: none;
}

button,
.btn-link {
    display: inline-block;
    padding: 10px 16px;
    background: #f1f1f1;
    color: #222;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
}

button:hover,
.btn-link:hover {
    background: #e5e5e5;
}

.bloco {
    margin-top: 25px;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
}

.topo-acoes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.linha-botoes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.valor-destaque {
    font-size: 22px;
    font-weight: bold;
    color: #111;
}

.botoes-qtd {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.botoes-extra {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 170px;
}

.campo-qtd {
    width: 70px !important;
    text-align: center;
    font-weight: bold;
}

.botao-secundario {
    background: #ffffff;
}

.botao-principal {
    background: #e9f2ff;
    border: 1px solid #9ec5ff;
}

.botao-principal:hover {
    background: #dcecff;
}
.area-premios {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 22px;
    align-items: start;
    margin-top: 25px;
}

.bloco-compra-principal {
    background: #f3f3f3;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 20px;
}


.pix-timer-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pix-box {
    flex: 1;
    min-width: 320px;
}

.timer-box {
    width: 220px;
    text-align: center;
}

.timer-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(#6cc96c 360deg, #e5e5e5 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    position: relative;
}

.timer-circle::before {
    content: "";
    position: absolute;
    width: 118px;
    height: 118px;
    background: #ffffff;
    border-radius: 50%;
}

.timer-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.timer-inner span {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: #222;
}

.timer-inner small {
    display: block;
    font-size: 14px;
    color: #555;
    margin-top: 4px;
}

.timer-aviso {
    font-size: 16px;
    font-weight: bold;
    color: #d32f2f;
}
.avisos-encerramento-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
    align-items: stretch;
}

.avisos-encerramento-grid .aviso-encerrado {
    margin: 0 !important;
    width: auto !important;
    box-sizing: border-box;
}

@media (max-width: 800px) {
    .avisos-encerramento-grid {
        grid-template-columns: 1fr;
    }
}