:root {
    --bg-dark: #0f1218;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    
    --color-blue: #3e78b2;
    --color-orange: #ff862f;
    --color-green: #44c999;
    
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    
    --font-fam: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-fam);
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}


.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: floatGlow 10s ease-in-out infinite alternate;
}

.glow-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--color-blue), transparent 60%);
}

.glow-2 {
    bottom: 20%;
    right: -10%;
    background: radial-gradient(circle, var(--color-orange), transparent 60%);
    animation-delay: -5s;
}

.glow-3 {
    top: 50%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-green), transparent 60%);
    opacity: 0.2;
    animation-duration: 15s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}


.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-5 { margin-top: 5rem; }


h1, h2, h3 { line-height: 1.2; font-weight: 800; }
.headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.highlight-blue { color: var(--color-blue); text-shadow: 0 0 15px rgba(62, 120, 178, 0.5); }
.highlight-orange { color: var(--color-orange); }
.highlight-green { color: var(--color-green); }


header {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}
.logo {
    max-height: 60px;
    object-fit: contain;
    transition: transform var(--transition-speed);
}
.logo:hover {
    transform: scale(1.05);
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.notice-box {
    border-left: 4px solid var(--color-orange);
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.notice-box p {
    font-size: 1.1rem;
}


.cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all var(--transition-speed);
}

.primary-btn {
    background-color: var(--color-orange);
    box-shadow: 0 0 20px rgba(255, 134, 47, 0.5);
}
.primary-btn:hover {
    box-shadow: 0 0 30px rgba(255, 134, 47, 0.8);
    transform: translateY(-3px) scale(1.02);
}

.secondary-btn {
    background-color: var(--color-blue);
    box-shadow: 0 0 20px rgba(62, 120, 178, 0.5);
}
.secondary-btn:hover {
    box-shadow: 0 0 30px rgba(62, 120, 178, 0.8);
    transform: translateY(-3px) scale(1.02);
}


.pulse-anim {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 134, 47, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 134, 47, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 134, 47, 0); }
}

.sweep-anim::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s;
    z-index: -1;
}
.sweep-anim:hover::before {
    left: 100%;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all var(--transition-speed);
}
.benefit-item:hover {
    background: rgba(255,255,255,0.05);
}

.highlight-card {
    border-color: var(--color-orange);
    background: rgba(255, 134, 47, 0.05);
    position: relative;
}
.highlight-card::before {
    content: "BÔNUS!";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-orange);
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
}

.icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}
.green-icon { color: var(--color-green); }
.orange-icon { color: var(--color-orange); }

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.benefit-item p {
    color: var(--text-muted);
    font-size: 1rem;
}


.badge {
    display: inline-block;
    background: rgba(68, 201, 153, 0.1);
    color: var(--color-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.5rem;
    border: 1px solid rgba(68, 201, 153, 0.3);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .headline { font-size: 2.2rem; }
    .cta-btn { padding: 1rem 2rem; font-size: 1.1rem; width: 100%; max-width: 350px; }
    .notice-box { flex-direction: column; text-align: center; border-left: none !important; border-top: 4px solid var(--color-orange) !important; padding: 1.25rem; }
    .info-box { padding: 1.25rem !important; }
    .glass-card { padding: 1.25rem; }
    .glow { width: 300px; height: 300px; filter: blur(80px); }
    .section-title { font-size: 1.8rem; }
}
