/* Importa una fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background-color: #121212;
    color: white;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 600px;
    animation: slide-in 1s ease-in-out;
}

/* Animación de Fade In */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}
.delay {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animación de entrada de la caja */
@keyframes slide-in {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Botones */
.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Instagram */
.instagram {
    background-color: #E1306C;
    color: white;
}

.instagram:hover {
    background-color: #b92d57;
    transform: scale(1.05);
}

/* WhatsApp */
.whatsapp {
    background-color: #25D366;
    color: white;
}

.whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}

/* Íconos */
.btn i {
    font-size: 20px;
}