* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;

    background: linear-gradient(
        to top,
        #020617,
        #0a1f44,
        #1e4db7,
        #4da3ff
    );

    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Container */
.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
}

/* FOTO */
.profile {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 15px;
    object-fit: cover;

    transition: all 0.4s ease;
}

/* ✨ ANIMAÇÃO NA FOTO */
.profile:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

/* Nome */
h1 {
    margin-bottom: 25px;
    font-size: 22px;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Botões */
.btn {
    text-decoration: none;
    background: white;
    color: #020617;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: all 0.4s ease;
}

/* Ícones */
.btn i {
    font-size: 18px;
}

/* ✨ Hover padrão (GitHub) */
.btn:hover {
    transform: scale(1.1) rotate(3deg);
    background: #020617;
    color: white;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

/* 🔥 Instagram */
.btn:nth-child(2):hover {
    transform: scale(1.1) rotate(3deg);
    
    background: linear-gradient(45deg, #ff0066, #cc00ff);
    color: white;

    box-shadow: 
        0 0 6px #ff0066,
        0 0 12px #cc00ff,
        0 0 18px #ff66cc;
}

/* 🔵 LinkedIn */
.btn:nth-child(3):hover {
    transform: scale(1.1) rotate(3deg);
    
    background: #0a66c2;
    color: white;

    box-shadow: 
        0 0 6px #0a66c2,
        0 0 12px #0a66c2,
        0 0 18px #4da3ff;
}

/* Responsivo */
@media (max-width: 500px) {
    .profile {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 20px;
    }

    .btn {
        padding: 12px;
        font-size: 14px;
    }
}
