/* Variáveis para facilitar futuras mudanças de marca */
:root {
    --primary: #FF4747;    /* Vermelho de ação */
    --primary-hover: #D63031;
    --secondary: #2D3436;  /* Cinza escuro profissional */
    --accent: #FFC312;     /* Amarelo para o Timer */
    --success: #00B894;    /* Verde para selos de estoque */
    --bg: #F8F9FA;
    --text: #2D3436;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
    line-height: 1.5;
}

.wrapper {
    width: 100%;
    max-width: 480px;
    background: var(--white);
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

/* Barra de Urgência */
.urgency-bar {
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

#timer {
    color: var(--accent);
}

/* Header */
header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

/* Conteúdo Principal */
.main-content {
    padding: 20px;
}

.headline {
    text-align: center;
    margin-bottom: 25px;
}

.headline h1 {
    font-size: 1.7rem;
    color: #111;
    line-height: 1.2;
    margin-bottom: 12px;
}

.headline .sub-text {
    color: #636e72;
    font-size: 1rem;
}

/* Box do Produto */
.product-showcase {
    position: relative;
    margin-bottom: 30px;
}

.product-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--success);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 184, 148, 0.3);
}

/* Área de Conversão */
.offer-container {
    background: #FFF5F5;
    border: 2px dashed var(--primary);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: #b2bec3;
    font-size: 1rem;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin: 5px 0;
}

.cta-button {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    text-decoration: none;
    padding: 22px;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 25px rgba(255, 71, 71, 0.4);
}

.cta-button:active {
    transform: scale(0.97);
}

/* Benefícios */
.benefit-list {
    list-style: none;
    padding-bottom: 40px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #444;
}

.benefit-list li::before {
    content: "✔️";
    margin-right: 12px;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    color: #adb5bd;
    font-size: 0.75rem;
}