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

body {
    background-color: #F5F0E8;
    font-family: 'Space Grotesk', sans-serif;
    color: #1e1e1c;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* Logo animado */
.logo-animated {
    animation: floatSoft 3s ease-in-out infinite;
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Nome da marca */
.brand {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.brand span:first-child {
    color: #C85A3A;
}

.trama {
    color: #8A9A6B;
}

/* Typewriter */
.typewriter-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
    font-size: 1.3rem;
    font-weight: 500;
    min-height: 3rem;
}

.typewriter {
    color: #2c2b28;
    font-weight: 500;
}

.cursor {
    color: #C85A3A;
    font-weight: 400;
    animation: blink 0.8s step-end infinite;
    font-size: 1.5rem;
    line-height: 1;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Footer */
.footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #8A9A6B;
    letter-spacing: 0.5px;
}

.footer p {
    opacity: 0.8;
}

/* Responsivo */
@media (max-width: 480px) {
    .brand {
        font-size: 2.2rem;
    }
    .typewriter-wrapper {
        font-size: 1rem;
    }
    .logo-animated svg {
        width: 70px;
        height: 70px;
    }
}
