:root {
    --pt-blue: #1d5f9f;
    --pt-blue-light: #6ea8dc;
    --pt-bg-dark: #10243d;
    --pt-text: #ffffff;
    --pt-muted: rgba(255, 255, 255, 0.72);
    --pt-line: rgba(255, 255, 255, 0.18);
}

body.landing-page {
    min-height: 100vh;
    color: var(--pt-text);
    text-shadow: none;
    box-shadow: none;
    background-color: var(--pt-bg-dark);
    overflow-x: hidden;
}

/* Escurece ligeiramente a imagem de fundo existente, sem a substituir */
body.landing-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(9, 24, 43, 0.28) 0%,
            rgba(9, 24, 43, 0.48) 100%);
}

/* Conteúdo acima do overlay */
.landing-page .cover-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    min-height: 100vh;
}

.landing-page .masthead {
    margin-bottom: 0;
    padding-top: 14px;
}

.landing-page .brand-logo {
    width: 145px;
    max-width: 45vw;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Caixa central mais discreta */
.landing-page .landing-card {
    width: 100%;
    max-width: 680px;
    margin: auto;
    padding: 42px 48px;
    text-align: center;
    background: rgba(7, 21, 38, 0.34);
    border: 1px solid var(--pt-line);
    border-radius: 10px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

/* Em vez de uma pill muito moderna, fica como subtítulo simples */
.landing-page .eyebrow {
    margin-bottom: 12px;
    color: var(--pt-blue-light);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.landing-page .cover-heading {
    margin-bottom: 18px;
    color: #fff;
    font-size: 2.35rem;
    font-weight: 650;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.landing-page .cover-heading span {
    display: inline;
    color: #fff;
    font-weight: 650;
}

.landing-page .lead {
    max-width: 610px;
    margin: 0 auto;
    color: var(--pt-muted);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
}

.landing-page .lead strong {
    color: #fff;
    font-weight: 600;
}

.landing-page .actions {
    margin-top: 28px;
}

/* Botão menos "startup", mais institucional */
.landing-page .btn-start {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 4px;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.landing-page .btn-start:hover,
.landing-page .btn-start:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
}

.landing-page .mastfoot {
    padding-bottom: 10px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.85rem;
    text-align: center;
}

.landing-page .mastfoot p {
    margin-bottom: 0;
}

.landing-page .mastfoot a {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 767px) {
    .landing-page .cover-container {
        padding: 1.25rem !important;
    }

    .landing-page .landing-card {
        padding: 34px 24px;
        border-radius: 8px;
    }

    .landing-page .cover-heading {
        font-size: 1.9rem;
    }

    .landing-page .lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .landing-page .brand-logo {
        width: 125px;
    }
}

@media (max-width: 420px) {
    .landing-page .landing-card {
        padding: 30px 20px;
    }

    .landing-page .btn-start {
        width: 100%;
    }
}