.net-hero {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.net-hero__content {
    max-width: 760px;
}

.net-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.net-hero__title {
    margin: 0 0 20px;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1;
    font-weight: 800;
}

.net-hero__description {
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
    line-height: 1.55;
}

.net-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.net-hero__button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    color: #0f172a;
}

@media (max-width: 767px) {
    .net-hero {
        border-radius: 18px;
    }

    .net-hero__description {
        font-size: 17px;
    }
}

.net-cta {
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}

.net-cta__content {
    max-width: 820px;
    margin: 0 auto;
}

.net-cta__title {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 800;
}

.net-cta__description {
    margin: 0 auto 28px;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.7;
}

.net-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}

/* ══════════════════════════════════════════════
   NET CTA AVANÇADO — net-cta
   ══════════════════════════════════════════════ */
.net-cta {
    width: 100%;
}

.net-cta__inner {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.net-cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.net-cta--split .net-cta__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.net-cta__copy {
    max-width: 760px;
}

.net-cta__title,
.net-cta__description {
    margin-top: 0;
}

.net-cta__description {
    margin-bottom: 0;
}

.net-cta__actions {
    display: flex;
    flex-wrap: wrap;
}

.net-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.net-cta__button:hover,
.net-cta__button:focus {
    text-decoration: none;
}

:where(.net-cta__title) {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 800;
}

:where(.net-cta__description) {
    font-size: 18px;
    line-height: 1.6;
}

:where(.net-cta__button) {
    font-weight: 800;
}

@media (max-width: 767px) {
    .net-cta--split .net-cta__content {
        grid-template-columns: 1fr;
    }

    .net-cta__actions {
        width: 100%;
    }

    .net-cta__button {
        width: 100%;
    }
}

/* ══════════════════════════════════════════════
   NET CTA CONTROLES DE CONTÊINER E BOTÃO
   ══════════════════════════════════════════════ */
.net-cta__inner {
    box-sizing: border-box;
}

.net-cta__inner > .net-cta__content {
    width: 100%;
}

.net-cta__actions {
    width: auto;
}

.net-cta--button-full .net-cta__actions,
.net-cta--button-full .net-cta__button {
    width: 100%;
}

.net-cta--button-auto .net-cta__button {
    width: auto;
}
