@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050508; /* Contraste Lateral: Fundo muito escuro */
    color: #ffffff;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Frame Mobile-First */
.container {
    width: 100%;
    max-width: 480px;
    background-color: #13131f; /* Fundo do site visivelmente diferente */
    margin: 0 auto;
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Text */
p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

h1, h2, h3 {
    line-height: 1.3;
}

.highlight { color: #a855f7; }
.highlight-green { color: #22c55e; }

/* Sections */
.section {
    padding: 40px 24px;
}

.bg-darker {
    background-color: #0f0f18;
}

/* Hero */
.hero {
    padding: 48px 24px 32px;
    text-align: center;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.15) 0%, rgba(19, 19, 31, 1) 100%);
    position: relative;
}

.hero-label {
    display: inline-block;
    background-color: rgba(168, 85, 247, 0.2);
    color: #d8b4fe;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 24px;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: -20px; /* Pull up next section */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

/* Botões */
@keyframes pulseBtn {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-btn {
    display: block;
    width: 100%;
    background-color: #22c55e;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    padding: 20px 24px;
    border-radius: 16px; /* Borda 16px */
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4); /* Sombra suave */
    animation: pulseBtn 2s infinite ease-in-out;
    text-transform: uppercase;
    margin-bottom: 16px;
    transition: filter 0.3s;
}

.timer-box {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
}

.timer {
    color: #ef4444;
    font-weight: 800;
    font-size: 16px;
}

/* Animações Keyframes Adicionais para os Snippets */
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Title Header Section */
.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
}

/* Bonus Images styling */
.bonus-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 32px 24px;
    background-color: #0f0f18;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin: 0 8px;
}
