/* Cabecera linktree */
.hero {
    width: 100%;
    max-width: var(--lt-max-hero);
    text-align: center;
    margin-bottom: 26px;
}

.hero__logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.hero__logo {
    max-width: 248px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.09));
}

.hero__title {
    margin: 0 0 10px;
    font-size: clamp(1.65rem, 4.8vw, 2.35rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--lt-black);
    letter-spacing: -0.02em;
}

.hero__subtitle {
    margin: 0 auto;
    max-width: 520px;
    font-size: 1.08rem;
    line-height: 1.5;
    color: var(--lt-text-soft);
    font-weight: 600;
}

.hero__subtitle--link {
    margin-top: 14px;
    font-size: 0.98rem;
}

.hero__subtitle--link a {
    color: var(--lt-red);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero__subtitle--link a:hover {
    color: var(--lt-red-dark);
}

@media (max-width: 640px) {
    .hero__logo {
        max-width: 200px;
    }

    .hero__subtitle {
        font-size: 1rem;
    }
}
