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

body {
    font-family: 'Inter', sans-serif;
    background: white;
    min-height: 100vh;
    color: #1a1a2e;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    background: white;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-logo {
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin-left: auto;
    margin-right: 32px;
}

.nav-links a {
    display: inline-block;
    text-decoration: none;
    color: #4a5565;
    font-size: 14px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: #6f2e98;
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    color: #1F2937;
    border: 1.5px solid #E5E7EB;
    background: #FAFAFA;
    transition: all 0.2s;
}

.btn-login:hover {
    transform: translateY(-1px);
}

.btn-signup {
    background: #6f2e98;
    color: white;
    transition: all 0.2s;
}

.btn-signup:hover {
    transform: translateY(-2px);
}

footer {
    background: #6f2e98;
    color: white;
    text-align: center;
}

.footer-ini {
    padding: 32px 24px 24px;
}

.footer-ini h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.footer-ini p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 32px;
}

.footer-bottom {
    background: #0f1828;
    padding: 25px 24px;
    font-size: 12px;
    color: white;
}

.footer-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 24px 0;
}

.btn-footer {
    padding: 12px 24px;
    border-radius: 12px;
    background: white;
    color: #6f2e98;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-copy {
    font-size: 12px;
    opacity: 0.5;
}

/* Numeros de pasos */
.numero {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.numero-1 { background: #f3e8fe; color: #9710fa; }
.numero-2 { background: #d1fae4; color: #039966; }
.numero-3 { background: #fef3c6; color: #e17204; }