:root{
    --bg-main:#dde6c8;
    --primary:#10642c;
    --secondary:#4fc547;
    --accent:#fca405;
    --text:#ffffff;
    --dark:#1c2c54;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    min-height:100vh;
    background: linear-gradient(135deg, #0a3f1c 0%, #10642c 45%, #4fc547 100%);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

/* EFECTOS */
body::before,
body::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.35;
}

body::before{
    width:300px;
    height:300px;
    background:#fca405;
    top:-80px;
    left:-80px;
}

body::after{
    width:350px;
    height:350px;
    background:#06b9dc;
    bottom:-120px;
    right:-120px;
}

/* CONTENIDO */
.coming-container{
    width:90%;
    max-width:750px;
    text-align:center;
    padding:60px 40px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    position:relative;
    z-index:2;
}

/* LOGO */
.logo{
    width:170px;
    margin-bottom:35px;
}

/* ETIQUETA */
.badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(252,164,5,.15);
    color:#ffe29d;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:25px;
    border:1px solid rgba(252,164,5,.35);
}

/* TITULO */
.coming-container h1{
    color:var(--text);
    font-size:70px;
    line-height:1;
    margin-bottom:25px;
    font-weight:700;
}

/* TEXTO */
.coming-container p{
    color:rgba(255,255,255,.9);
    font-size:19px;
    line-height:1.8;
    max-width:600px;
    margin:auto;
    margin-bottom:40px;
}

/* BOTON */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 35px;
    background:var(--accent);
    color:var(--dark);
    text-decoration:none;
    border-radius:14px;
    font-weight:700;
    transition:.35s ease;
}

.btn:hover{
    transform:translateY(-5px) scale(1.03);
    background:#ffb833;
}

/* TEXTO PEQUEÑO */
.small-text{
    margin-top:30px;
    color:rgba(255,255,255,.65);
    font-size:14px;
    letter-spacing:.5px;
}

/* ANIMACION */
.float{
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* RESPONSIVE */
@media(max-width:768px){

    .coming-container{
        padding:50px 25px;
    }

    .coming-container h1{
        font-size:48px;
    }

    .coming-container p{
        font-size:17px;
    }

    .logo{
        width:130px;
    }
}

@media(max-width:480px){

    .coming-container h1{
        font-size:38px;
    }

    .coming-container p{
        font-size:15px;
        line-height:1.7;
    }

    .btn{
        width:100%;
    }
}