/* RESET BÁSICO */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: #fff; }

/* CABEÇALHO COMPACTO */
.headline-area { padding: 10px 5px; text-align: center; }
.promo-tag { display: inline-block; background-color: #e8f5e9; color: #2e7d32; font-size: 11px; font-weight: bold; padding: 3px 10px; border-radius: 50px; margin-bottom: 5px; text-transform: uppercase; }
.main-title { color: #1a1a1a; font-size: 22px; line-height: 1.1; font-weight: 800; margin: 0 0 4px 0; text-transform: uppercase; }
.main-title span { color: #28a745; display: block; margin-top: 2px; }
.sub-title { color: #4a4a4a; font-size: 16px; font-weight: 700; line-height: 1.2; margin: 0; }
.price-highlight { color: #d32f2f; font-size: 18px; font-weight: 900; }
.shipping-info { font-size: 13px; color: #757575; font-style: italic; display: block; margin-top: 2px; }

/* IMAGENS COLADAS */
.colado img { display: block; width: 100%; max-width: 500px; margin: 0 auto; }

/* BOTÕES E ALERTA */
.container-vendas { text-align: center; padding: 20px; }
.alerta-estoque { color: #d32f2f; font-size: 14px; font-weight: bold; margin-bottom: 10px; text-transform: uppercase; display: block; animation: piscar 1s infinite; }
.btn-checkout { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(90deg, #2df35d 0%, #1e9a74 100%); border: 2px solid #2df35d; border-radius: 50px; color: #ffffff !important; text-decoration: none !important; padding: 15px 50px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); animation: pulsar 1.5s infinite; cursor: pointer; }
.btn-title { font-size: 30px; font-weight: 900; line-height: 1; text-transform: uppercase; }
.btn-subtitle { font-size: 15px; font-weight: bold; margin-top: 5px; }

/* CRONÔMETRO */
.timer-box { background: rgba(0, 0, 0, 0.2); padding: 4px 15px; border-radius: 20px; margin-top: 8px; font-size: 14px; border: 1px solid rgba(255, 255, 255, 0.3); }
.cronometro-label { color: #fff; font-family: monospace; font-size: 16px; }

/* RODAPÉ */
footer { padding: 40px 20px; text-align: center; font-size: 12px; color: #999; background: #f9f9f9; border-top: 1px solid #eee; margin-top: 20px; }
footer a { color: #666; text-decoration: underline; margin: 0 8px; }

/* ANIMAÇÕES */
@keyframes pulsar { 0% { transform: scale(1); } 70% { transform: scale(1.03); } 100% { transform: scale(1); } }
@keyframes piscar { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }