/* Fundo com imagem */
html {
    color-scheme: light dark;
    font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
    background: url('/bg.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100%;
}

/* Layout central */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;   /* alinha à esquerda */
    align-items: flex-end;          /* empurra para baixo */
    min-height: 100vh;
}

/* Cartão principal */
.container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 1.8rem;              /* antes 2.5rem → reduzido */
    border-radius: 28px;          /* <-- Aumentei aqui (antes era 16px) */
    max-width: 520px;             /* antes 700px → reduzido */
    width: 85%;                   /* mantém responsivo */
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    animation: fadeIn 0.8s ease-out;
    line-height: 1.6;
    margin: 0 0 40px 40px; /* margem inferior e esquerda */
}

/* Título */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #ffd86b;
}

/* Texto */
p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #7ab8ff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Texto final em itálico */
em {
    display: block;
    margin-top: 2rem;
    font-style: italic;
    text-align: center;
    color: #e0e0e0;
}

/* Animação */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    max-width: 140px;   /* tamanho ideal */
    height: auto;
    display: block;
    margin: 0 auto 20px auto; /* centra e dá espaço */
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));
}