* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    min-height: 100vh;
    color: white;
}

.contenedor {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    width: 90%;
    max-width: 900px;
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.botones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.btn {
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    padding: 20px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(59, 130, 246, 0.4);
}

@media (max-width: 700px) {
    .botones {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }
}