:root {
    --primary-gradient: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    --bg-dark: #0f0f13;
    --glass-bg: rgba(20, 20, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --accent: #FFD93D;
    
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
}

/* Fundo Atmosférico */
.aurora-bg {
    position: absolute;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.blob-1 {
    width: 500px; height: 500px;
    background: #4f46e5;
    top: -10%; left: -10%;
    animation: float 15s infinite alternate;
}

.blob-2 {
    width: 400px; height: 400px;
    background: #ec4899;
    bottom: -10%; right: -10%;
    animation: float 12s infinite alternate-reverse;
}

@keyframes float {
    from { transform: translate(0,0); }
    to { transform: translate(40px, 40px); }
}

/* Container Principal com Efeito de Borda Brilhante */
.card-wrapper {
    position: relative;
    width: 380px;
    padding: 1px; /* Espaço para a borda gradiente */
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-wrapper:hover {
    transform: translateY(-10px);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
}

.glass-product {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Visual do Produto (Ícone Flutuante) */
.product-visual {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 100%; height: 100%;
    background: var(--primary-gradient);
    border-radius: 20px;
    filter: blur(20px);
    opacity: 0.4;
    animation: pulse 3s infinite;
}

.product-icon {
    position: relative;
    width: 48px; height: 48px;
    color: #fff;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Informações */
.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

/* Lista de Features */
.features-list {
    list-style: none;
    width: 100%;
    padding: 0;
    margin-bottom: 32px;
    text-align: left;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 16px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list li svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

/* Preço */
.pricing-section {
    margin-bottom: 24px;
}

.price-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    color: var(--text-main);
}

.currency {
    font-size: 1.2rem;
    margin-top: 6px;
    margin-right: 4px;
    font-weight: 500;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.cents {
    font-size: 1.2rem;
    margin-top: 6px;
    font-weight: 600;
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 4px;
}

/* Botão de Compra */
.btn-buy {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 14px;
    background: var(--primary-gradient);
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-buy:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

.btn-buy svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-buy:hover svg {
    transform: translateX(4px);
}