*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --bg:#050816;
    --bg2:#0f172a;

    --primary:#6366f1;
    --secondary:#8b5cf6;
    --accent:#06b6d4;

    --text:#ffffff;
    --muted:#cbd5e1;

    --glass:rgba(255,255,255,.08);
    --border:rgba(255,255,255,.12);

}

html,
body{

    width:100%;
    min-height:100%;

    font-family:'Inter',sans-serif;

    background:
        linear-gradient(
            135deg,
            #050816 0%,
            #0f172a 35%,
            #1e1b4b 100%
        );

    overflow-x:hidden;
    overflow-y:auto;

}

#bg{

    position:fixed;
    inset:0;

    z-index:0;
    pointer-events:none;

}

.gradient-orb{

    position:fixed;

    border-radius:50%;

    filter:blur(120px);

    opacity:.25;

    pointer-events:none;

    z-index:1;

}

.orb-1{

    width:500px;
    height:500px;

    background:#6366f1;

    top:-150px;
    left:-100px;

}

.orb-2{

    width:450px;
    height:450px;

    background:#06b6d4;

    right:-100px;
    bottom:-100px;

}

.wrapper{

    position:relative;
    z-index:2;

    width:100%;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px 30px;

}

.card{

    max-width:900px;
    width:100%;

    background:var(--glass);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid var(--border);

    border-radius:32px;

    padding:60px;

    text-align:center;

    box-shadow:
        0 20px 60px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.05);

}

/* ==========================
   LOGO
========================== */

.logo-container{

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:10px;

}

.logo-glass{

    padding:20px 30px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.20);

}

.logo{

    display:block;

    max-width:280px;
    width:100%;
    height:auto;

    filter:
        drop-shadow(
            0 10px 30px rgba(99,102,241,.25)
        );

    animation:logoFloat 6s ease-in-out infinite;

}

@keyframes logoFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/* ==========================
   BADGE
========================== */

.badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:25px;

    padding:12px 20px;

    border-radius:999px;

    background:rgba(255,255,255,.06);

    color:#dbeafe;

    font-size:.9rem;
    font-weight:600;

}

/* ==========================
   TITULO
========================== */

h1{

    color:white;

    font-size:
        clamp(
            2.4rem,
            5vw,
            4.6rem
        );

    margin-top:30px;
    margin-bottom:20px;

    font-weight:800;

    line-height:1.05;

}

.highlight{

    background:
        linear-gradient(
            90deg,
            #60a5fa,
            #a78bfa,
            #22d3ee
        );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* ==========================
   TEXTO
========================== */

.subtitle{

    color:var(--muted);

    font-size:1.15rem;

    line-height:1.8;

    max-width:750px;

    margin:auto;

}

.separator{

    width:120px;
    height:2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.7),
            transparent
        );

    margin:40px auto;

}

.info{

    color:#e2e8f0;

    line-height:1.9;

    font-size:1.05rem;

    max-width:760px;

    margin:auto;

}

.info strong{

    color:white;

}

/* ==========================
   CTA
========================== */

.cta-container{

    margin-top:40px;

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:15px;

}

.cta-button{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 28px;

    border-radius:16px;

    text-decoration:none;

    color:#fff;

    font-weight:700;
    font-size:1rem;

    background:
        linear-gradient(
            135deg,
            #6366f1,
            #8b5cf6
        );

    box-shadow:
        0 15px 35px rgba(99,102,241,.35);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

.cta-button:hover{

    transform:translateY(-3px);

    box-shadow:
        0 20px 45px rgba(99,102,241,.45);

}

.cta-button i{

    font-size:1.1rem;

}

.cta-text{

    color:#cbd5e1;

    font-size:.95rem;

    font-style:italic;

    text-align:center;

    max-width:500px;

}

/* ==========================
   FOOTER
========================== */

.footer{

    margin-top:45px;

    display:flex;
    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.item{

    padding:12px 18px;

    border-radius:14px;

    background:
        rgba(
            255,
            255,
            255,
            .05
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    color:#dbeafe;

    font-size:.9rem;

}

.item i{

    margin-right:8px;

}

/* ==========================
   NOTEBOOKS
========================== */

@media (max-height:900px){

    .wrapper{

        align-items:flex-start;

        padding-top:40px;
        padding-bottom:40px;

    }

}

@media (max-height:800px){

    .card{

        padding:40px;

    }

    h1{

        font-size:
            clamp(
                2rem,
                4vw,
                3.5rem
            );

        margin-top:20px;
        margin-bottom:15px;

    }

    .badge{

        margin-top:20px;

    }

    .separator{

        margin:25px auto;

    }

}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .card{

        padding:50px 35px;

    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .wrapper{

        padding:20px;

    }

    .card{

        padding:35px 25px;

        border-radius:24px;

    }

    .logo{

        max-width:220px;

    }

    h1{

        font-size:
            clamp(
                2rem,
                8vw,
                3rem
            );

    }

    .subtitle,
    .info{

        font-size:1rem;

        line-height:1.8;

    }

    .cta-button{

        width:100%;

        justify-content:center;

    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .card{

        padding:28px 20px;

    }

    .logo-glass{

        padding:15px 20px;

    }

    .logo{

        max-width:180px;

    }

    .badge{

        font-size:.8rem;

        padding:10px 16px;

    }

    .footer{

        flex-direction:column;

        align-items:center;

    }

    .item{

        width:100%;

        text-align:center;

    }

}