.hero-logo-area {
    text-align: center;
    margin: 40px 0 20px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo-text {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #ffffff, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.hero-logo svg {
    width: 100px;
    height: 100px;
    display: block;
}

.hero-tagline {
    font-size: 0.9rem;
    color: #00ffcc;           /* verde neon */
    font-style: italic;       /* letra inclinada */
    letter-spacing: 4px;
    margin-top: 8px;
    text-transform: uppercase; /* opcional, para dar destaque */
}