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

body {
    background-color: #ffffff; /* Fondo blanco limpio */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a1a;
}

.container {
    text-align: center;
    max-width: 500px;
    padding: 20px;
}

.logo {
    max-width: 180px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px; /* Botón redondeado moderno */
    font-weight: 600;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    to { opacity: 1; }
}