/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: white;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.profile-image {
    background: linear-gradient(135deg, #0073b1, #2c3e50); /* Azul estilo LinkedIn/UC */
    padding: 30px 0;
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
}

.content {
    padding: 30px;
}

h1 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

h2 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: normal;
}

p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Colores específicos para cada botón */
.linkedin {
    background-color: #0077b5;
    color: white;
}
.linkedin:hover { background-color: #005582; }

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}
.instagram:hover { opacity: 0.9; }

.email {
    background-color: #333;
    color: white;
}
.email:hover { background-color: #000; }