/*
site name: COOLTHERM
page: manutenção / em breve
*/

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

:root {
    --bg: #fafafa;
    --ink: #16232b;
    --ink-soft: rgba(22, 35, 43, 0.58);
    --ink-faint: rgba(22, 35, 43, 0.4);
    --accent: #0f5f8c;
    --line: rgba(22, 35, 43, 0.1);
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
    font-family: "Inter", "Arial", sans-serif;
    color: var(--ink);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 380px;
    height: 380px;
    top: -100px;
    left: -90px;
    background: radial-gradient(circle, rgba(15, 95, 140, 0.28), transparent 70%);
}

.blob-2 {
    width: 380px;
    height: 380px;
    bottom: -120px;
    right: -110px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.3), transparent 70%);
}

#main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    box-shadow: 0 30px 70px -35px rgba(16, 36, 48, 0.25);
}

.logo {
    height: 40px;
    width: auto;
    margin-bottom: 56px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

h1 {
    font-weight: 600;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    max-width: 460px;
    text-wrap: balance;
}

h1 .accent {
    color: var(--accent);
}

.subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    max-width: 400px;
    color: var(--ink-soft);
}

.divider {
    width: 40px;
    height: 1px;
    background: var(--line);
    margin: 56px 0 24px;
}

.group-company {
    display: flex;
    align-items: center;
    gap: 12px;
}

.group-company span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink-faint);
}

.group-company a {
    display: flex;
    line-height: 0;
    opacity: 0.9;
    transition: opacity 0.15s ease;
}

.group-company a:hover {
    opacity: 1;
}

.lg-voran {
    height: 20px;
    width: auto;
}

.copyright {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 1;
    text-align: center;
    font-size: 12px;
    color: var(--ink-faint);
    padding: 0 24px;
}

/* ---------- Responsivo ---------- */

@media only screen and (max-width: 600px) {
    html, body {
        height: 100dvh;
        overflow: hidden;
    }
    body {
        background: #f6f6f6;
    }
    .blob {
        width: 220px;
        height: 220px;
        filter: blur(60px);
    }
    .blob-1 {
        top: -60px;
        left: -60px;
    }
    .blob-2 {
        bottom: -70px;
        right: -70px;
    }
    #main {
        max-height: 100dvh;
        padding: min(32px, 4vh) 24px;
        background: none;
        border: none;
        border-radius: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        overflow: hidden;
    }
    .logo {
        height: 30px;
        margin-bottom: min(36px, 5vh);
    }
    .content {
        gap: min(16px, 2vh);
    }
    h1 {
        font-size: clamp(24px, 7vw, 32px);
    }
    .subtitle {
        font-size: 15px;
    }
    .divider {
        margin: min(36px, 5vh) 0 min(18px, 2.5vh);
    }
    .copyright {
        bottom: min(16px, 2.5vh);
        font-size: 11px;
    }
}

/* End */
