:root {
    --primary-orange: #F1641E;
    --primary-hover: #d14905;
    --light-orange: #FFF0E5;
    --bg-body: #F2F4F8;
    --bg-card: #FFFFFF;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --money-green: #10B981;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    --shadow-glow: 0 0 20px rgba(241, 100, 30, 0.3);
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}
.badge {
    background: #fff0e8;
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border: 1px solid rgba(241, 100, 30, 0.2);
    box-shadow: 0 4px 15px rgba(241, 100, 30, 0.15);
}
body {
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Fundo sutil para dar profundidade */
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Container Centralizado estilo App */
.container {
    width: 100%;
    max-width: 500px; /* Largura ideal de leitura/mobile */
    margin: 0 auto;
    padding: 0 20px;
    background: #fff; /* O conteúdo fica num "papel" branco no desktop */
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

@media (max-width: 550px) {
    .container {
        box-shadow: none;
    }
}

/* --- TIPOGRAFIA --- */
h1, h2, h3, h4 {
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.headline {
    font-size: 2.4rem;
    margin-bottom: 16px;
    background: linear-gradient(to right, #222, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 400;
}

.section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 12px;
}

.section-desc {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1rem;
    padding: 0 10px;
}

/* --- HERO SECTION (CSS PURE PHONE) --- */
.hero-section {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: visible; /* Permite que o brilho vaze */
}

/* Container do Celular CSS */
.hero-visual {
    position: relative;
    margin: 50px auto 70px; /* Margem extra embaixo para sombra */
    width: 300px;
    height: 580px;
    perspective: 1000px;
    z-index: 10;
}

/* O Corpo do Celular */
.css-phone {
    width: 100%;
    height: 100%;
    background: #111; /* Borda preta do celular */
    border-radius: 45px;
    padding: 12px; /* Espessura da borda */
    box-shadow: 
        0 0 0 2px #333, /* Detalhe metálico */
        0 30px 60px rgba(0,0,0,0.25), /* Sombra profunda */
        0 50px 100px rgba(241, 100, 30, 0.15); /* Glow laranja ambiente */
    position: relative;
    transition: transform 0.3s ease;
    animation: phone-float 6s ease-in-out infinite;
}

/* A Tela */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}

/* Notch (Ilha Dinâmica) */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #111;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 20;
}

/* UI Interna: Header do App */
.app-header {
    padding: 40px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.75rem;
    font-weight: 600;
}

/* UI Interna: Saldo (Destaque) */
.balance-section {
    padding: 10px 20px;
    text-align: left;
}

.balance-label {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 5px;
    display: block;
}

.balance-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-text);
    letter-spacing: -1px;
    display: block;
    line-height: 1;
}

.growth-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #DEF7EC;
    color: var(--money-green);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 10px;
}

/* UI Interna: Gráfico (SVG) */
.chart-container {
    margin-top: 20px;
    width: 100%;
    height: 120px;
    position: relative;
}
.chart-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 15px rgba(241, 100, 30, 0.2));
}

/* UI Interna: Lista de Vendas Recentes */
.transactions-list {
    flex: 1;
    background: #F9FAFB;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.03);
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    animation: slide-up-fade 0.5s ease backwards;
}

.t-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--light-orange);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.t-info { flex: 1; text-align: left; }
.t-title { font-weight: 700; font-size: 0.9rem; color: #333; display: block; }
.t-date { font-size: 0.75rem; color: #999; }
.t-amount { font-weight: 800; color: var(--money-green); font-size: 0.95rem; }

/* --- Notificação Flutuante (Controlada por JS) --- */
.pop-notification {
    position: absolute;
    top: 55px; 
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scale(0.9);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 8px 14px; /* Levemente menor para ficar elegante */
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 85%;
    z-index: 40; /* Z-index alto */
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pop-notification.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}
/* --- Ajuste no Gráfico para Animação --- */
.chart-line-path {
    stroke-dasharray: 1000; /* Valor alto para esconder a linha inteira */
    stroke-dashoffset: 1000; /* Começa escondida */
    transition: stroke-dashoffset 2.5s ease-out; /* Sincronizado com a subida do saldo */
}

.chart-line-path.draw-active {
    stroke-dashoffset: 0; /* Desenha até o final */
}
.pop-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
    background: #fff0e8;
    padding: 8px;
    border-radius: 50%;
}
.pop-text-group { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.pop-title { font-size: 0.75rem; font-weight: 800; color: #333; }
.pop-desc { font-size: 0.7rem; color: #666; }
.pop-amount { font-weight: 800; color: var(--money-green); margin-left: auto; font-size: 0.9rem;}

/* --- Lista de Transações --- */
.transactions-list {
    flex: 1;
    background: #F9FAFB;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.03);
    overflow-y: hidden; /* Esconde o excesso se a lista crescer muito */
    position: relative;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    /* Animação de entrada */
    animation: slide-in 0.5s ease forwards;
    opacity: 0; 
    transform: translateY(20px);
}

@keyframes slide-in {
    to { opacity: 1; transform: translateY(0); }
}

/* Utilitário para o icone da lista */
.t-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: var(--light-orange);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.t-info { flex: 1; text-align: left; overflow: hidden; }
.t-title { font-weight: 700; font-size: 0.85rem; color: #333; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t-date { font-size: 0.7rem; color: #999; }
.t-amount { font-weight: 800; color: var(--money-green); font-size: 0.9rem; }

/* Animações */
@keyframes phone-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
}

@keyframes pop-in-out {
    0% { transform: translateX(-50%) translateY(-20px) scale(0.9); opacity: 0; }
    10% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
    80% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
    90% { transform: translateX(-50%) translateY(-10px) scale(0.95); opacity: 0; }
    100% { transform: translateX(-50%) translateY(-20px) scale(0.9); opacity: 0; }
}

@keyframes slide-up-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade do Celular */
@media (max-width: 400px) {
    .hero-visual {
        width: 280px;
        height: 520px;
    }
}

/* --- BOTÕES --- */
.cta-button {
    background: linear-gradient(135deg, #F1641E, #FF8C42);
    color: white;
    border: none;
    padding: 20px 32px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 10px 25px rgba(241, 100, 30, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(241, 100, 30, 0.45);
}

.cta-button:active { transform: scale(0.98); }

.cta-button.secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    box-shadow: none;
}
.cta-button.secondary:hover {
    background: var(--light-orange);
}

.pulse { animation: pulse 2s infinite; }

.trust-badge {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-badge span { display: flex; align-items: center; gap: 6px; }
.trust-badge i { color: var(--money-green); font-size: 1.1rem; }

/* --- CARACTERÍSTICAS (GRID) --- */
section { padding: 60px 0; border-bottom: 1px solid #f0f0f0; }

.grid-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid #eee;
    text-align: left;
    transition: transform 0.2s;
    box-shadow: var(--shadow-sm);
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--light-orange); }

.icon-box {
    font-size: 2.2rem;
    color: var(--primary-orange);
    margin-bottom: 16px;
    display: inline-block;
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.95rem; color: var(--text-gray); line-height: 1.5; }

/* --- NOVA SEÇÃO DE GALERIA (Estilo Browser Window) --- */
.gallery-section {
    padding: 60px 0 80px; 
    background: #fff; 
}

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Mais espaço entre os exemplos */
    margin-top: 30px;
}

.showcase-item {
    display: flex;
    flex-direction: column;
}

.showcase-header h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    padding-left: 5px;
}

/* Container que imita janela do navegador */
.browser-frame {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12); /* Sombra alta para destacar */
    border: 1px solid #e5e7eb;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

/* Barra superior da janela com bolinhas */
.browser-dots {
    height: 28px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 12px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.img-container {
    position: relative;
    width: 100%;
    line-height: 0;
}

.img-container img {
    width: 100%;
    height: auto;
    display: block;
    /* Efeito sutil de qualidade */
    image-rendering: -webkit-optimize-contrast;
}

.zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    pointer-events: none;
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Caixa de Análise abaixo da imagem */
.analysis-box {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eee;
}

.desc-primary, .desc-secondary {
    font-size: 0.95rem;
    color: #374151;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}

.desc-primary { margin-bottom: 15px; border-bottom: 1px dashed #e5e7eb; padding-bottom: 15px; }

.desc-primary i { color: var(--money-green); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.desc-secondary i { color: var(--primary-orange); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.desc-primary strong, .desc-secondary strong {
    color: var(--text-dark);
    font-weight: 700;
    margin-right: 4px;
}

/* --- MÓDULOS --- */
.modules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modules-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: #FAFAFA;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.2s;
}

.modules-list li:hover {
    background: #fff;
    border-color: var(--light-orange);
    box-shadow: var(--shadow-sm);
}

.modules-list i {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    background: var(--light-orange);
    padding: 10px;
    border-radius: 12px;
}

.modules-list div h4 { font-size: 1.1rem; margin-bottom: 4px; }
.modules-list div p { font-size: 0.9rem; color: var(--text-gray); }

/* --- DEPOIMENTOS --- */
.testimonials-section { background: #f9fafb; margin: 0 -20px; padding: 60px 20px; width: calc(100% + 40px); }

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

.stars { color: #FFD700; margin-bottom: 12px; font-size: 1rem; letter-spacing: 2px; }
.t-text { font-size: 1rem; font-style: italic; color: #374151; margin-bottom: 20px; line-height: 1.6; }
.t-author { display: flex; align-items: center; gap: 12px; font-weight: 700; }

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-orange);
}

/* --- OFERTAS --- */
.offer-section {
    background: #fff;
    padding-top: 40px;
}

.offer-card {
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s;
}

/* Oferta Premium (Destaque) */
.offer-card.premium {
    border: 2px solid var(--primary-orange);
    background: linear-gradient(to bottom, #fff, #fffbf7);
    box-shadow: 0 20px 40px rgba(241, 100, 30, 0.1);
    transform: scale(1.02);
    z-index: 10;
    overflow: hidden;
}

.best-seller-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 8px 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(241, 100, 30, 0.3);
    width: auto;
    white-space: nowrap;
}

.offer-header h3 { font-size: 1.5rem; margin-bottom: 15px; margin-top: 10px; }

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.price .old {
    text-decoration: line-through;
    color: #9CA3AF;
    font-size: 1rem;
}

.price .new {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.tag-discount {
    background: #DEF7EC;
    color: #03543F;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.offer-img-wrapper {
    margin: 20px 0;
    padding: 10px;
}

.offer-img-wrapper img {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)); /* Sombra realista no produto */
    transition: transform 0.3s;
}
.premium:hover .offer-img-wrapper img { transform: scale(1.05); }

.premium-list {
    list-style: none;
    text-align: left;
    margin: 20px 0 30px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.5);
    padding: 15px;
    border-radius: 12px;
}

.premium-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

.premium-list li strong { color: var(--text-dark); }
.premium-list i {
    color: var(--money-green);
    background: #DEF7EC;
    padding: 4px;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* --- GARANTIA --- */
.guarantee-box {
    position: relative;
    margin-top: 30px;
    margin-bottom: 60px;
    background: #fff;
    padding: 60px 30px 40px;
    border-radius: var(--radius-lg);
    border: 1px dashed #d1d5db;
    text-align: center;
}

.guarantee-seal {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b35);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid #fff;
    box-shadow: 0 10px 25px rgba(241, 100, 30, 0.2);
}

.guarantee-seal i { font-size: 2.5rem; margin-bottom: -5px; }
.guarantee-seal span { font-size: 0.8rem; font-weight: 800; }

.g-subtitle {
    color: var(--money-green);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* --- FAQ --- */
.faq-section { background: #f9fafb; margin: 0 -20px; padding: 60px 20px; width: calc(100% + 40px); }

.accordion-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}
.accordion-item.active { border-color: var(--primary-orange); box-shadow: var(--shadow-sm); }

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.accordion-content p { padding-bottom: 20px; color: var(--text-gray); font-size: 0.95rem; }
.accordion-item.active .accordion-content { max-height: 300px; }
.accordion-item.active i { transform: rotate(180deg); color: var(--primary-orange); }

footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
    color: #9CA3AF;
    background: #fff;
}

/* --- ANIMAÇÕES --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.2; }
    50% { transform: translate(15px, -15px) rotate(10deg); opacity: 0.6; }
    100% { transform: translate(0, 0) rotate(0deg); opacity: 0.2; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(241, 100, 30, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(241, 100, 30, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 100, 30, 0); }
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Utilitários de posição para símbolos */
.s1 { font-size: 2rem; top: 10%; left: 5%; }
.s2 { font-size: 1.5rem; bottom: 20%; right: 5%; }
.s3 { font-size: 1.2rem; top: 40%; left: 10%; }
.s4 { font-size: 1rem; top: 15%; right: 15%; }
.s5 { font-size: 1.8rem; bottom: 10%; left: 20%; }
.s6 { font-size: 0.9rem; top: 60%; right: 10%; }
/* --- TELA DE CROSSELL (SIMULA NOVA PÁGINA) --- */
#crossell-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-body);
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 99999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.headline-crossell {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
}

.timer-badge {
    background: #fff;
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(241, 100, 30, 0.15);
}

.timer-display {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-top: 5px;
    font-variant-numeric: tabular-nums;
    animation: pulse-timer 1s infinite alternate;
}

@keyframes pulse-timer {
    from { color: var(--text-dark); }
    to { color: var(--primary-orange); }
}

.crossell-card {
    margin-top: 0;
}

.crossell-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.btn-recusar {
    background: transparent !important;
    border: none !important;
    color: var(--text-gray) !important;
    text-decoration: underline;
    box-shadow: none !important;
    font-size: 0.95rem;
    padding: 10px !important;
}

.btn-recusar:hover {
    color: var(--text-dark) !important;
}