.hero-home {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7.5rem 0 5.5rem;
}

.hero-home__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--hero-backdrop-image, url("/assets/images/banner2.jpg")) no-repeat right center;
    background-size: contain;
}

.hero-home__backdrop::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.9) 28%,
        rgba(255, 255, 255, 0.55) 48%,
        rgba(255, 255, 255, 0.15) 62%,
        transparent 72%
    );
}

.hero-home__container {
    position: relative;
    z-index: 1;
}

.hero-home__content {
    max-width: 38rem;
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(6px);
}

.hero-home__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(245, 71, 72, 0.12);
    color: var(--primary-color, #f54748);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-home__role {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.75rem;
    min-height: 2rem;
    margin-bottom: 0.85rem;
}

.hero-home__role-label {
    color: var(--font-color, #666);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-home__role-value {
    min-width: 9.5rem;
    color: var(--heading-color, #060606);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-home__title {
    margin-bottom: 0.85rem;
    color: var(--heading-color, #060606);
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.12;
    font-weight: 700;
}

.hero-home__lead {
    margin-bottom: 1.25rem;
    color: var(--font-color, #555);
    font-size: 1.02rem;
    line-height: 1.7;
}

.hero-home__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin: 0 0 1.25rem;
    padding: 0 0 1.25rem;
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-home__trust li {
    color: var(--font-color, #555);
    font-size: 0.92rem;
}

.hero-home__trust-value {
    color: var(--heading-color, #060606);
    font-weight: 700;
}

.hero-home__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

.hero-home__highlights a {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    min-height: 44px;
    line-height: 1.6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--heading-color, #060606);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-home__highlights a:hover {
    border-color: rgba(245, 71, 72, 0.35);
    color: var(--primary-color, #f54748);
    transform: translateY(-1px);
}

.hero-home__highlights a:focus-visible {
    outline: 2px solid var(--primary-color, #f54748);
    outline-offset: 2px;
}

.hero-home__actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-home__cta {
    min-width: 160px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-home__cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--heading-color, #060606);
    border-radius: var(--border-radius-full, 30px);
    background: transparent;
    color: var(--heading-color, #060606);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-home__cta-outline:hover {
    border-color: var(--primary-color, #f54748);
    background: rgba(245, 71, 72, 0.08);
    color: var(--primary-color, #f54748);
}

.hero-home__cta-outline:focus-visible,
.hero-home__cta:focus-visible,
.hero-home__scroll:focus-visible {
    outline: 2px solid var(--primary-color, #f54748);
    outline-offset: 3px;
}

.hero-home__actions-note {
    margin: 0.85rem 0 0;
    color: var(--font-color, #666);
    font-size: 0.88rem;
}

.hero-home__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: var(--font-color, #666);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transform: translateX(-50%);
    animation: hero-scroll-bounce 2s ease-in-out infinite;
}

.hero-home__scroll i {
    font-size: 0.95rem;
}

.hero-typed-text {
    color: var(--primary-color, #f54748);
}

.hero-typed-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 2px;
    background: currentColor;
    vertical-align: -0.1em;
    animation: hero-cursor-blink 1s step-end infinite;
}

.hero-typed-cursor.typing {
    animation: none;
    opacity: 1;
}

@keyframes hero-cursor-blink {
    50% {
        opacity: 0;
    }
}

@keyframes hero-scroll-bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

[data-theme="dark"] .hero-home__backdrop::before {
    background: linear-gradient(
        to right,
        rgb(31 31 31 / 95%) 0%,
        rgb(8 8 8 / 55%) 40%,
        rgb(8 8 8 / 20%) 58%,
        transparent 72%
    );
}

[data-theme="dark"] .hero-home__content {
    background: rgba(25, 33, 30, 0.72);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .hero-home__highlights a {
    background: rgba(25, 33, 30, 0.88);
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .hero-home__trust {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .hero-home__cta-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--heading-color, #fdfffc);
}

@media (prefers-reduced-motion: reduce) {
    .hero-home__scroll {
        animation: none;
    }

    .hero-typed-cursor {
        animation: none;
    }
}

.hero-home__content--cro {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-home__content--cro .hero-home__eyebrow {
    display: inline-block;
}

.hero-home__content--cro .hero-home__lead {
    margin-left: auto;
    margin-right: auto;
}

.hero-home__content--cro .hero-home__actions-row {
    justify-content: center;
}

.hero-home__content--cro .hero-home__stack,
.hero-home__content--cro .hero-home__trust {
    justify-content: center;
}

.hero-home__content--cro .hero-home__highlights {
    margin-bottom: 0;
}

.hero-home__content--cro .hero-home__role {
    margin-top: 0.25rem;
}

@media (max-width: 991px) {
    .hero-home {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 2.75rem;
    }

    .hero-home__backdrop {
        background-size: cover;
        background-position: center top;
    }

    .hero-home__backdrop::before {
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.92) 42%,
            rgba(255, 255, 255, 0.72) 100%
        );
    }

    [data-theme="dark"] .hero-home__backdrop::before {
        background: linear-gradient(
            to bottom,
            rgb(25 33 30 / 96%) 0%,
            rgb(25 33 30 / 88%) 45%,
            rgb(25 33 30 / 72%) 100%
        );
    }

    .hero-home__content {
        padding: 1.1rem 0.95rem;
    }

    .hero-home__content--cro .hero-home__role {
        display: none;
    }

    .hero-home__content--cro .hero-home__highlights {
        display: none;
    }

    .hero-home__stack {
        gap: 0.35rem;
    }

    .hero-home__stack li {
        font-size: 0.72rem;
        padding: 0.28rem 0.55rem;
    }

    .hero-home__scroll {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-home__eyebrow {
        margin-bottom: 0.55rem;
        font-size: 0.78rem;
    }

    .hero-home__title {
        margin-bottom: 0.55rem;
        font-size: 1.55rem;
        line-height: 1.15;
    }

    .hero-home__lead {
        margin-bottom: 0.75rem;
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .hero-home__actions-note {
        margin-top: 0.55rem;
        font-size: 0.8rem;
    }

    .hero-home__trust--compact {
        display: none;
    }

    .hero-home__stack {
        margin-bottom: 0.65rem;
    }

    .hero-home__actions-row {
        flex-direction: column;
    }

    .hero-home__cta,
    .hero-home__cta-outline,
    .hero-home__cta-whatsapp {
        width: 100%;
    }

    .hero-home__trust {
        flex-direction: column;
        gap: 0.5rem;
    }
}
