/* Tema 2 - Oceano Azul */
body {
    background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
}

.container {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 25px 70px rgba(0, 147, 233, 0.3);
}

.profile-image {
    border: 5px solid #0093E9;
    box-shadow: 0 10px 30px rgba(0, 147, 233, 0.5);
}

h1 {
    background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: #4a5568;
}

.link-button {
    background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    box-shadow: 0 4px 15px rgba(0, 147, 233, 0.4);
}

.link-button:hover {
    box-shadow: 0 8px 25px rgba(0, 147, 233, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.link-button.special-1 {
    background: linear-gradient(135deg, #0093E9 0%, #1e3a8a 100%);
}

.link-button.special-2 {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.link-button.special-3 {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.footer {
    color: #64748b;
}

