@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #0a0f1c;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    text-align: center;
}

.container {
    z-index: 2;
    max-width: 90%;
    animation: fadeIn 1.5s ease-out;
}

.logo-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    height: auto;
    /* deixa o container adaptar a altura */
}

.logo-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 500px;
    object-fit: contain;
    /* mantém a proporção e evita corte */
    animation: pulseZoom 4s ease-in-out infinite;
    filter: drop-shadow(0 0 2px #5da65b);
    transition: transform 0.3s;
}

@keyframes pulseZoom {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@media (max-width: 480px) {
    .logo-container {
        max-width: 100%;
        height: 250px;
        /* altura fixa maior para celular */
    }

    .logo-container img {
        height: 300px;
    }
}


h1 {
    font-size: 2.5rem;
    margin: 20px 0 10px;
    color: #5da65b;
}

p {
    font-family: 'Share Tech Mono', monospace;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.07em;
    color: #00ffcc;
    /* verde-azulado futurista */
    text-shadow:
        0 0 5px rgba(0, 255, 204, 0.8),
        0 0 10px rgba(0, 255, 204, 0.5);
    line-height: 1.4;
    max-width: 600px;
    /* opcional para limitar largura do texto */
    margin: 0 auto;
    text-align: center;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}