/* Reset básico de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Contenedor principal de la tarjeta de bienvenida */
.welcome-container {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

/* Estilo del Logo / Título */
.logo {
    font-size: 2rem;
    font-weight: 600;
    color: #023e8a;
    /* Un tono azul elegante */
    letter-spacing: 1px;
}

.logo span {
    color: #f77f00;
    /* Un toque naranja cálido */
}

/* Sección de contenido */
.content h2 {
    font-size: 1.6rem;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #222;
}

.content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Botón de acción */
.btn-primary {
    display: inline-block;
    background-color: #023e8a;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(2, 62, 138, 0.3);
}

.btn-primary:hover {
    background-color: #0077b6;
    transform: translateY(-2px);
}

/* Pie de página */
footer p {
    font-size: 0.8rem;
    color: #999;
    margin-top: 20px;
}