/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #19181D;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh; /* Compatível com iPhone e Android */
    text-align: center;
    padding: 0;
    overflow: hidden; /* Impede qualquer scroll */
}

/* Mantemos um container fixo */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    padding-top: 5vh; /* Ajuste fino para subir um pouco */
}

/* Logo Responsiva */
.logo {
    width: 25vw;
    max-width: 300px;
    animation: pulsar 1s infinite ease-in-out;
    filter: drop-shadow(0 0 15px #FFEFA5);
}

/* Animação da Logo */
@keyframes pulsar {
    0% { transform: scale(1.07); }
    30% { transform: scale(1.0); }
    100% { transform: scale(0.8); }
}

/* Texto Responsivo - Mantém tudo em uma linha */
.informacao {
    font-family: sans-serif;
    font-size: 2vw;
    color: #fcd498;
    letter-spacing: 2px;
    margin-top: 10px;
    white-space: nowrap; /* Impede quebra de linha */
    filter: drop-shadow(0 0 2px #FFFFFF);
}

/* 📱 Para telas menores que 600px (Celulares) */
@media (max-width: 600px) {
    .logo {
        width: 50vw;
        max-width: 250px;
    }

    .informacao {
        font-size: 4vw;
    }
}

/* 💻 Para telas médias de 601px a 1024px (Tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
    .logo {
        width: 30vw;
        max-width: 280px;
    }

    .informacao {
        font-size: 3vw;
    }
}

/* 🖥️ Para telas grandes acima de 1025px (Desktops) */
@media (min-width: 1025px) {
    .logo {
        width: 20vw;
        max-width: 320px;
    }

    .informacao {
        font-size: 2vw;
    }
}
