body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

/* Estilos generales del botón flotante */
.tiktok-float-button {
    position: fixed; /* Fija el botón a la ventana */
    bottom: 30px; /* Posición desde abajo */
    right: 30px; /* Posición desde la derecha */
    z-index: 1000; /* Asegura que esté sobre otros elementos */
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Hace el botón circular */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; /* Quita el subrayado del enlace */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
}

/* Estilo del gradiente (inspirado en TikTok) */
.tiktok-float-button {
    background: linear-gradient(45deg, #fe2c55, #ff485a, #ee1d52, #c32f9c, #69c9d0); /* Colores principales */
}

/* Estilo del icono (TikTok) */
.tiktok-float-button i {
    font-size: 28px;
    color: white; /* Color del icono */
}

/* Efecto al pasar el ratón (hover) */
.tiktok-float-button:hover {
    transform: scale(1.1); /* Aumenta un poco el tamaño */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra más pronunciada */
}

/* Media query para pantallas pequeñas (responsive) */
@media (max-width: 768px) {
    .tiktok-float-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .tiktok-float-button i {
        font-size: 24px;
    }
}
