.hp-home-hero__grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .hp-home-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem 3rem;
    }
}

.hp-home-hero__title {
    margin: 0;
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    line-height: 1.12;
    font-weight: 800;
    color: var(--cs-text, #0f172a);
    letter-spacing: -0.02em;
}

.hp-home-hero__intro {
    min-width: 0;
}

.hp-home-hero__lead {
    margin: 1.1rem 0 0;
    max-width: 36rem;
    font-size: clamp(0.95rem, 1.6vw, 1.08rem);
    line-height: 1.65;
}

/* Busca hero: mesmas classes do header (`app-site-header-search*`), escala maior. */
.hp-home-hero__search.app-site-header-search {
    position: relative;
    width: 100%;
    max-width: 36rem;
    margin-top: 1.35rem;
}

.hp-home-hero__search .app-site-header-search__input {
    padding: 0.85rem 3.35rem 0.85rem 1rem;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.4;
    border-radius: 0.5rem;
}

.hp-home-hero__search .app-site-header-search__btn {
    padding: 0 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
}

.hp-home-hero__search .app-site-header-search__icon {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .hp-home-hero__search .app-site-header-search__input {
        padding: 0.95rem 3.5rem 0.95rem 1.05rem;
    }
}

.hp-home-hero__tagline {
    margin: 0.9rem 0 0;
    max-width: 36rem;
    padding: 0.7rem 0.9rem;
    font-size: clamp(0.88rem, 1.4vw, 0.98rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--cs-btn-primary-bg);
    border-left: 3px solid var(--cs-btn-primary-bg);
    background: color-mix(in srgb, var(--cs-btn-primary-bg) 9%, var(--cs-surface));
    border-radius: 0 0.45rem 0.45rem 0;
}

.theme-dark .hp-home-hero__tagline {
    background: color-mix(in srgb, var(--cs-btn-primary-bg) 16%, #000);
}

.hp-home-hero__aside {
    min-width: 0;
}

.hp-home-hero__advantage-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hp-home-hero__advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid color-mix(in srgb, var(--cs-border) 88%, var(--cs-btn-primary-bg));
    background: color-mix(in srgb, var(--cs-surface) 94%, var(--cs-btn-primary-bg) 6%);
    transition: border-color 160ms ease, background-color 160ms ease;
}

.hp-home-hero__advantage-item:hover {
    border-color: color-mix(in srgb, var(--cs-btn-primary-bg) 35%, var(--cs-border));
    background: color-mix(in srgb, var(--cs-surface) 88%, var(--cs-btn-primary-bg) 12%);
}

.hp-home-hero__advantage-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.65rem;
    color: var(--cs-btn-primary-bg);
    background: color-mix(in srgb, var(--cs-btn-primary-bg) 12%, var(--cs-surface));
}

.hp-home-hero__advantage-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.hp-home-hero__advantage-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.hp-home-hero__advantage-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--cs-text, #0f172a);
}

.hp-home-hero__advantage-desc {
    font-size: 0.84rem;
    line-height: 1.5;
}

.theme-dark .hp-home-hero__advantage-item {
    background: color-mix(in srgb, var(--cs-surface) 92%, #000 8%);
    border-color: color-mix(in srgb, var(--cs-border) 75%, #fff 10%);
}

.theme-dark .hp-home-hero__advantage-title {
    color: var(--cs-text, #f8fafc);
}

.theme-dark .hp-home-hero__advantage-icon {
    background: color-mix(in srgb, var(--cs-btn-primary-bg) 22%, #000);
}
