/* =========================================================
   RADAR SEBRAE — STYLE SHEET
========================================================= */

:root {
    --azul-escuro: #050B5C;
    --azul-escuro-2: #080A63;
    --roxo: #5B2EFF;
    --rosa: #E91E8F;
    --whatsapp: #12A83A;
    --whatsapp-dark: #0F8F30;
    --branco: #FFFFFF;
    --cinza-100: #F7F7FB;
    --cinza-200: #EEEEF4;
    --cinza-300: #E3E3EE;
    --cinza-600: #6B6B80;
    --cinza-800: #38384A;
    --sombra: 0 10px 30px rgba(8, 10, 99, 0.08);
    --sombra-lg: 0 20px 50px rgba(8, 10, 99, 0.14);
    --radius: 16px;
    --radius-lg: 24px;
    --grad-primary: linear-gradient(90deg, var(--roxo), var(--rosa));
    --container-w: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--azul-escuro-2);
    background: var(--branco);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    max-width: 100vw;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

.grad-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 22px;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}

.btn i {
    font-size: 1.15em;
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--branco);
    box-shadow: 0 8px 20px rgba(18, 168, 58, 0.30);
}

.btn--whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 168, 58, 0.38);
}

.btn--lg {
    padding: 16px 30px;
    font-size: 1.05rem;
}

.btn--header {
    padding: 10px 20px;
    font-size: .92rem;
}

/* =========================================================
   HEADER / LOGO
========================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cinza-300);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.logo__image {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo--header .logo__image {
    width: 160px;
    max-width: none;
    max-height: 50px;
}

.logo--footer .logo__image {
    width: 190px;
    max-width: none;
    max-height: 100px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0 auto;
}

.nav__link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--azul-escuro-2);
    position: relative;
    padding: 6px 0;
    transition: color .15s ease;
}

.nav__link:hover {
    color: var(--roxo);
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--azul-escuro-2);
}

/* =========================================================
   HERO (DESKTOP)
========================================================= */
.hero {
    position: relative;
    background: var(--branco);
    padding: 0;
    overflow: hidden;
    height: 520px;
    display: flex;
    align-items: flex-start;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 64px;
}

.hero__content {
    max-width: 520px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--rosa);
    background: rgba(233, 30, 143, 0.08);
    border: 1px solid rgba(233, 30, 143, 0.18);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.hero__title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.24;
    color: var(--azul-escuro-2);
    letter-spacing: -0.3px;
    margin-bottom: 28px;
}

.hero__desc {
    font-size: .95rem;
    color: var(--cinza-600);
    max-width: 480px;
    margin-bottom: 24px;
}

/* HERO — Trust bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.trust-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.1rem;
    background: var(--cinza-100);
}

.trust-item__icon--green {
    color: var(--whatsapp);
}

.trust-item__icon--blue {
    color: var(--azul-escuro-2);
}

.trust-item__icon--pink {
    color: var(--rosa);
}

.trust-item__label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--azul-escuro-2);
    line-height: 1.3;
}

/* HERO MEDIA — Desktop */
.hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    z-index: 1;
    overflow: hidden;
}

.hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    filter: none;
    display: block;
    zoom: 80%;
}

.hero__media-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.9) 6%,
            rgba(255, 255, 255, 0.55) 16%,
            rgba(255, 255, 255, 0) 38%);
    pointer-events: none;
}

.hero__sebrae-badge {
    position: absolute;
    top: 1px;
    right: 0px;
    width: 140px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px rgba(255, 255, 255, .55);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(5, 11, 92, .15);
    z-index: 3;
}

/* =========================================================
   COMO FUNCIONA
========================================================= */

.steps-section {
    padding: 42px 0 52px;
    background: var(--cinza-100);
    overflow: hidden;
}

.steps__title {
    margin: 0 0 30px;
    text-align: center;
    font-size: clamp(1.65rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--azul-escuro-2);
}

.steps__row {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 0;
}

.step {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 35px;
    left: calc(50% + 48px);
    width: calc(100% - 96px);
    border-top: 2px dashed rgba(233, 30, 143, 0.65);
}

.step__badge-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step__number {
    position: absolute;
    z-index: 3;
    top: 21px;
    left: calc(50% - 74px);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rosa);
    color: var(--branco);
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(233, 30, 143, 0.28);
}

.step__icon {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--branco);
    color: var(--azul-escuro-2);
    font-size: 1.9rem;
    box-shadow: 0 8px 24px rgba(18, 33, 105, 0.08);
}

.step__label {
    width: 100%;
    max-width: 210px;
    min-height: 44px;
    margin: 0;
    padding: 0 8px;
    color: var(--azul-escuro-2);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

/* =========================================================
   CARD DE DESTAQUE — COMO FUNCIONA
========================================================= */
.steps__summary-box {
    max-width: 860px;
    margin: 44px auto 0;
    padding: 32px 36px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f3ff 50%, #fff0f7 100%);
    border: 1px solid rgba(233, 30, 143, 0.22);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(8, 10, 99, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Detalhe decorativo na borda lateral */
.steps__summary-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--grad-primary);
    border-radius: 24px 0 0 24px;
}

.steps__summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--rosa);
    background: rgba(233, 30, 143, 0.1);
    border: 1px solid rgba(233, 30, 143, 0.2);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.steps__summary-text {
    font-size: 1.02rem;
    color: var(--azul-escuro-2);
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 780px;
}

.steps__summary-text strong {
    color: var(--azul-escuro);
    font-weight: 800;
}

.btn--summary {
    padding: 14px 28px;
    font-size: 0.98rem;
    font-weight: 700;
}

/* Responsivo para celular */
@media (max-width: 768px) {
    .steps__summary-box {
        margin-top: 32px;
        padding: 24px 20px;
        border-radius: 18px;
        text-align: center;
    }

    .steps__summary-text {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 18px;
        text-align: justify;
    }

    .btn--summary {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   O QUE VOCÊ VAI DESCOBRIR
========================================================= */

.discover {
    padding: 52px 0 64px;
    background: var(--branco);
}

.discover__title {
    margin: 0 0 28px;
    text-align: center;
    font-size: clamp(1.75rem, 2.8vw, 2.15rem);
    font-weight: 800;
    line-height: 1.15;
    color: #07156f;
}

.discover__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.discover-card {
    min-height: 225px;
    padding: 22px 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--branco);
    border: 1px solid #dfe3f1;
    border-radius: 14px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.discover-card:hover {
    transform: translateY(-3px);
    border-color: rgba(233, 30, 143, 0.32);
    box-shadow: 0 10px 30px rgba(13, 25, 100, 0.08);
}

.discover-card__icon {
    width: auto;
    height: 56px;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rosa);
    font-size: 2.7rem;
    line-height: 1;
}

.discover-card__icon i {
    display: block;
    line-height: 1;
}

.discover-card h3 {
    min-height: 42px;
    margin: 0 0 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #07156f;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.3;
}

.discover-card p {
    margin: 0;
    color: #182469;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.55;
}

/* =========================================================
   CTA FINAL — PREMIUM
========================================================= */

.cta-banner {
    padding: 64px 0 72px;
    background: #fff;
}

.cta-banner__inner {
    position: relative;
    min-height: 250px;
    padding: 48px 56px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: 48px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 8% 50%, rgba(255, 255, 255, 0.14) 0, rgba(255, 255, 255, 0.04) 22%, transparent 42%),
        radial-gradient(circle at 93% 15%, rgba(236, 29, 137, 0.28) 0, transparent 30%),
        linear-gradient(115deg, #07145f 0%, #19107c 52%, #39109a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 65px rgba(8, 18, 94, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-banner__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 32%);
    pointer-events: none;
}

.cta-banner__inner::after {
    content: "";
    position: absolute;
    left: -85px;
    bottom: -105px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.035), 0 0 0 78px rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.cta-banner__text {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.cta-banner__text::before {
    content: "RADAR SEBRAE";
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.cta-banner__text h2 {
    max-width: 580px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.cta-banner__text p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
}

.cta-banner__action {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 380px;
    justify-self: end;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 38px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cta-banner__action .btn {
    width: 100%;
    min-height: 60px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #20c65a 0%, #08a940 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(8, 169, 64, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-banner__action .btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.04);
    box-shadow: 0 18px 34px rgba(8, 169, 64, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cta-banner__action .btn:active {
    transform: translateY(-1px);
}

.cta-banner__action .btn i {
    font-size: 1.35rem;
}

.cta-banner__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.cta-banner__note i {
    color: #35dc72;
    font-size: 1rem;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
    padding: 52px 0 32px;
    background: var(--branco);
    border-top: 1px solid var(--cinza-300);
}

.footer__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.footer__top {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(340px, 1.1fr) minmax(260px, 1fr);
    align-items: center;
    gap: 42px;
}

.footer__brands-left {
    justify-self: start;
    display: flex;
    align-items: center;
}

.footer__center {
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.footer__desc {
    max-width: 520px;
    margin: 0;
    color: var(--cinza-600);
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: center;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
}

.footer__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(91, 46, 255, 0.22);
    background: rgba(91, 46, 255, 0.07);
    color: var(--roxo);
    font-size: 1.12rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer__social a:hover {
    transform: translateY(-3px);
    color: #fff;
    background: var(--roxo);
    border-color: var(--roxo);
    box-shadow: 0 10px 22px rgba(91, 46, 255, 0.24);
}

.footer__brands-right {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer__sebrae-logo {
    display: block;
    width: 220px;
    max-width: none;
    height: auto;
    max-height: 110px;
    object-fit: contain;
}

.footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 4px;
}

.footer__links a {
    color: var(--cinza-600);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.footer__links a:hover {
    color: var(--roxo);
}

/* =========================================================
   BACK TO TOP
========================================================= */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--sombra-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 90;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* =========================================================
   HERO-FEATURES (trust bar abaixo da hero)
========================================================= */
.hero-features {
    background: #fff;
    border-top: 1px solid #eef2ff;
    border-bottom: 1px solid #eef2ff;
}

.hero-features .trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 28px 0;
}

.hero-features .trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    position: relative;
}

.hero-features .trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: #d9def7;
}

.hero-features .trust-item__icon {
    font-size: 28px;
    color: #2a2ca8;
}

.hero-features .trust-item__label {
    font-size: 15px;
    font-weight: 600;
    color: #232b82;
    line-height: 1.3;
}

/* =========================================================
   RESPONSIVO REVISADO E CORRIGIDO (Destaque da Hero)
========================================================= */

@media (max-width: 1180px) {
    .nav {
        gap: 18px;
    }

    .nav__link {
        font-size: .82rem;
    }

    .logo--header .logo__image {
        width: 140px;
        max-height: 44px;
    }

    .logo--footer .logo__image {
        width: 235px;
        max-height: 88px;
    }

    .footer__sebrae-logo {
        width: 180px;
        max-height: 88px;
    }

    .footer__top {
        grid-template-columns: minmax(210px, 1fr) minmax(300px, 1.1fr) minmax(190px, 1fr);
        gap: 30px;
    }

    .discover__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav {
        gap: 12px;
    }

    .nav__link {
        font-size: .76rem;
    }

    .logo--header .logo__image {
        width: 130px;
        max-height: 42px;
    }

    .logo--footer .logo__image {
        width: 215px;
    }

    .footer__sebrae-logo {
        width: 160px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 28px;
    }

    .footer__brands-left,
    .footer__center,
    .footer__brands-right {
        justify-self: center;
        justify-content: center;
    }

    .hero {
        height: auto;
        padding: 40px 0;
    }

    .hero__inner {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0;
    }

    .hero__inner .container,
    .hero__content {
        max-width: 100%;
    }

    .hero__sebrae-badge {
        right: 12px;
        top: 12px;
    }

    .trust-bar {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps__row {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .step:nth-child(2)::after {
        display: none;
    }

    .cta-banner__inner {
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
        gap: 32px;
    }

    .cta-banner__text {
        text-align: center;
        max-width: 100%;
    }

    .cta-banner__action {
        justify-self: center;
    }

    .footer {
        padding: 44px 0 30px;
    }

    .logo--footer .logo__image {
        width: 240px;
        max-height: 90px;
    }

    .footer__sebrae-logo {
        width: 175px;
        max-height: 86px;
    }
}

@media (max-width: 768px) {
    .header__inner {
        flex-wrap: wrap;
        position: relative;
    }

    .logo--header .logo__image {
        width: 130px;
        max-height: 40px;
    }

    .nav {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 14px;
        border-top: 1px solid var(--cinza-300);
        margin-top: 10px;
    }

    .nav.open {
        display: flex;
    }

    .nav__toggle {
        display: block;
        margin-left: auto;
    }

    .btn--header {
        display: none;
    }

    /* REORDENAÇÃO & DESTAQUE REAL DA HERO NO CELULAR */
    .hero {
        display: flex;
        flex-direction: column;
        padding: 24px 24px 20px;
    }

    .hero__inner {
        display: contents;
    }

    .hero__content {
        display: contents;
    }

    /* 1º: Selo */
    .eyebrow {
        order: 1;
        align-self: flex-start;
        margin-bottom: 14px;
    }

    /* 2º: Título */
    .hero__title {
        order: 2;
        margin-bottom: 18px;
        font-size: 1.7rem;
        width: 100% !important;
        max-width: 100% !important;
        text-align: justify !important;
        text-justify: inter-word !important;
        hyphens: auto;
    }

    /* Oculta quebras de linha manuais no mobile para permitir que o texto ocupe toda a largura */
    .hero__title br {
        display: none;
    }


    /* 3º: FOTO EM DESTAQUE - LARGURA TOTAL E CENTRALIZADA */
    .hero__media {
        order: 3 !important;
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 260px !important;
        margin: 0 0 20px 0 !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        display: block !important;
    }

    .hero__photo {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
        /* Preenche com imponência */
        object-position: center 20% !important;
        /* Foco no rosto da empreendedora */
        zoom: 100% !important;
        border-radius: 18px !important;
    }


    /* Oculta gradiente e emblema no mobile */
    .hero__media-fade,
    .hero__sebrae-badge {
        display: none !important;
    }

    /* 4º: Botão do WhatsApp */
    .hero__content .btn--whatsapp {
        order: 4;
        width: 100%;
        justify-content: center;
    }

    /* 5º: Descrição */
    .hero__desc {
        order: 5;
        font-size: 0.9rem;
        margin-top: 16px;
        margin-bottom: 0;
    }

    .hero-features .trust-bar,
    .trust-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px 0;
    }

    .hero-features .trust-item::after,
    .hero-features .trust-item:not(:last-child)::after {
        display: none;
    }

    .hero-features .trust-item:last-child {
        grid-column: 1 / -1;
    }

    .steps-section {
        padding: 40px 0 36px;
    }

    .steps__row {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .step:not(:last-child)::after {
        display: none !important;
    }

    .discover {
        padding: 38px 0;
    }

    .discover__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .discover-card {
        min-height: auto;
        padding: 18px 12px;
    }

    .cta-banner {
        padding: 36px 0;
    }

    .cta-banner__inner {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .cta-banner__action {
        width: 100%;
        max-width: 100%;
        padding: 18px;
    }

    .cta-banner__action .btn {
        width: 100%;
        justify-content: center;
    }

    .footer__desc {
        font-size: 0.88rem;
    }

    .footer__links {
        justify-content: center;
        gap: 14px 20px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .eyebrow {
        font-size: 0.68rem;
        padding: 6px 12px;
    }

    .hero__title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero__media {
        height: 220px !important;
    }

    .cta-banner__text::before {
        margin-bottom: 10px;
        font-size: 0.64rem;
    }

    .cta-banner__text h2 {
        font-size: 1.5rem;
        line-height: 1.15;
    }

    .cta-banner__text p {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .cta-banner__action {
        padding: 14px;
        border-radius: 16px;
    }

    .cta-banner__action .btn {
        min-height: 52px;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .cta-banner__note {
        font-size: 0.72rem;
    }

    .discover__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .logo--header .logo__image {
        width: 105px;
        max-height: 34px;
    }

    .logo--footer .logo__image {
        width: 190px;
    }

    .footer__sebrae-logo {
        width: 145px;
    }

    .footer__social a {
        width: 38px;
        height: 38px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--roxo);
    outline-offset: 2px;
}

/* =========================================================
   FLUXO CNPJ — ESTADOS E ELEMENTOS AUXILIARES
========================================================= */

.cnpj-box__field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #858ba8;
    font-size: 1.15rem;
    pointer-events: none;
}

.cnpj-box__input::placeholder {
    color: #a5a9bb;
    font-weight: 500;
}

.cnpj-box__input:focus {
    border-color: var(--roxo);
    box-shadow: 0 0 0 4px rgba(91, 46, 255, 0.10);
}

.cnpj-box__input.is-invalid {
    border-color: #dc2f55;
    background: #fff8fa;
    box-shadow: 0 0 0 4px rgba(220, 47, 85, 0.09);
}

.cnpj-box__error {
    min-height: 20px;
    margin-top: 6px;
    color: #c62245;
    font-size: 0.78rem;
    font-weight: 600;
}

.cnpj-box__security {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 2px;
    color: #767b91;
    font-size: 0.74rem;
    line-height: 1.35;
}

.cnpj-box__security i {
    color: #72799e;
}

button[data-focus-cnpj] {
    font-family: inherit;
}


/* =========================================================
   BOLETIM PERSONALIZADO
========================================================= */

.steps__summary-box--boletim {
    max-width: 940px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    align-items: center;
    gap: 34px;
    text-align: left;
}

.steps__summary-box--boletim .steps__summary-content {
    min-width: 0;
}

.steps__summary-box--boletim .steps__summary-badge {
    margin-bottom: 14px;
}

.steps__summary-box--boletim .steps__summary-text {
    margin-bottom: 20px;
    max-width: 620px;
}

.steps__summary-box--boletim .btn--summary {
    width: fit-content;
}

.steps__summary-preview {
    position: relative;
    width: 190px;
    height: 190px;
    justify-self: center;
}

.report-preview {
    position: absolute;
    width: 125px;
    height: 168px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(13, 26, 115, .10);
    box-shadow: 0 18px 35px rgba(8, 10, 99, .14);
}

.report-preview--back {
    right: 5px;
    top: 13px;
    transform: rotate(9deg);
    background: linear-gradient(180deg, #f4f7ff 0%, #ffffff 100%);
}

.report-preview--front {
    left: 18px;
    top: 4px;
    transform: rotate(-5deg);
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(145deg, #ffffff 0 62%, #f4f1ff 62% 100%);
    color: var(--azul-escuro-2);
}

.report-preview--front::after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rosa), var(--roxo));
    opacity: .16;
}

.report-preview__brand {
    color: var(--rosa);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.report-preview strong {
    margin-top: 24px;
    font-size: 1.05rem;
    line-height: 1.05;
}

.report-preview__line {
    width: 34px;
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: var(--grad-primary);
}

.report-preview__small {
    margin-top: 10px;
    color: #686d8c;
    font-size: .55rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .steps__summary-box--boletim {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .steps__summary-box--boletim .steps__summary-text {
        text-align: left;
    }

    .steps__summary-box--boletim .btn--summary {
        width: 100%;
    }

    .steps__summary-preview {
        width: 170px;
        height: 165px;
        order: -1;
    }

    .report-preview {
        width: 108px;
        height: 145px;
    }
}

/* =========================================================
   HERO + CNPJ — VERSÃO CONSOLIDADA
========================================================= */

.hero {
    position: relative;
    min-height: 560px;
    height: auto;
    padding: 0;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: flex-start;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 560px;
    height: auto;
    display: flex;
    align-items: flex-start;
    padding-top: 34px;
    padding-bottom: 34px;
}

.hero__content,
.hero--cnpj .hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: max-content;
    margin: 0 0 18px;
    padding: 7px 14px;
    border: 1px solid rgba(233, 30, 143, 0.20);
    border-radius: 999px;
    background: rgba(233, 30, 143, 0.07);
    color: var(--rosa);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.hero__title,
.hero--cnpj .hero__title {
    width: 100%;
    max-width: 540px;
    margin: 0 0 14px;
    color: var(--azul-escuro-2);
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.hero__desc,
.hero--cnpj .hero__desc {
    width: 100%;
    max-width: 500px;
    margin: 0 0 20px;
    color: var(--cinza-600);
    font-size: 0.94rem;
    line-height: 1.55;
}

.hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    min-height: 560px;
    overflow: hidden;
    z-index: 1;
}

.hero__photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    filter: none;
}

.cnpj-box {
    width: 100%;
    max-width: 560px;
    margin: 0;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e2e5f1;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(8, 10, 99, 0.10);
}

.cnpj-box__label {
    display: block;
    margin-bottom: 10px;
    color: var(--azul-escuro-2);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.25;
}

.cnpj-box__row {
    display: grid;
    grid-template-columns: minmax(270px, 1.15fr) minmax(220px, 0.85fr);
    gap: 12px;
    align-items: stretch;
}

.cnpj-box__field-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
}

.cnpj-box__input {
    width: 100%;
    height: 54px;
    padding: 0 16px 0 44px;
    border: 1px solid #d7dbea;
    border-radius: 12px;
    background: #fff;
    color: var(--azul-escuro-2);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.cnpj-box__button {
    width: 100%;
    min-height: 54px;
    padding: 12px 18px;
    justify-content: center;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
}


/* =========================================================
   RESPONSIVO — HERO + CNPJ
========================================================= */

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
    }

    .hero__inner {
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero__content,
    .hero--cnpj .hero__content {
        max-width: 520px;
    }

    .hero__title,
    .hero--cnpj .hero__title {
        font-size: 2rem;
    }

    .cnpj-box__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 22px 16px 30px;
        overflow: visible;
        flex-direction: column;
    }

    .hero__inner,
    .hero__content,
    .hero--cnpj .hero__content {
        display: contents;
    }

    .eyebrow {
        order: 1;
        align-self: flex-start;
        margin-bottom: 12px;
        padding: 6px 12px;
        font-size: 0.62rem;
    }

    .hero__title,
    .hero--cnpj .hero__title {
        order: 2;
        width: 100%;
        max-width: 100%;
        margin-bottom: 12px;
        font-size: 1.55rem;
        line-height: 1.18;
        text-align: left !important;
        hyphens: none;
    }

    .hero__title br {
        display: none;
    }

    .hero__desc,
    .hero--cnpj .hero__desc {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 0 0 16px;
        font-size: 0.88rem;
        line-height: 1.5;
        text-align: left;
    }

    .cnpj-box,
    .hero--cnpj .cnpj-box {
        order: 4;
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px;
        padding: 15px;
        border-radius: 16px;
    }

    .cnpj-box__row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cnpj-box__input {
        height: 50px;
        font-size: 0.92rem;
    }

    .cnpj-box__button {
        min-height: 52px;
        font-size: 0.88rem;
        white-space: normal;
        text-align: center;
    }

    .cnpj-box__security {
        align-items: flex-start;
        font-size: 0.7rem;
    }

    .hero__media {
        order: 5;
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 0;
        height: 240px;
        margin: 0;
        border-radius: 18px;
        overflow: hidden;
    }

    .hero__photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        border-radius: 18px;
    }

    .hero__media-fade,
    .hero__sebrae-badge {
        display: none;
    }
}

@media (max-width: 420px) {
    .hero {
        padding-top: 18px;
    }

    .eyebrow {
        margin-bottom: 10px;
        padding: 5px 10px;
        font-size: 0.58rem;
    }

    .hero__title,
    .hero--cnpj .hero__title {
        font-size: 1.45rem;
        line-height: 1.16;
    }

    .hero__desc,
    .hero--cnpj .hero__desc {
        font-size: 0.84rem;
    }

    .cnpj-box {
        padding: 13px;
    }

    .hero__media {
        height: 220px;
    }
}

/* =========================================================
   MOBILE — HEADER + CTA FINAL + FOOTER
========================================================= */

@media (max-width: 768px) {
    .header__inner {
        min-height: 64px;
        padding-top: 10px;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        gap: 12px;
        position: relative;
    }

    .logo--header {
        flex: 0 0 auto;
    }

    .logo--header .logo__image {
        width: 145px;
        max-width: 145px;
        max-height: 46px;
        object-fit: contain;
    }

    .nav {
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 18px 20px 22px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        background: #fff;
        border-top: 1px solid var(--cinza-300);
        box-shadow: 0 15px 30px rgba(8, 10, 99, 0.10);
    }

    .nav.open {
        display: flex;
    }

    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        margin-left: auto;
        padding: 0;
    }

    .nav__toggle i {
        font-size: 1.65rem;
    }

    .btn--header {
        display: none;
    }

    .cta-banner {
        padding: 48px 0 80px;
    }

    .cta-banner .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cta-banner__inner {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 36px 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        border-radius: 26px;
    }

    .cta-banner__text {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .cta-banner__text h2 {
        width: 100%;
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 1.8rem;
        line-height: 1.12;
        text-align: center;
    }

    .cta-banner__text p {
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.55;
        text-align: center;
    }

    .cta-banner__action {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 16px;
        gap: 12px;
        border-radius: 20px;
    }

    .cta-banner__action .btn {
        width: 100%;
        min-height: 58px;
        padding: 14px 18px;
        font-size: 1rem;
        white-space: normal;
        text-align: center;
    }

    .footer {
        padding-top: 64px;
    }

    .footer__top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer__brands-left,
    .footer__brands-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo--footer .logo__image {
        width: 230px;
        max-width: 80%;
        max-height: none;
    }

    .footer__center {
        width: 100%;
        align-items: center;
    }

    .footer__desc {
        max-width: 330px;
        margin: 0 auto;
        font-size: 0.9rem;
    }

    .footer__sebrae-logo {
        width: 150px;
        max-width: 150px;
        height: auto;
    }
}

@media (max-width: 420px) {
    .logo--header .logo__image {
        width: 132px;
        max-width: 132px;
        max-height: 42px;
    }

    .cta-banner {
        padding-bottom: 90px;
    }

    .cta-banner__inner {
        padding: 30px 18px;
        border-radius: 22px;
    }

    .cta-banner__text h2 {
        font-size: 1.55rem;
    }

    .cta-banner__text p {
        font-size: 0.9rem;
    }

    .cta-banner__action {
        padding: 12px;
    }

    .cta-banner__action .btn {
        min-height: 54px;
        font-size: 0.88rem;
    }

    .logo--footer .logo__image {
        width: 200px;
        max-width: 78%;
    }

    .footer__desc {
        max-width: 300px;
        font-size: 0.82rem;
    }

    .footer__sebrae-logo {
        width: 130px;
    }
}

/* Ícones principais maiores */

.btn--header i {
    font-size: 1.5rem;
}

.cnpj-box__field-icon {
    font-size: 1.5rem;
}

.cnpj-box__button i {
    font-size: 2rem;
}

/* =========================================================
   AJUSTE — CARDS "O QUE VOCÊ VAI DESCOBRIR"
========================================================= */

.discover__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* Ícones maiores dentro dos cards */
.discover-card__icon {
    height: 56px;
    font-size: 2.7rem;
}

/* Responsivo — tablet */
@media (max-width: 900px) {
    .discover__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Responsivo — celular */
@media (max-width: 600px) {
    .discover__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   COMO FUNCIONA — FLUXO LINEAR COM SETAS
   Ajuste solicitado em 19/08/2026
========================================================= */

.steps__row--flow {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 0;
}

.steps__row--flow .step {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Remove a antiga linha pontilhada */
.steps__row--flow .step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 35px;
    left: calc(50% + 42px);
    width: calc(100% - 84px);
    height: 2px;
    border: 0;
    background: linear-gradient(90deg,
            rgba(233, 30, 143, 0.55) 0%,
            rgba(233, 30, 143, 0.95) 100%);
}

/* Ponta da seta: deixa evidente que uma etapa leva à próxima */
.steps__row--flow .step:not(:last-child)::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 30px;
    left: calc(150% - 46px);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid var(--rosa);
}

.steps__row--flow .step__badge-wrap {
    position: relative;
    z-index: 2;
}

.steps__row--flow .step__icon {
    position: relative;
    z-index: 2;
    background: var(--branco);
}

.steps__row--flow .step__number {
    z-index: 4;
}

/* Depois da retirada de "Soluções Sebrae", os cards ocupam a linha de forma equilibrada */
@media (min-width: 1181px) {
    .discover__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) and (min-width: 769px) {
    .steps__row--flow {
        max-width: 880px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 0;
    }

    /* Mantém todas as conexões no tablet */
    .steps__row--flow .step:nth-child(2)::after {
        display: block;
    }

    .steps__row--flow .step:not(:last-child)::after {
        top: 35px;
        left: calc(50% + 39px);
        width: calc(100% - 78px);
    }

    .steps__row--flow .step:not(:last-child)::before {
        top: 30px;
        left: calc(150% - 43px);
    }

    .steps__row--flow .step__label {
        max-width: 185px;
        font-size: 0.82rem;
    }
}


/* =========================================================
   MOBILE — FLUXO VERTICAL
   No celular o sentido continua inequívoco: 1 → 2 → 3 → 4
========================================================= */

@media (max-width: 768px) {
    .steps__row--flow {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .steps__row--flow .step {
        width: 100%;
        min-height: 92px;
        padding: 0 0 42px;
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
        align-items: center;
        text-align: left;
    }

    .steps__row--flow .step:last-child {
        padding-bottom: 0;
    }

    .steps__row--flow .step__badge-wrap {
        grid-column: 1;
        width: 72px;
        height: 72px;
        margin: 0;
        justify-self: center;
    }

    .steps__row--flow .step__label {
        grid-column: 2;
        width: 100%;
        max-width: none;
        min-height: 0;
        margin: 0;
        padding: 0 0 0 12px;
        font-size: 0.92rem;
        line-height: 1.35;
        text-align: left;
    }

    .steps__row--flow .step__number {
        top: 20px;
        left: -10px;
    }

    /* Linha vertical entre as etapas */
    .steps__row--flow .step:not(:last-child)::after {
        display: block !important;
        top: 74px;
        left: 43px;
        width: 2px;
        height: 32px;
        background: linear-gradient(180deg,
                rgba(233, 30, 143, 0.55) 0%,
                rgba(233, 30, 143, 0.95) 100%);
    }

    /* Seta apontando para a próxima etapa */
    .steps__row--flow .step:not(:last-child)::before {
        display: block;
        top: 102px;
        left: 38px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 9px solid var(--rosa);
        border-bottom: 0;
    }
}

@media (max-width: 420px) {
    .steps__row--flow .step {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .steps__row--flow .step__badge-wrap {
        width: 68px;
        height: 68px;
    }

    .steps__row--flow .step__icon {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
        font-size: 1.7rem;
    }

    .steps__row--flow .step__number {
        width: 28px;
        height: 28px;
        top: 20px;
        left: -8px;
        font-size: 0.78rem;
    }

    .steps__row--flow .step:not(:last-child)::after {
        left: 39px;
    }

    .steps__row--flow .step:not(:last-child)::before {
        left: 34px;
    }
}

/* =========================================================
   FLUXO DESKTOP — LINHA + SETA ANTES DO PRÓXIMO NÚMERO
========================================================= */

@media (min-width: 1025px) {

    /* LINHA */
    .steps__row--flow .step:not(:last-child)::after {
        content: "";
        position: absolute;
        z-index: 0;

        top: 35px;

        /* início da linha */
        left: calc(50% + 42px);

        /*
         * Diminui o comprimento da linha.
         * Quanto MAIOR esse valor, mais a seta recua para a esquerda.
         */
        width: calc(100% - 150px);

        height: 2px;
        border: 0;

        background: linear-gradient(90deg,
                rgba(233, 30, 143, 0.55) 0%,
                rgba(233, 30, 143, 0.95) 100%);
    }


    /* PONTA DA SETA */
    .steps__row--flow .step:not(:last-child)::before {
        content: "";
        position: absolute;
        z-index: 1;

        top: 30px;

        /*
         * A ponta acompanha exatamente
         * o final da linha.
         */
        left: calc(150% - 108px);

        width: 0;
        height: 0;

        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 9px solid var(--rosa);
    }
}

/* =========================================================
   DÚVIDAS — FAQ NA LANDING PAGE
========================================================= */

.faq-home {
    position: relative;
    padding: 64px 0 72px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.faq-home__header {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.faq-home__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 6px 12px;
    border: 1px solid rgba(233, 30, 143, 0.18);
    border-radius: 999px;
    background: rgba(233, 30, 143, 0.07);
    color: var(--rosa);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}

.faq-home__header h2 {
    margin: 0 0 10px;
    color: var(--azul-escuro-2);
    font-size: clamp(1.75rem, 2.7vw, 2.15rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.faq-home__header p {
    margin: 0;
    color: var(--cinza-600);
    font-size: 0.94rem;
    line-height: 1.55;
}

.faq-home__list {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-home__item {
    overflow: hidden;
    border: 1px solid #dfe3f1;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(8, 10, 99, 0.035);
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.faq-home__item:hover {
    border-color: rgba(91, 46, 255, 0.24);
}

.faq-home__item.open {
    border-color: rgba(91, 46, 255, 0.28);
    box-shadow: 0 14px 30px rgba(8, 10, 99, 0.07);
}

.faq-home__question {
    width: 100%;
    min-height: 64px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--azul-escuro-2);
    text-align: left;
    background: #ffffff;
    cursor: pointer;
}

.faq-home__question span {
    position: relative;
    padding-left: 26px;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.4;
}

.faq-home__question span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.38em;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: var(--roxo);
}

.faq-home__question i {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--roxo);
    background: rgba(91, 46, 255, 0.07);
    font-size: 1rem;
    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.faq-home__item.open .faq-home__question i {
    color: #ffffff;
    background: var(--roxo);
}

.faq-home__answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows .25s ease,
        opacity .2s ease;
}

.faq-home__answer>p {
    overflow: hidden;
}

.faq-home__item.open .faq-home__answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-home__answer p {
    margin: 0;
    padding: 0 58px 22px 48px;
    color: #5f6478;
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-home__answer strong {
    color: var(--azul-escuro-2);
    font-weight: 700;
}

@media (max-width: 768px) {

    .faq-home {
        padding: 48px 0 56px;
    }

    .faq-home__header {
        margin-bottom: 24px;
        text-align: left;
    }

    .faq-home__header h2 {
        font-size: 1.65rem;
    }

    .faq-home__header p {
        font-size: 0.88rem;
    }

    .faq-home__list {
        gap: 10px;
    }

    .faq-home__question {
        min-height: 58px;
        padding: 16px;
        gap: 12px;
    }

    .faq-home__question span {
        padding-left: 22px;
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .faq-home__question span::before {
        width: 9px;
        height: 9px;
    }

    .faq-home__question i {
        width: 28px;
        height: 28px;
        font-size: 0.92rem;
    }

    .faq-home__answer p {
        padding: 0 18px 18px 38px;
        font-size: 0.86rem;
        line-height: 1.6;
    }
}

@media (max-width: 420px) {

    .faq-home {
        padding-top: 42px;
        padding-bottom: 48px;
    }

    .faq-home__eyebrow {
        font-size: 0.62rem;
    }

    .faq-home__header h2 {
        font-size: 1.5rem;
    }

    .faq-home__question {
        padding: 15px 14px;
    }

    .faq-home__question span {
        font-size: 0.86rem;
    }

    .faq-home__answer p {
        padding: 0 16px 17px 36px;
        font-size: 0.83rem;
    }
}

/* =========================================================
   AJUSTE DE LARGURA DAS SEÇÕES CENTRAIS
========================================================= */

/* Faz as seções aproveitarem melhor telas grandes */
.steps-section>.container,
.discover>.container,
.faq-home>.container {
    max-width: 1440px;
    padding-left: 48px;
    padding-right: 48px;
}


/* =========================================================
   COMO FUNCIONA
========================================================= */

.steps__row--flow {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

/* Card do boletim mais largo */
.steps__summary-box--boletim {
    max-width: 1180px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   O QUE VOCÊ VAI DESCOBRIR
========================================================= */

.discover__grid {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 18px;
}

.discover-card {
    width: 100%;
}


/* =========================================================
   PERGUNTAS FREQUENTES
========================================================= */

.faq-home__header {
    max-width: 900px;
}

.faq-home__list {
    max-width: 1180px;
}


/* =========================================================
   MAIS RESPIRO ENTRE AS SEÇÕES
========================================================= */

.steps-section {
    padding-top: 58px;
    padding-bottom: 62px;
}

.discover {
    padding-top: 64px;
    padding-bottom: 72px;
}

.faq-home {
    padding-top: 58px;
    padding-bottom: 72px;
}


/* =========================================================
   TELAS GRANDES
========================================================= */

@media (min-width: 1600px) {

    .steps-section>.container,
    .discover>.container,
    .faq-home>.container {
        max-width: 1520px;

        padding-left: 60px;
        padding-right: 60px;
    }

    .steps__row--flow,
    .steps__summary-box--boletim,
    .discover__grid,
    .faq-home__list {
        max-width: 1280px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .steps-section>.container,
    .discover>.container,
    .faq-home>.container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .discover__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .steps-section>.container,
    .discover>.container,
    .faq-home>.container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .steps-section {
        padding-top: 42px;
        padding-bottom: 46px;
    }

    .discover {
        padding-top: 44px;
        padding-bottom: 50px;
    }

    .faq-home {
        padding-top: 44px;
        padding-bottom: 54px;
    }

    .discover__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .steps__summary-box--boletim {
        width: 100%;
    }

    .faq-home__list {
        width: 100%;
    }
}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 480px) {

    .discover__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   DESKTOP — PADRÃO ÚNICO DE CONTAINER
   ---------------------------------------------------------
   Este bloco atua SOMENTE em desktop (1025px+).

   Objetivos:
   - uma única largura de referência do header ao footer;
   - comportamento idêntico em notebook e monitor grande;
   - Hero sem crescer com a viewport;
   - imagem da Hero com enquadramento estável;
   - CTA e footer seguindo o mesmo eixo horizontal;
   - nenhuma alteração nos breakpoints mobile/tablet existentes.
========================================================= */

@media (min-width: 1025px) {

    :root {
        /*
         * REFERÊNCIA ÚNICA DA LANDING PAGE NO DESKTOP.
         *
         * O container tem 1200px no máximo e 24px de respiro
         * em cada lateral. Logo, todos os elementos principais
         * começam e terminam nas mesmas linhas verticais.
         */
        --desktop-container-w: 1200px;
        --desktop-gutter: 24px;

        /*
         * Linha real onde o conteúdo começa/termina na viewport.
         * Necessária caso .hero__media esteja fora do .hero__inner.
         */
        --desktop-content-edge:
            max(var(--desktop-gutter),
                calc((100vw - var(--desktop-container-w)) / 2 + var(--desktop-gutter)));
    }


    /* =====================================================
       CONTAINER GLOBAL
       ===================================================== */

    .container {
        width: 100%;
        max-width: var(--desktop-container-w) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: var(--desktop-gutter);
        padding-right: var(--desktop-gutter);
        box-sizing: border-box;
    }

    /*
     * Reforço explícito nas principais áreas da página.
     * Todas obedecem exatamente ao mesmo eixo horizontal.
     */
    .header__inner,
    .hero__inner,
    .hero-features>.container,
    .steps-section>.container,
    .discover>.container,
    .faq-home>.container,
    .cta-banner__inner,
    .footer__inner {
        width: 100% !important;
        max-width: var(--desktop-container-w) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }


    /* =====================================================
       HEADER
       ===================================================== */

    .header__inner {
        padding-left: var(--desktop-gutter);
        padding-right: var(--desktop-gutter);
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero,
    .hero--cnpj {
        position: relative;

        width: 100%;

        height: clamp(520px, 31vw, 560px);
        min-height: 520px;
        max-height: 560px;

        margin: 0;
        padding: 0;

        display: block;

        overflow: hidden;

        background: #fff;
    }


    /* -----------------------------------------------------
       CONTAINER DA HERO
       ----------------------------------------------------- */

    .hero .hero__inner,
    .hero--cnpj .hero__inner {
        position: relative;
        z-index: 3;

        height: 100%;
        min-height: 100%;

        padding-left: var(--desktop-gutter) !important;
        padding-right: var(--desktop-gutter) !important;
        padding-top: clamp(34px, 3vw, 46px);
        padding-bottom: 32px;

        display: flex;
        align-items: flex-start;

        overflow: visible;
    }


    /* -----------------------------------------------------
       CONTEÚDO DA HERO
       ----------------------------------------------------- */

    .hero .hero__content,
    .hero--cnpj .hero__content {
        position: relative;
        z-index: 5;

        width: 520px;
        max-width: 520px;
        min-width: 0;

        margin: 0;
        padding: 0;

        flex: 0 0 520px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero .eyebrow,
    .hero--cnpj .eyebrow {
        margin-bottom: 18px;
    }

    .hero .hero__title,
    .hero--cnpj .hero__title {
        width: 100%;
        max-width: 520px;

        margin-bottom: 16px;

        font-size: clamp(2.15rem, 2.35vw, 2.6rem);
        line-height: 1.14;

        text-align: left;
    }

    .hero .hero__desc,
    .hero--cnpj .hero__desc {
        width: 100%;
        max-width: 490px;

        margin-bottom: 20px;

        font-size: 0.94rem;
        line-height: 1.55;
    }


    /* -----------------------------------------------------
       FORMULÁRIO DA HERO
       ----------------------------------------------------- */

    .hero .cnpj-box,
    .hero--cnpj .cnpj-box {
        width: 100%;
        max-width: 520px;

        margin: 0;
        padding: 16px 18px;

        box-sizing: border-box;
    }

    .hero .cnpj-box__row,
    .hero--cnpj .cnpj-box__row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 180px;
        gap: 12px;
        align-items: stretch;
    }

    .hero .cnpj-box__field-wrap,
    .hero--cnpj .cnpj-box__field-wrap,
    .hero .cnpj-box__input,
    .hero--cnpj .cnpj-box__input {
        width: 100%;
        min-width: 0;
    }

    .hero .cnpj-box__button,
    .hero--cnpj .cnpj-box__button {
        width: 180px;
        min-width: 180px;
        white-space: nowrap;
    }


    /* =====================================================
       IMAGEM DA HERO
       -----------------------------------------------------
       IMPORTANTE:
       A posição horizontal agora é baseada somente no
       container, e NÃO na largura da tela.

       Resultado:
       - notebook e monitor grande mantêm a mesma composição;
       - a imagem não fica menor em monitor grande;
       - o lado direito termina exatamente no mesmo eixo do
         header / restante da landing page.
       ===================================================== */

    /*
     * Caso o HTML esteja com .hero__media DENTRO de .hero__inner.
     */
    .hero__inner>.hero__media {
        position: absolute !important;

        top: 0 !important;
        bottom: 0 !important;

        /*
         * A imagem começa sempre no mesmo ponto do container.
         * 50% - 110px = 490px quando o container atinge 1200px.
         */
        left: calc(50% - 110px) !important;

        /*
         * Termina exatamente no gutter direito do container.
         */
        right: var(--desktop-gutter) !important;

        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;

        height: 100% !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        z-index: 1 !important;
    }

    /*
     * Compatibilidade com a estrutura HTML original,
     * onde .hero__media pode estar diretamente dentro de .hero.
     *
     * O resultado visual é exatamente o mesmo.
     */
    .hero>.hero__media {
        position: absolute !important;

        top: 0 !important;
        bottom: 0 !important;

        left: calc(50% - 110px) !important;
        right: var(--desktop-content-edge) !important;

        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;

        height: 100% !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        z-index: 1 !important;
    }


    /* -----------------------------------------------------
       FOTO
       ----------------------------------------------------- */

    .hero .hero__photo,
    .hero--cnpj .hero__photo {
        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        min-width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;

        display: block !important;

        object-fit: cover !important;

        /*
         * Mantém o enquadramento aprovado:
         * personagem + celular continuam no mesmo ponto.
         */
        object-position: 58% center !important;

        border: 0 !important;
        border-radius: 0 !important;

        filter: none !important;

        transform: none !important;
        zoom: 1 !important;
    }


    /* -----------------------------------------------------
       SUAVIZAÇÃO DO LADO ESQUERDO
       ----------------------------------------------------- */

    .hero .hero__media-fade,
    .hero--cnpj .hero__media-fade {
        position: absolute !important;

        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: auto !important;

        width: clamp(130px, 10vw, 175px) !important;
        height: 100% !important;

        z-index: 2 !important;

        pointer-events: none !important;

        background: linear-gradient(90deg,
                #ffffff 0%,
                rgba(255, 255, 255, 0.98) 12%,
                rgba(255, 255, 255, 0.92) 25%,
                rgba(255, 255, 255, 0.78) 40%,
                rgba(255, 255, 255, 0.58) 55%,
                rgba(255, 255, 255, 0.36) 68%,
                rgba(255, 255, 255, 0.18) 80%,
                rgba(255, 255, 255, 0.07) 90%,
                rgba(255, 255, 255, 0) 100%) !important;
    }




    /* -----------------------------------------------------
       MARCA SEBRAE NA HERO
       ----------------------------------------------------- */

    .hero .hero__sebrae-badge,
    .hero--cnpj .hero__sebrae-badge {
        position: absolute;

        top: 12px;
        right: 12px;

        width: 126px;
        max-width: 24%;

        z-index: 3;
    }


    /* =====================================================
       BARRA DE BENEFÍCIOS
       ===================================================== */

    .hero-features>.container {
        padding-left: var(--desktop-gutter);
        padding-right: var(--desktop-gutter);
    }


    /* =====================================================
       COMO FUNCIONA
       -----------------------------------------------------
       Mantemos os limites internos já aprovados.
       O que passa a ser único é o container externo.
       ===================================================== */

    .steps-section>.container {
        padding-left: var(--desktop-gutter);
        padding-right: var(--desktop-gutter);
    }

    .steps__row {
        margin-left: auto;
        margin-right: auto;
    }

    .steps__summary-box--boletim {
        margin-left: auto;
        margin-right: auto;
    }


    /* =====================================================
       O QUE VOCÊ VAI DESCOBRIR
       ===================================================== */

    .discover>.container {
        padding-left: var(--desktop-gutter);
        padding-right: var(--desktop-gutter);
    }

    .discover__grid {
        margin-left: auto;
        margin-right: auto;
    }


    /* =====================================================
       FAQ
       ===================================================== */

    .faq-home>.container {
        padding-left: var(--desktop-gutter);
        padding-right: var(--desktop-gutter);
    }

    .faq-home__list {
        margin-left: auto;
        margin-right: auto;
    }


    /* =====================================================
       CTA FINAL
       -----------------------------------------------------
       A borda externa da caixa passa a obedecer exatamente
       ao mesmo container de 1200px do header e da Hero.
       ===================================================== */

    .cta-banner__inner {
        max-width: var(--desktop-container-w) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .footer__inner {
        padding-left: var(--desktop-gutter);
        padding-right: var(--desktop-gutter);
    }
}


/* =========================================================
   DESKTOP INTERMEDIÁRIO — 1025px a 1199px
   ---------------------------------------------------------
   Ajuste apenas para evitar colisão de texto/imagem.
   Nenhuma regra mobile é modificada.
========================================================= */

@media (min-width: 1025px) and (max-width: 1199px) {

    .hero,
    .hero--cnpj {
        height: 520px;
        min-height: 520px;
        max-height: 520px;
    }

    .hero .hero__inner,
    .hero--cnpj .hero__inner {
        padding-top: 34px;
        padding-bottom: 28px;
    }

    .hero .hero__content,
    .hero--cnpj .hero__content {
        width: 445px;
        max-width: 445px;
        flex-basis: 445px;
    }

    .hero .hero__title,
    .hero--cnpj .hero__title,
    .hero .hero__desc,
    .hero--cnpj .hero__desc,
    .hero .cnpj-box,
    .hero--cnpj .cnpj-box {
        max-width: 445px;
    }

    .hero .cnpj-box__row,
    .hero--cnpj .cnpj-box__row {
        grid-template-columns: minmax(0, 1fr) 160px;
    }

    .hero .cnpj-box__button,
    .hero--cnpj .cnpj-box__button {
        width: 160px;
        min-width: 160px;

        padding-left: 12px;
        padding-right: 12px;
    }

    /*
     * Dentro do container reduzido, a imagem continua sendo
     * posicionada apenas em relação ao próprio container.
     */
    .hero__inner>.hero__media {
        left: 445px !important;
    }

    /*
     * Compatibilidade com HTML original.
     */
    .hero>.hero__media {
        left:
            calc(max(0px,
                    (100vw - var(--desktop-container-w)) / 2) + 445px) !important;
    }
}


/* =========================================================
   MONITORES GRANDES — 1440px+
   ---------------------------------------------------------
   Não existe mais aumento para 1440 / 1600 / 1760px.
   A landing page permanece com o MESMO container de 1200px.
========================================================= */

@media (min-width: 1440px) {

    .container,
    .header__inner,
    .hero__inner,
    .hero-features>.container,
    .steps-section>.container,
    .discover>.container,
    .faq-home>.container,
    .cta-banner__inner,
    .footer__inner {
        max-width: var(--desktop-container-w) !important;
    }

    .hero,
    .hero--cnpj {
        height: 560px;
        min-height: 560px;
        max-height: 560px;
    }

    /*
     * Este é o ponto principal para o PC com monitor maior:
     * a imagem NÃO muda de posição com o aumento da viewport.
     */
    .hero__inner>.hero__media {
        left: calc(50% - 110px) !important;
        right: var(--desktop-gutter) !important;
    }

    .hero>.hero__media {
        left: calc(50% - 110px) !important;
        right: var(--desktop-content-edge) !important;
    }
}

/* =========================================================
   NAV DO HEADER — TODOS OS DESKTOPS
   Vale para 1025px, 1280px, 1366px, 1440px, 1600px,
   1920px, 2560px e qualquer largura desktop acima disso.
   Não altera tablet/mobile.
========================================================= */

@media screen and (min-width: 1025px) {
    .header .header__inner .nav {
        margin-left: 28px !important;
        margin-right: auto !important;
    }
}