body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #060481;
    overflow: hidden;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    animation: fadeIn 2s ease-in-out;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000000;
    animation: slideDown 1s ease-in-out;
}

.contact-links {
    display: flex;
    gap: 20px;
}

.contact-link {
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    opacity: 0;
    animation: popUp 1s forwards;
}

.whatsapp {
    background-color: #048332;
}

.instagram {
    background-color: #E4405F;
}

.contact-link:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideDown {
    0% { transform: translateY(-50px); }
    100% { transform: translateY(0); }
}

@keyframes popUp {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}