:root {
    --bg-color: #050505;
    --bg-gradient: radial-gradient(circle at 50% -20%, #1a1010 0%, #050505 100%);
    --primary: #FF5722;
    --primary-glow: rgba(255, 87, 34, 0.4);
    --secondary: #ff784e;
    --text-main: #FFFFFF;
    --text-muted: #A0AEC0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --wa-color: #25D366;
    --wa-glow: rgba(37, 211, 102, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    background-image: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Particles effect (pure CSS trick) */
body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(var(--card-border) 1px, transparent 1px),
        radial-gradient(var(--card-border) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.3;
    z-index: -1;
    animation: backgroundScroll 60s linear infinite;
}

@keyframes backgroundScroll {
    0% { background-position: 0 0, 25px 25px; }
    100% { background-position: 500px 500px, 525px 525px; }
}

.container {
    max-width: 480px;
    width: 100%;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 87, 34, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}

.badge-text {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-container {
    position: relative;
    margin-bottom: 24px;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--primary-glow);
    filter: blur(25px);
    border-radius: 50%;
    z-index: -1;
    animation: floatGlow 3s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
    to { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    object-fit: cover;
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary);
}

.subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.subtitle strong {
    color: #fff;
    font-weight: 600;
}

/* Main Content */
.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Scarcity Box */
.scarcity-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scarcity-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.scarcity-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.timer {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
    font-variant-numeric: tabular-nums;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    background: var(--wa-color);
    color: white;
    text-decoration: none;
    padding: 20px 24px;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 30px var(--wa-glow), inset 0 -3px 0 rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%; right: -50%; bottom: -50%; left: -50%;
    background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255,255,255, 0.5) 50%, rgba(229, 172, 142, 0));
    transform: rotateZ(60deg) translate(-5em, 7.5em);
    animation: sheen 3s infinite;
}

@keyframes sheen {
    100% { transform: rotateZ(60deg) translate(1em, -9em); }
}

.cta-button:active {
    transform: scale(0.98) translateY(2px);
    box-shadow: 0 5px 15px var(--wa-glow);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.wa-icon {
    width: 28px;
    height: 28px;
}

.free-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -16px;
    font-weight: 500;
}

/* Social Proof */
.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -12px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.more-users {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--bg-color);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    backdrop-filter: blur(5px);
}

.social-proof p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 250px;
    line-height: 1.4;
}

.social-proof strong {
    color: #fff;
}

/* Features */
.features {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.feature-item {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 16px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-item .icon {
    font-size: 1.5rem;
}

.feature-item div {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Footer */
footer {
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

/* Fim do estilo principal */
