:root{
    --bg:#05070D;
    --gold:#F7C600;
    --gold-soft:rgba(247,198,0,.25);
    --text:#FFFFFF;
    --muted:#CFCFCF;
}

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

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

body{
    background:var(--bg);
    color:var(--text);

    font-family:'Inter',sans-serif;

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;
    overflow:hidden;
}

/* ===================================
   HORIZONTE OFIRA
=================================== */

body::before{
    content:'';

    position:absolute;

    width:220%;
    height:700px;

    left:50%;
    bottom:-620px;

    transform:translateX(-50%);

    border-radius:50%;

    background:
        radial-gradient(
            ellipse at top,
            rgba(247,198,0,.22) 0%,
            rgba(247,198,0,.08) 25%,
            transparent 70%
        );

    z-index:0;
}

body::after{
    content:'';

    position:absolute;

    width:220%;
    height:700px;

    left:50%;
    bottom:-620px;

    transform:translateX(-50%);

    border-radius:50%;

    border-top:2px solid rgba(247,198,0,.75);

    box-shadow:
        0 0 15px rgba(247,198,0,.30),
        0 0 40px rgba(247,198,0,.15);

    z-index:0;
}

/* ===================================
   CONTAINER
=================================== */

.container{
    position:relative;
    z-index:2;

    width:100%;
    max-width:900px;

    padding:40px 30px;
}

/* ===================================
   LOGO
=================================== */

.logo{
    width:320px;
    max-width:80vw;

    margin-bottom:30px;
}

/* ===================================
   TITULOS
=================================== */

h1{
    font-size:72px;
    font-weight:700;

    letter-spacing:10px;

    margin-bottom:10px;
}

h2{
    color:var(--gold);

    font-size:22px;
    font-weight:300;

    letter-spacing:3px;

    margin-bottom:40px;
}

/* ===================================
   TEXTO
=================================== */

.description{
    max-width:700px;

    margin:0 auto 50px auto;

    color:var(--muted);

    font-size:20px;
    line-height:1.8;
}

/* ===================================
   BOTAO
=================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 42px;

    border:1px solid var(--gold);

    border-radius:12px;

    color:var(--gold);

    text-decoration:none;

    font-size:15px;
    font-weight:600;

    letter-spacing:2px;
    text-transform:uppercase;

    transition:.3s ease;
}

.btn:hover{
    background:var(--gold);
    color:#000;

    transform:translateY(-2px);

    box-shadow:
        0 0 15px rgba(247,198,0,.35);
}

/* ===================================
   FOOTER
=================================== */

footer{
    position:absolute;

    bottom:25px;

    color:#777;

    font-size:13px;

    z-index:2;
}

/* ===================================
   RESPONSIVO
=================================== */

@media(max-width:768px){

    .logo{
        width:240px;
    }

    h1{
        font-size:48px;
        letter-spacing:6px;
    }

    h2{
        font-size:16px;
        margin-bottom:30px;
    }

    .description{
        font-size:17px;
        line-height:1.7;
    }

    .btn{
        width:100%;
        max-width:320px;
    }

    footer{
        font-size:12px;
    }
}