/* ===============================================
   Home Section Styles
   =============================================== */

#home {
    padding: 100px 30px 120px 30px;
    background: linear-gradient(180deg ,var(--color2), var(--color1));
}

.inicio {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 150px;
    align-items: center;
    padding: 0 20px;
}

.Presentacion-Inicio {
    display: flex;
    flex-direction: column;
    min-width: 280px;
    max-width: 500px;
    font-family: fantasy;
    flex-shrink: 0;
}

.Presentacion-Inicio h2 {
    margin: 0 0 16px 0;
    font-size: 30px;
    line-height: 1.2;
    color: var(--color4);
    font-family: 'Press Start 2P', sans-serif;
    letter-spacing: 0.5px;
    animation: brillo 3s ease-in-out infinite;
}

.Presentacion-Inicio p {
    margin: 0;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 22px;
    color: #FF8040;
    max-width: 70ch;
    animation: aparecer 0.8s ease-out 0.2s backwards;
}

.Foto-inicio {
    width: 470px;
    height: 470px;
    border-radius: 50%;
    border: solid 4px var(--color4);
    background: var(--color1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.18);
    animation: flotando 3s ease-in-out infinite;
}

.Foto-inicio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

/* Animaciones */
@keyframes flotando {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes brillo {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Card Styles */
.perfil {
    margin-top: 24px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
}

.profile-header {
    display: flex;
    gap: 16px;
    align-items: center;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    background: var(--color3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.profile-info h4 {
    margin: 0 0 4px 0;
    font-size: 22px;
    color: var(--color3);
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    letter-spacing: 0.25px;
    text-transform: none;
    font: bold;
}

.profile-info p {
    margin: 0;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
}

/* Social Links in Profile Card */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background: var(--color3);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 128, 64, 0.4);
}

.social-links svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}
