/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /* Gradiente ajustado conforme a referência: Vinho escuro -> Preto -> Verde escuro */
    background: linear-gradient(180deg, #2a0a10 0%, #1a1a1a 40%, #031810 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* --- CARD PRINCIPAL --- */
.modal-card {
    /* Fundo cinza com gradiente sutil, idêntico à referência */
    background: linear-gradient(180deg, #4a4a4a 0%, #2e2e2e 100%);
    width: 90%;
    max-width: 350px; /* Largura um pouco mais contida */
    border-radius: 12px; /* Bordas um pouco menos arredondadas que antes */
    padding: 24px 20px 0px 20px; /* Padding ajustado */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    /* Borda sutil no topo para efeito de luz */
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 15px; /* Distância entre o card e os botões */
}

/* --- TIPOGRAFIA --- */
.modal-title {
    color: white;
    /* Tamanho da fonte ajustado para caber em 1 linha */
    font-size: 1.1rem; 
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-top: 10px;
    width: 100%;
}

.highlight {
    display: block; /* Força o preço para a linha de baixo */
    font-size: 1.3rem; /* Preço levemente maior */
    margin-top: 2px;
}

/* --- IMAGEM E EFEITOS --- */
.image-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 15px;
    /* Altura fixa para cortar a imagem na base do card se necessário */
    height: 250px; 
}

/* Explosão Amarela (Estilo Comic) */
.image-area::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    /* Gradiente radial ajustado para amarelo forte no centro */
    background: radial-gradient(circle, #ffea00 0%, rgba(255, 234, 0, 0.1) 60%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
    filter: blur(25px);
    top: 20px;
}

.hero-image {
    width: 110%; /* Aumenta a imagem para ela "vazar" um pouco ou preencher bem */
    max-width: 320px;
    height: auto;
    z-index: 1;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
    /* Posicionamento para alinhar a mão */
    transform: translateY(10px); 
}

/* --- BOTÕES --- */
.button-group {
    display: flex;
    width: 90%;
    max-width: 350px;
    gap: 10px; /* Espaço entre botões */
    z-index: 10;
}

.btn {
    flex: 1;
    height: 48px; /* Altura fixa igual ao TikTok */
    border-radius: 8px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn:active {
    transform: scale(0.98);
}

/* Botão Esquerdo: Cinza Escuro Esverdeado */
.btn-secondary {
    /* Cor exata retirada da imagem de referência (dark grey/green) */
    background-color: #1a2421; 
    color: #e0e0e0;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Botão Direito: Rosa TikTok */
.btn-primary {
    /* O rosa padrão vibrante */
    background-color: #fe2c55; 
    color: white;
}

.btn-primary:hover {
    background-color: #ff4066;
}

/* --- SETA INFERIOR --- */
.bottom-indicator {
    position: absolute;
    bottom: 15px;
    animation: bounce 2s infinite;
    opacity: 0.8;
    z-index: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}