.social-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.whatsapp-button,
.instagram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50px;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button {
    background: #25D366;
    animation: bounce 5s infinite;
}

.whatsapp-button:hover {
    background: #6bc1e9;
}

.instagram-button {
    background: transparent;
    animation: bounce 5s infinite;
}

.instagram-button:hover {
    background: #FF6EA0;
}

.logo-a {
    background: rgb(255 255 255 / 77%) !important;
    padding: 0 !important;
    border-radius: 63px !important;
    box-shadow: 0 0 8px rgba(0, 0, 0, 3.1) !important;
}

.scroll-down-arrow {
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}
h1
{
    text-transform: none !important;
}