:root {
    --bg-dark: #090d16;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --primary-green: #25d366;
    --primary-green-hover: #1ebd56;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Efeito de luzes no fundo */
.background-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(90px);
    border-radius: 50%;
    opacity: 0.25;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: -50px;
    left: -50px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #25d366;
    bottom: -50px;
    right: -50px;
}

/* Card Principal */
.container {
    width: 100%;
    max-width: 440px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

/* Lista de Recursos */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 16px;
    border-radius: 14px;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box.red { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.icon-box.green { background: rgba(37, 211, 102, 0.15); color: #25d366; }
.icon-box.purple { background: rgba(168, 85, 247, 0.15); color: #a855f7; }

.text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Botão WhatsApp */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-green);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 16px;
    border-radius: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

/* Prova Social */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.avatars {
    display: flex;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-right: -6px;
    border: 2px solid var(--bg-dark);
}
/* Rodapé de Conformidade Legal para Meta Ads */
.legal-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    color: var(--text-muted);
}

.legal-footer a {
    color: var(--text-muted);
    text-decoration: none;
}

.legal-footer a:hover {
    text-decoration: underline;
}