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

body, html {
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d4af37;
    font-family: 'Times New Roman', Times, serif;
    overflow: hidden;
}

.intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    width: 100%;
}

/* Wrapper mantém proporção 889:1483 do tronco */
.logo-wrapper {
    position: relative;
    width: min(260px, 55vw);
    aspect-ratio: 889 / 1483;
    margin-bottom: clamp(16px, 3vw, 32px);
}

.logo-wrapper img {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
}

/* Tronco ocupa toda a altura do wrapper */
.tronco {
    top: 0;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    animation: subirTronco 1.8s ease-out 0.5s forwards;
}

/* Circulo posicionado para alinhar com o tronco */
.circulo {
    top: 2.70%;
    height: 58.66%;
    object-fit: contain;
    object-position: top center;
    animation: surgirCirculo 2s ease-out 2s forwards;
}

@keyframes subirTronco {
    0%   { opacity: 0; transform: translateY(30%); }
    100% { opacity: 1; transform: translateY(0);   }
}

@keyframes surgirCirculo {
    0%   { opacity: 0; transform: scale(0.2) rotate(-180deg); }
    100% { opacity: 1; transform: scale(1)   rotate(0deg);    }
}

.text-wrapper {
    width: 100%;
    max-width: 520px;
}

.word-reveal {
    font-size: clamp(14px, 3.5vw, 24px);
    font-weight: normal;
    letter-spacing: clamp(1px, 0.3vw, 3px);
    display: flex;
    gap: clamp(4px, 1vw, 10px);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: clamp(8px, 1.5vw, 16px);
}

.word-reveal span {
    opacity: 0;
    animation: fadePalavra 0.5s ease-in forwards;
}

.word-reveal span:nth-child(1) { animation-delay: 4.2s; }
.word-reveal span:nth-child(2) { animation-delay: 4.7s; }
.word-reveal span:nth-child(3) { animation-delay: 5.2s; }
.word-reveal span:nth-child(4) { animation-delay: 5.7s; }
.word-reveal span:nth-child(5) { animation-delay: 6.2s; }
.word-reveal span:nth-child(6) { animation-delay: 6.7s; }

@keyframes fadePalavra {
    to { opacity: 1; }
}

.under-construction-text {
    font-size: clamp(11px, 2.5vw, 17px);
    font-weight: normal;
    letter-spacing: clamp(2px, 0.5vw, 4px);
    opacity: 0;
    animation: fadeFinal 1.5s ease-in 8s forwards;
}

@keyframes fadeFinal {
    to { opacity: 1; }
}
