/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #2952E8;
    --blue-dark: #1E3FBF;
    --blue-light: #4A6FFF;
    --green-success: #22A653;
    --text-dark: #1a1a1a;
    --text-body: #555;
    --text-light: #888;
    --text-footer: #999;
    --bg-white: #fff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
    height: 100%;
    font-family: var(--font-family);
    background: var(--bg-white);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== LANDING LAYOUT ===== */
.landing {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

.landing__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 32px;
    text-align: center;
}

/* ===== SHIELD ICON ===== */
.landing__icon {
    margin-bottom: 24px;
}

.landing__icon svg {
    width: 56px;
    height: 56px;
}

/* ===== TITLE ===== */
.landing__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

/* ===== SUBTITLE ===== */
.landing__subtitle {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-body);
    max-width: 320px;
    margin-bottom: 36px;
}

/* ===== PROGRESS BAR ===== */
.landing__progress-wrapper {
    width: 100%;
    max-width: 300px;
    margin-bottom: 16px;
}

.landing__progress-bar {
    width: 100%;
    height: 14px;
    background: #E8ECF0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.landing__progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-light));
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
}

.landing__progress-fill.complete {
    width: 100% !important;
    background: var(--blue-primary);
}

/* ===== STATUS TEXT ===== */
.landing__status {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--blue-primary);
    text-transform: uppercase;
    margin-bottom: 0;
    transition: color 0.3s ease;
    min-height: 20px;
}

.landing__status.success {
    color: var(--green-success);
}

/* ===== ACCESS BUTTON ===== */
.landing__btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    padding: 18px 32px;
    margin-top: 20px;
    background: var(--blue-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(41, 82, 232, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-align: center;
}

.landing__btn.visible {
    display: flex;
    animation: fadeSlideUp 0.5s ease forwards;
}

.landing__btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(41, 82, 232, 0.45);
}

.landing__btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(41, 82, 232, 0.3);
}

/* ===== FOOTER ===== */
.landing__footer {
    padding: 24px 20px 20px;
    text-align: center;
}

.landing__footer-separator {
    width: 100%;
    height: 1px;
    background: #E8ECF0;
    margin-bottom: 20px;
}

.landing__footer-company {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.landing__footer-cnpj {
    font-size: 11.5px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.landing__footer-copy {
    font-size: 11.5px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.landing__footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 12px;
}

.landing__footer-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.landing__footer-links a:hover {
    color: var(--blue-primary);
}

.landing__footer-links span {
    color: var(--text-light);
    font-size: 11px;
}

.landing__footer-disclaimer {
    font-size: 10.5px;
    color: var(--text-footer);
    line-height: 1.5;
    max-width: 340px;
    margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== DESKTOP ===== */
@media (min-width: 768px) {
    .landing__icon svg {
        width: 68px;
        height: 68px;
    }

    .landing__title {
        font-size: 32px;
    }

    .landing__subtitle {
        font-size: 16px;
        max-width: 400px;
    }

    .landing__progress-wrapper {
        max-width: 360px;
    }

    .landing__progress-bar {
        height: 16px;
    }

    .landing__status {
        font-size: 14px;
    }

    .landing__btn {
        max-width: 360px;
        padding: 20px 40px;
        font-size: 16px;
    }

    .landing__footer-disclaimer {
        max-width: 440px;
    }
}

@media (min-width: 1024px) {
    .landing__content {
        padding: 60px 32px 40px;
    }

    .landing__title {
        font-size: 34px;
    }

    .landing__subtitle {
        font-size: 17px;
        max-width: 440px;
    }

    .landing__progress-wrapper {
        max-width: 380px;
    }

    .landing__btn {
        max-width: 380px;
    }
}
