@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700;800&family=Bebas+Neue&display=swap');

/* Ocultar barra de rolagem */
::-webkit-scrollbar {
    display: none;
}
* {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

:root {
    --accent: #FFE600;
    --accent-dim: rgba(255,230,0,0.1);
    --text: #FFFFFF;
    --text-muted: #888888;
    --border: rgba(255,255,255,0.08);
    --font-body: 'Space Grotesk', sans-serif;
}

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

body {
    background-color: #050505;
    background-image: url('../img/fundo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text);
    font-family: var(--font-body);
    min-height: 100vh;
}

/* Dark overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.72);
    pointer-events: none;
    z-index: 0;
}

/* ── Top Header ── */
.top-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(env(safe-area-inset-top, 16px) + 12px) 20px 12px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.back-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    display: flex; justify-content: center; align-items: center;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.back-btn:hover {
    background: var(--accent);
    color: #000;
}

.header-logo {
    height: 42px; width: auto; object-fit: contain;
}

/* ── Container ── */
.container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ── Hero ── */
.hero {
    text-align: center;
    animation: fadeDown 0.7s ease both;
}

.badge {
    display: inline-block;
    background: var(--accent-dim);
    border: 1px solid rgba(255,230,0,0.3);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: #fff;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

.subtitle strong { color: var(--accent); }

/* ── Sections ── */
.section {
    animation: fadeUp 0.7s ease both;
}

.section-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.section-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.section-text strong { color: #fff; }

/* ── Benefits ── */
.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.25s ease;
}

.benefit-item:hover {
    border-color: rgba(255,230,0,0.2);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.benefit-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Steps ── */
.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.step-item:last-child { border-bottom: none; }

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 4px;
}

/* ── CTA ── */
.cta-section {
    text-align: center;
    animation: fadeUp 0.7s ease 0.3s both;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    margin-bottom: 12px;
}

.cta-btn i { font-size: 1.3rem; }

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,230,0,0.3);
    filter: brightness(1.05);
}

.cta-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.cta-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── Animations ── */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 400px) {
    .title { font-size: 2.6rem; }
    .container { padding: 30px 18px 60px; }
}
