* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #ffffff; /* Todo el fondo blanco puro */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px; /* Espacio entre el logo y el botón */
    width: 90%;
}

/* Como el fondo ahora es blanco, el logo original (letras negras sobre blanco) 
   se fusionará perfectamente sin necesidad de invertir colores ni magia CSS */
.main-logo {
    width: 100%;
    max-width: 600px; /* Tamaño grande y majestuoso */
    height: auto;
    object-fit: contain;
    animation: fadeInDown 1s ease-out;
}

/* Botón elegante y sutil en negro y blanco */
.email-btn {
    padding: 14px 35px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: #222222;
}

/* Animaciones suaves para que no se vea aburrido al entrar */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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