body.bg-aliceblue {
    background-color: aliceblue;
    scroll-behavior: smooth;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

/* Header con gradiente e imagen */
.custom-header {
    min-height: 60vh;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(37, 99, 235, 0.7)), 
                url('fotos/fondo-cabecera.webp') no-repeat center center;
    background-size: cover;
    padding-top: 100px;
}

.linea-cabecera {
    color: #38bdf8;
}

/* Navbar con efecto Blur */
.custom-navbar {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.custom-navbar .nav-link {
    color: white !important;
    font-weight: 500;
}

.custom-navbar .nav-link:hover {
    color: #38bdf8 !important;
}

.profile-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.tech-logos img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.tech-logos img:hover {
    transform: scale(1.2);
}

.text-justify {
    text-align: justify;
}

section {
    scroll-margin-top: 100px;
}

@media (max-width: 991px) {
    aside {
        margin-bottom: 2rem;
    }
    .profile-img {
        max-width: 180px; 
    }
}
#bienvenido{
    text-align: left !important;
    margin-left: 16%;
}