body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: url('../assets/fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
    backdrop-filter: blur(5px);
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

h1 {
    color: #ff1493;
    font-size: 2rem;
    margin: 1rem 0;
}

.contact {
    margin-top: 1.5rem;
}

.contact-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.05);
    color: #25D366;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}