/* =========================================
   VIONEX - ESTILOS DE CONTACTO
   ========================================= */

body {
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.98)), 
                url('../assets/fondo_cosultas.png'); /* Usamos el fondo del index para coherencia */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Estilos de la Imagen de Perfil */
.profile-section {
    animation: fadeInUp 0.8s ease-out forwards;
}

.profile-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(100, 255, 218, 0.2);
}

.profile-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 280px;
    height: 280px;
    border: 2px solid var(--vionex-cyan);
    border-radius: 20px;
    z-index: 1;
}

/* Tarjetas de Contacto */
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(17, 34, 64, 0.7);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(35, 53, 84, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--vionex-cyan);
    width: 40px;
    text-align: center;
}

.contact-card small {
    color: #8892b0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.contact-card p {
    font-size: 1.1rem;
    color: #ccd6f6;
}

/* Hover Effects */
.hover-cyan:hover {
    border-color: var(--vionex-cyan);
    background: rgba(100, 255, 218, 0.05);
    transform: translateX(10px);
}

.hover-cyan:hover p {
    color: var(--vionex-cyan);
}

@media (max-width: 768px) {
    .profile-img, .profile-frame {
        width: 220px;
        height: 220px;
    }
}