.instagram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    /* Ubicación elevada según tu preferencia anterior */
    bottom: calc(40px + 5cm + 20px); 
    right: 40px;
    
    /* Degradado oficial de Instagram */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 4px 4px 15px rgba(0,0,0,0.4);
    color: #fff;
}

/* Ajuste del icono para que se vea bien centrado */
.instagram-float i {
    line-height: 0;
}