/* ==========================================================================
   OneClickSales - Pagina em desenvolvimento (splash)
   Cores da marca: primaria #2C62DC | secundaria #373435
   ========================================================================== */

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

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: #373435;
    overflow: hidden;

    /* Posicao do cursor (atualizada pelo js.js). Inicia no centro. */
    --mx: 50%;
    --my: 50%;
}

/* --------------------------------------------------------------------------
   Camada de fundo: imagem geometrica cobrindo a tela toda
   -------------------------------------------------------------------------- */
.fundo {
    position: fixed;
    inset: 0;
    background-image: url("imagens/fundo.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Suaviza o brilho estourado da imagem (areas muito claras) */
    filter: brightness(0.9) saturate(0.95);
    z-index: 0;
}

/* --------------------------------------------------------------------------
   Spotlight: escurece o fundo, exceto uma "lanterna" que segue o mouse
   O circulo transparente revela o fundo nitido ao redor do cursor.
   -------------------------------------------------------------------------- */
.spotlight {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
        circle 340px at var(--mx) var(--my),
        rgba(30, 45, 75, 0.00) 0%,
        rgba(30, 45, 75, 0.00) 45%,
        rgba(30, 45, 75, 0.06) 80%,
        rgba(30, 45, 75, 0.11) 100%
    );
    transition: background 0.12s linear;
}

/* --------------------------------------------------------------------------
   Ilha central: logo + texto, centralizada vertical e horizontalmente
   -------------------------------------------------------------------------- */
.ilha {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.ilha .logo-wrap {
    margin: 0;
    line-height: 0;
    font-weight: normal;
}

.ilha .logo {
    display: block;
    width: 320px;
    max-width: 80vw;
    height: auto;
    /* Halo suave para a logo se manter destacada quando a luz se afasta */
    filter: drop-shadow(0 6px 18px rgba(44, 98, 220, 0.28));
}

.ilha .aviso {
    margin-top: 28px;
    max-width: 520px;
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    color: #373435;
    /* Sombra clara + halo azul para legibilidade sobre a area escurecida */
    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.85),
        0 0 22px rgba(44, 98, 220, 0.22);
}

.ilha .aviso strong {
    color: #2C62DC;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
    .ilha .logo {
        width: 240px;
    }

    .ilha .aviso {
        margin-top: 22px;
        font-size: 1.05rem;
    }

    .spotlight {
        background: radial-gradient(
            circle 240px at var(--mx) var(--my),
            rgba(30, 45, 75, 0.00) 0%,
            rgba(30, 45, 75, 0.00) 46%,
            rgba(30, 45, 75, 0.06) 80%,
            rgba(30, 45, 75, 0.11) 100%
        );
    }
}
