/* ===== ESTILOS MEJORADOS ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    scroll-behavior: smooth;
}

/* 1. NAVBAR CON TU TOQUE */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #0a192f !important; /* Azul oscuro profesional */
}
.navbar-brand {
    font-weight: 700;
    color: #64ffda !important; /* Detalle en verde menta */
}
.navbar .nav-link {
    color: rgba(255,255,255,0.7) !important;
    transition: color 0.2s;
}
.navbar .nav-link:hover {
    color: #64ffda !important;
}

/* 2. SECCIÓN INICIO CON PERSONALIDAD */
#inicio {
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    color: white;
    min-height: 90vh;
}
#inicio h1 span {
    color: #64ffda;
}
#inicio .lead {
    color: #8892b0;
}
#inicio .btn-primary {
    background: #64ffda;
    border-color: #64ffda;
    color: #0a192f;
    font-weight: 600;
}
#inicio .btn-primary:hover {
    background: transparent;
    color: #64ffda;
}

/* 3. TARJETAS CON EFECTO PROFESIONAL */
.card {
    border: none;
    background: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
}
.card .badge {
    font-weight: 500;
    background: #e6f1ff !important;
    color: #0a192f !important;
}

/* Efecto para la foto de perfil */
#sobre-mi img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#sobre-mi img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
}

/* Corrección de color para subtítulos en fondo oscuro */
#inicio .text-muted {
    color: #a8b2d1 !important; /* Gris claro con buen contraste */
    font-size: 1.2rem;
}

/* Footer - Efectos en íconos sociales */
footer a {
    transition: all 0.3s ease;
    display: inline-block;
}
footer a:hover {
    color: #64ffda !important;
    transform: translateY(-3px);
}
footer .badge {
    font-weight: 500;
    padding: 0.35rem 0.65rem;
}

/* Estilo para enlaces generales */
a {
    color: #64ffda;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #ffffff;
    text-decoration: underline;
}