﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    background: #09090f;
    color: white;
    overflow-x: hidden;
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: radial-gradient(circle at top,#7c3cff55 0%,transparent 40%), radial-gradient(circle at bottom,#5b21b655 0%,transparent 35%), #09090f;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.left {
    width: 50%;
}

    .left h1 {
        font-size: 72px;
        font-weight: 800;
        margin-bottom: 25px;
    }

    .left p {
        color: #d1d5db;
        font-size: 22px;
        line-height: 38px;
        margin-bottom: 45px;
    }

.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download {
    background: linear-gradient(90deg,#7c3cff,#b84cff);
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 14px;
    font-size: 22px;
    font-weight: bold;
    transition: .25s;
    box-shadow: 0 0 35px rgba(124,60,255,.45);
}

    .download:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 45px rgba(124,60,255,.8);
    }

.versions {
    background: #1b1b28;
    border: 2px solid #7c3cff;
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 14px;
    font-size: 22px;
    font-weight: bold;
    transition: .25s;
}

    .versions:hover {
        background: #7c3cff;
        transform: translateY(-5px);
    }

.right {
    width: 50%;
    display: flex;
    justify-content: center;
}

    .right img {
        width: 430px;
        animation: float 4s ease-in-out infinite;
        filter: drop-shadow(0 0 40px rgba(124,60,255,.6));
    }

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* -------- VERSIONES -------- */

.versions-page {
    max-width: 1000px;
    margin: auto;
    padding: 80px 25px;
}

    .versions-page h1 {
        font-size: 60px;
        margin-bottom: 40px;
    }

.card {
    background: #171721;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #7c3cff;
    margin-bottom: 30px;
    box-shadow: 0 0 25px rgba(124,60,255,.15);
}

    .card h2 {
        font-size: 34px;
        margin-bottom: 20px;
        color: #b892ff;
    }

    .card ul {
        padding-left: 25px;
        font-size: 20px;
        line-height: 40px;
        color: #d4d4d8;
    }

.back {
    display: inline-block;
    padding: 16px 40px;
    background: #7c3cff;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-size: 20px;
    transition: .25s;
}

    .back:hover {
        background: #975cff;
    }

@media(max-width:1000px) {

    .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .left {
        width: 100%;
    }

    .right {
        width: 100%;
    }

    .left h1 {
        font-size: 52px;
    }

    .left p {
        font-size: 19px;
        line-height: 34px;
    }

    .right img {
        width: 280px;
    }

    .buttons {
        justify-content: center;
    }
}
