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

::-webkit-scrollbar {
  display: none;
}

* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

body {
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
}

#map {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

#story {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.step {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px;
    pointer-events: none;
}

.step.intro {
    justify-content: center;
}

.step-right {
    justify-content: flex-end;
}

.intro-content {
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(8px);
    padding: 30px 120px;
    max-width: 620px;
    text-align: center;
    border-radius: 3px;
    pointer-events: auto;
}

.intro-content .counter {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.intro-content .subtitle {
    font-size: 1.15rem;
    color: #d5d5d5;
    margin-top: 14px;
    line-height: 1.5;
}

.intro-content.intro-text {
    padding: 30px 30px;
    max-width: 660px;
}

.intro-content.intro-text p {
    font-size: 1.35rem;
    line-height: 1.55;
    color: #ffffff;
}

.step-content {
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(6px);
    padding: 30px 30px;
    max-width: 540px;
    border-radius: 3px;
    pointer-events: auto;
}

.step-content h2 {
    font-size: 1.45rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.step-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #ffffff;
}

.step-content p i {
    font-size: 1rem;
    color: #aaaaaa;
}

.step-content a,
.intro-content a {
    color: #01f3b3;
    text-decoration-color: #01f3b3;
}

.step-content.step-empty {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: none;
    width: 24px;
    height: 24px;
    padding: 0;
    max-width: none;
}

.btn-descarga {
    display: inline-block;
    padding: 30px 30px;
    background: #01f3b3;
    color: #000000;
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

.btn-descarga:hover {
    background: #000000;
    color: #01f3b3;
}
a.btn-descarga {
    color: #000000;
    text-decoration: none;
}


.disclaimer {
    position: fixed;
    bottom: 16px;
    left: 16px;
    max-width: 380px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #000000;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.disclaimer.visible {
    opacity: 1;
}


@media (max-width: 768px) {

    .step {
        padding: 10px;
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .step.intro {
        align-items: center;
        padding-bottom: 20px;
    }

    .intro-content,
    .intro-content.intro-text,
    .intro-content.intro-counter {
        max-width: 100%;
        padding: 24px 20px;
    }

    .intro-content.intro-text p {
        font-size: 1.05rem;
        line-height: 1.45;
    }

    .intro-content .counter {
        font-size: 3.2rem;
    }

    .intro-content .subtitle {
        font-size: 1rem;
    }

    .step-content {
        max-width: 100%;
        width: 100%;
        padding: 20px 16px;
    }

    .step-content h2 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .btn-descarga {
        font-size: 1.2rem;
        padding: 14px 28px;
    }
}



