#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0c4633;
    background-size: cover;
    color: white;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    /* REMOVIDO: padding-top: 120px; - isso estava empurrando o logo para baixo */
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    text-align: center;
    margin-top: 20px; /* Pequeno espaçamento entre logo e subtitle */
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle h1 {
    font-size: 1.5rem;
    font-weight: 300;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* CSS específico para o logo no hero - garante posicionamento correto */
.hero-content .splash-logo {
    position: relative; /* Permite que role com o scroll */
    max-width: 400px;
    filter: brightness(0) invert(1);
    z-index: 1;
    /* Centralização mantida pelo flexbox do pai (.hero-content) */
}

.hero-content .splash-logo.released {
    max-width: 400px !important;
    filter: brightness(0) invert(1) !important;
    position: relative !important; /* Garante que role com o scroll */
    z-index: 1;
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: none !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease-out;
    z-index: 3;
}

.scroll-indicator.visible {
    opacity: 1;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
    animation: bounce 2s infinite;
}

.scroll-indicator p a{
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.scroll-indicator a:link,
.scroll-indicator a:visited,
.scroll-indicator a:hover,
.scroll-indicator a:active {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    text-decoration: none; /* se quiser remover o sublinhado */
}




@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@media (max-width: 768px) {
    .hero-content .splash-logo {
        max-width: 300px;
    }
    
    .hero-subtitle h1 {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-content .splash-logo {
        max-width: 250px;
    }
    
    .hero-subtitle h1 {
        font-size: 1rem;
        padding: 0 15px;
    }
}

