/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   CONFIGURAÇÕES GERAIS
   ========================================================= */

:root {
    --primary: #0f2747;
    --secondary: #1c4f80;
    --accent: #d4a843;
    --text: #263238;
    --text-light: #68747c;
    --background: #f5f7fa;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--background);
    color: var(--text);
    min-height: 100vh;
}


/* =========================================================
   ÁREA PRINCIPAL
   ========================================================= */

.maintenance {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(28, 79, 128, 0.10),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(212, 168, 67, 0.10),
            transparent 35%
        ),
        var(--background);
}


/* =========================================================
   CONTEÚDO
   ========================================================= */

.content {
    width: min(90%, 760px);

    padding: 60px 40px;

    text-align: center;

    background: rgba(255, 255, 255, 0.94);

    border-radius: 20px;

    box-shadow:
        0 20px 60px rgba(15, 39, 71, 0.10);

    animation: fadeIn 1s ease;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    width: 76px;
    height: 76px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    font-size: 34px;
    font-weight: 700;

    border: 4px solid var(--accent);

    box-shadow:
        0 8px 25px rgba(15, 39, 71, 0.20);
}

.logo span {
    transform: translateY(-1px);
}


/* =========================================================
   TÍTULO PEQUENO
   ========================================================= */

.eyebrow {
    margin-bottom: 18px;

    color: var(--secondary);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================================
   TÍTULO PRINCIPAL
   ========================================================= */

h1 {
    color: var(--primary);

    font-size: clamp(40px, 7vw, 68px);

    line-height: 1.08;

    font-weight: 300;
}

h1 strong {
    font-weight: 700;
}


/* =========================================================
   DIVISOR
   ========================================================= */

.divider {
    width: 70px;
    height: 4px;

    margin: 28px auto;

    border-radius: 10px;

    background: var(--accent);
}


/* =========================================================
   MENSAGEM
   ========================================================= */

.message {
    max-width: 620px;

    margin: 0 auto 12px;

    color: var(--text-light);

    font-size: 18px;

    line-height: 1.7;
}

.message strong {
    color: var(--primary);
}


/* =========================================================
   STATUS
   ========================================================= */

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 28px;
    padding: 12px 20px;

    border-radius: 30px;

    background: #f0f4f8;

    color: var(--secondary);

    font-size: 14px;
    font-weight: 600;
}

.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #2e9d5b;

    box-shadow: 0 0 0 5px rgba(46, 157, 91, 0.12);
}


/* =========================================================
   RODAPÉ
   ========================================================= */

footer {
    position: absolute;

    bottom: 25px;

    width: 100%;

    padding: 0 20px;

    text-align: center;

    color: #8a949b;

    font-size: 13px;
}


/* =========================================================
   ANIMAÇÃO
   ========================================================= */

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 600px) {

    .content {
        padding: 45px 25px;
    }

    .logo {
        width: 65px;
        height: 65px;

        font-size: 28px;

        margin-bottom: 25px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    h1 {
        font-size: 42px;
    }

    .message {
        font-size: 16px;
    }

    .status {
        font-size: 12px;
    }

    footer {
        bottom: 15px;
        font-size: 11px;
    }

}