/* ============================================
   BIO.HTML - ESTILOS ESPECÍFICOS
   ============================================ */

.bio-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

body.light-mode .bio-card {
    background: rgba(0, 0, 0, 0.02);
}

h1 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.highlight {
    color: #00d4ff;
    font-weight: 500;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .bio-card {
        padding: 1.5rem;
    }
}