:root {
    --max-width: 1320px;
    --font-base: 15px;

    --white: #ffffff;
    --page-bg: #f6f9ff;
    --text: #08235f;
    --text-soft: #2a4276;
    --muted: #60739b;
    --line: #dfe8f8;
    --line-soft: #edf2fb;

    --blue: #0b63ff;
    --blue-2: #0a4fd3;
    --blue-3: #082b7a;
    --blue-dark: #061a4d;
    --blue-soft: #edf4ff;

    --green: #22bd5b;
    --green-2: #15a64b;

    --shadow: 0 12px 34px rgba(7, 31, 86, 0.08);
    --shadow-soft: 0 8px 22px rgba(7, 31, 86, 0.06);
}

* {
    box-sizing: border-box;
}

html {
    font-size: var(--font-base);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(220, 234, 255, 0.7), transparent 30rem),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f7faff 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

svg {
    display: block;
}

.container {
    width: min(100% - 40px, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 38px 0 25px;
}

.section-heading {
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.65rem, 2.1vw, 2.25rem);
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.section-heading > span {
    display: block;
    width: 34px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: var(--blue);
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 400;
}

/* HERO FULL WIDTH */
.hero {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    min-height: 540px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(90deg, rgba(3, 15, 50, 0.98) 0%, rgba(5, 25, 71, 0.96) 34%, rgba(7, 37, 96, 0.72) 62%, rgba(9, 50, 128, 0.08) 100%),
        radial-gradient(circle at 20% 18%, rgba(25, 102, 255, 0.3), transparent 22rem),
        linear-gradient(135deg, #06153f 0%, #092b7e 56%, #155dce 100%);
    box-shadow: 0 18px 56px rgba(5, 24, 70, 0.18);
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 44px;
    width: 92px;
    height: 180px;
    opacity: 0.35;
    background-image: radial-gradient(#0f77ff 2px, transparent 2px);
    background-size: 14px 14px;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 18px;
    width: 140px;
    height: 140px;
    opacity: 0.28;
    background-image: radial-gradient(#409aff 2px, transparent 2px);
    background-size: 14px 14px;
}

.hero__inner {
    width: min(100% - 40px, var(--max-width));
    min-height: 540px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: center;
    gap: 26px;
    padding: 42px 0 40px;
    position: relative;
    z-index: 1;
}

.hero__content {
    color: var(--white);
    max-width: 610px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(12, 92, 220, 0.34);
    color: var(--white);
    border: 1px solid rgba(121, 178, 255, 0.18);
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero__tag svg {
    width: 15px;
    height: 15px;
    stroke: #72bdff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero h1 {
    margin: 18px 0 18px;
    color: var(--white);
    font-size: clamp(2.35rem, 4vw, 4.15rem);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -0.06em;
}

.hero h1 strong {
    display: block;
    color: var(--blue);
    font-weight: 600;
}

.hero__text {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 26px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.hero-feature__icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(11, 93, 218, 0.32);
    border: 1px solid rgba(124, 181, 255, 0.13);
}

.hero-feature__icon svg {
    width: 22px;
    height: 22px;
    stroke: #58a8ff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-feature span:last-child {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 500;
}

.hero__note {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 515px;
    margin-top: 23px;
    padding: 15px 17px;
    border-radius: 14px;
    background: rgba(14, 75, 191, 0.28);
    border: 1px solid rgba(124, 181, 255, 0.12);
}

.hero__note-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(11, 93, 218, 0.36);
}

.hero__note-icon svg {
    width: 21px;
    height: 21px;
    stroke: #69b5ff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero__note span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.55;
    font-weight: 400;
}

/* HERO VISUAL */
.hero__visual {
    position: relative;
    min-height: 420px;
}

.hero__price {
    position: absolute;
    left: 16px;
    top: 135px;
    z-index: 4;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    border-radius: 50%;
    background: linear-gradient(145deg, #126dff 0%, #0958df 100%);
    color: var(--white);
    text-align: center;
    box-shadow: 0 18px 40px rgba(6, 71, 189, 0.34);
}

.hero__price span,
.hero__price small {
    font-size: 0.78rem;
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero__price strong {
    font-size: 1.95rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.mockup--laptop {
    position: absolute;
    right: 46px;
    top: 20px;
    width: 520px;
    height: 326px;
    padding: 14px 14px 20px;
    border-radius: 22px;
    background: #0b1018;
    box-shadow: 0 26px 68px rgba(0, 0, 0, 0.3);
    transform: rotate(2.5deg);
}

.mockup--laptop::after {
    content: "";
    position: absolute;
    left: -42px;
    right: -42px;
    bottom: -19px;
    height: 22px;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, #d4ddea 0%, #8e9dba 100%);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.mockup__browser {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 13px;
    background: var(--white);
}

.mockup__topbar {
    height: 22px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-bottom: 1px solid #edf2fb;
    background: #fafcff;
}

.mockup__topbar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd8ef;
}

.mockup__topbar span {
    width: 120px;
    height: 6px;
    margin-left: 8px;
    border-radius: 999px;
    background: #edf2fb;
}

.mockup__screen {
    position: relative;
    height: calc(100% - 22px);
    padding: 16px;
    background:
        linear-gradient(90deg, rgba(4, 20, 64, 0.95) 0%, rgba(8, 34, 91, 0.82) 52%, rgba(11, 80, 190, 0.34) 100%),
        linear-gradient(135deg, #103982 0%, #2b77f6 100%);
}

.mockup__nav {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.56rem;
    line-height: 1;
    font-weight: 500;
}

.mockup__nav strong {
    margin-right: auto;
    color: #78b9ff;
    font-size: 0.68rem;
    font-weight: 600;
}

.mockup__headline {
    max-width: 230px;
    margin-top: 62px;
    color: var(--white);
}

.mockup__headline h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.55rem;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.mockup__headline button {
    min-height: 30px;
    margin-top: 13px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mockup__cards {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.mockup__cards span {
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 7px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    font-size: 0.54rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 500;
}

.mockup--phone {
    position: absolute;
    right: 0;
    top: 92px;
    z-index: 3;
    width: 120px;
    height: 250px;
    padding: 9px;
    border-radius: 26px;
    background: #0b1018;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.25);
    transform: rotate(1.5deg);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 17px 11px;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(4, 20, 64, 0.96) 0%, rgba(9, 43, 114, 0.78) 100%),
        linear-gradient(135deg, #0e367e 0%, #2c78f9 100%);
}

.phone-screen__bar {
    width: 40px;
    height: 4px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
}

.phone-screen h3 {
    margin: 42px 0 0;
    color: var(--white);
    font-size: 0.98rem;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.phone-screen button {
    min-height: 24px;
    margin-top: 12px;
    padding: 0 9px;
    border: 0;
    border-radius: 7px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.phone-screen__cards {
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.phone-screen__cards span {
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
}

/* COMO FUNCIONA */
.steps {
    display: grid;
    grid-template-columns: 1fr 22px 1fr 22px 1fr 22px 1fr;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.step-card {
    position: relative;
    min-height: 235px;
    padding: 20px 18px 18px;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.step-card__number {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--blue), var(--blue-2));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.step-card__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f2f7ff 0%, #e6efff 100%);
}

.step-card__icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-card h3 {
    max-width: 210px;
    margin: 0 auto;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.42;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.step-card p {
    max-width: 215px;
    margin: 11px auto 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.65;
    font-weight: 400;
}

.step-arrow {
    color: var(--blue);
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 500;
    text-align: center;
}

/* EXEMPLOS */
.section--examples {
    padding-top: 30px;
    background: #dae8ff;
}

.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.tab-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.tab-button svg {
    width: 19px;
    height: 19px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tab-button:hover,
.tab-button:focus-visible {
    transform: translateY(-1px);
    outline: 0;
}

.tab-button.is-active {
    background: var(--blue-soft);
    color: var(--blue-2);
    border-color: #dce8ff;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.example-card {
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.example-card__preview {
    height: 170px;
    padding: 12px;
    background: #eef4ff;
}

.preview-window {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 9px 22px rgba(8, 35, 95, 0.1);
}

.preview-bar {
    height: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 8px;
    background: #f9fbff;
    border-bottom: 1px solid #eef3fb;
}

.preview-bar i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd8ef;
}

.preview-content {
    position: relative;
    height: calc(100% - 16px);
    padding: 16px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(4, 20, 64, 0.92) 0%, rgba(6, 28, 82, 0.72) 54%, rgba(10, 82, 190, 0.1) 100%),
        linear-gradient(135deg, #103982 0%, #2b77f6 100%);
}

.preview-content span {
    display: block;
    color: #7dbbff;
    font-size: 0.56rem;
    line-height: 1;
    font-weight: 600;
}

.preview-content h3 {
    max-width: 178px;
    margin: 30px 0 0;
    color: currentColor;
    font-size: 1.07rem;
    line-height: 1.13;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.preview-content small {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    margin-top: 10px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.54rem;
    font-weight: 500;
    text-transform: uppercase;
}

.preview-items {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.preview-items i {
    height: 23px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.92);
}

.preview-content--light {
    color: var(--text);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.76) 58%, rgba(255, 255, 255, 0.14) 100%),
        linear-gradient(135deg, #dff8f2 0%, #99ead9 100%);
}

.preview-content--light span {
    color: #148b6d;
}

.preview-accounting .preview-content {
    background:
        linear-gradient(90deg, rgba(4, 20, 64, 0.93) 0%, rgba(6, 28, 82, 0.72) 58%, rgba(10, 82, 190, 0.08) 100%),
        linear-gradient(135deg, #112f6e 0%, #2f72ea 100%);
}

.preview-construction .preview-content {
    background:
        linear-gradient(90deg, rgba(25, 15, 5, 0.9) 0%, rgba(51, 30, 9, 0.72) 58%, rgba(193, 128, 30, 0.08) 100%),
        linear-gradient(135deg, #402000 0%, #c98624 100%);
}

.preview-law .preview-content {
    background:
        linear-gradient(90deg, rgba(4, 20, 64, 0.95) 0%, rgba(6, 28, 82, 0.76) 58%, rgba(10, 82, 190, 0.08) 100%),
        linear-gradient(135deg, #061d50 0%, #265fcf 100%);
}

.preview-store .preview-content {
    background:
        linear-gradient(90deg, rgba(8, 35, 90, 0.93) 0%, rgba(8, 48, 130, 0.72) 58%, rgba(15, 99, 255, 0.08) 100%),
        linear-gradient(135deg, #0d3278 0%, #4287ff 100%);
}

.preview-fashion .preview-content {
    background:
        linear-gradient(90deg, rgba(48, 15, 62, 0.88) 0%, rgba(92, 31, 105, 0.72) 58%, rgba(220, 106, 255, 0.08) 100%),
        linear-gradient(135deg, #38104b 0%, #a743d6 100%);
}

.preview-food .preview-content {
    background:
        linear-gradient(90deg, rgba(55, 22, 5, 0.9) 0%, rgba(106, 47, 11, 0.74) 58%, rgba(255, 137, 37, 0.08) 100%),
        linear-gradient(135deg, #4a1f05 0%, #ff8732 100%);
}

.example-card__body {
    padding: 15px 16px 17px;
}

.example-card__body h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.03rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.example-card__body p {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 0.91rem;
    line-height: 1.55;
    font-weight: 400;
}

.is-hidden {
    display: none;
}

.more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.more-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 22px;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue-2);
    border: 1px solid #dce8ff;
    box-shadow: var(--shadow-soft);
    font-size: 0.92rem;
    font-weight: 600;
}

.more-link svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* BENEFÍCIOS */
.section--benefits {
    padding-top: 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.benefit-card {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    border: 1px solid var(--line-soft);
    border-radius: 13px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.benefit-card span {
    flex: 0 0 auto;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(180deg, #f2f7ff 0%, #e5efff 100%);
}

.benefit-card svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card p {
    margin: 0;
    color: var(--text);
    font-size: 0.82rem;
    line-height: 1.38;
    font-weight: 600;
}

/* CTA FULL WIDTH */
.cta-banner {
    width: 100vw;
    margin: 36px calc(50% - 50vw) 0;
    background: linear-gradient(135deg, #09236b 0%, #0b50dd 100%);
    box-shadow: 0 -8px 34px rgba(9, 45, 126, 0.14);
}

.cta-banner__inner {
    width: min(100% - 40px, var(--max-width));
    min-height: 158px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    color: var(--white);
}

.cta-banner__content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-banner__icon {
    flex: 0 0 auto;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #2477ff 0%, #0d5bed 100%);
    box-shadow: 0 14px 34px rgba(2, 22, 78, 0.28);
}

.cta-banner__icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-banner h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.55rem, 2.3vw, 2.25rem);
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.cta-banner p {
    max-width: 700px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.58;
    font-weight: 400;
}

.cta-banner__action {
    display: grid;
    gap: 10px;
}

.cta-banner__action a {
    min-height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 22px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--green) 0%, var(--green-2) 100%);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(18, 165, 72, 0.28);
    font-size: 1.08rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.cta-banner__action a svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-banner__action span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    line-height: 1.4;
    font-weight: 400;
}

.cta-banner__action span svg {
    width: 15px;
    height: 15px;
    stroke: #8ce8aa;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* EFEITO SIMPLES */
.reveal-item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 1160px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__visual {
        min-height: 380px;
    }

    .mockup--laptop {
        right: 80px;
    }

    .hero__price {
        left: 54px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-arrow {
        display: none;
    }

    .examples-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cta-banner__inner {
        grid-template-columns: 1fr;
    }

    .cta-banner__action {
        max-width: 430px;
        width: 100%;
    }
}

@media (max-width: 760px) {
    .container,
    .hero__inner,
    .cta-banner__inner {
        width: min(100% - 28px, var(--max-width));
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        min-height: auto;
        padding: 30px 0 28px;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero__text {
        font-size: 0.98rem;
    }

    .hero__features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero__visual {
        min-height: 290px;
    }

    .mockup--laptop {
        width: 340px;
        height: 220px;
        right: 34px;
        top: 26px;
    }

    .mockup--phone {
        width: 82px;
        height: 170px;
        right: 2px;
        top: 84px;
    }

    .phone-screen h3 {
        margin-top: 24px;
        font-size: 0.7rem;
    }

    .phone-screen button {
        min-height: 19px;
        font-size: 0.42rem;
    }

    .hero__price {
        width: 108px;
        height: 108px;
        left: 0;
        top: 108px;
    }

    .hero__price strong {
        font-size: 1.35rem;
    }

    .hero__price span,
    .hero__price small {
        font-size: 0.58rem;
    }

    .mockup__headline {
        margin-top: 36px;
        max-width: 150px;
    }

    .mockup__headline h2 {
        font-size: 0.92rem;
    }

    .mockup__cards span {
        min-height: 30px;
        font-size: 0;
    }

    .steps,
    .examples-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding-top: 30px;
    }

    .step-card {
        min-height: auto;
    }

    .example-card__preview {
        height: 165px;
    }

    .cta-banner {
        margin-top: 30px;
    }

    .cta-banner__content {
        align-items: flex-start;
    }

    .cta-banner__icon {
        width: 62px;
        height: 62px;
    }

    .cta-banner__icon svg {
        width: 30px;
        height: 30px;
    }

    .cta-banner__action a {
        min-height: 58px;
        font-size: 0.96rem;
    }
}

@media (max-width: 460px) {
    .hero h1 {
        font-size: 2rem;
    }

    .mockup--laptop {
        width: 270px;
        height: 178px;
        right: 20px;
    }

    .mockup--phone {
        width: 70px;
        height: 148px;
    }

    .hero__visual {
        min-height: 250px;
    }

    .hero__price {
        width: 92px;
        height: 92px;
        top: 92px;
    }

    .hero__price strong {
        font-size: 1.15rem;
    }

    .preview-content h3 {
        max-width: 165px;
        font-size: 1rem;
    }

    .cta-banner__content {
        display: grid;
        gap: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-item,
    .reveal-item.is-visible,
    .tab-button,
    .more-link,
    .cta-banner__action a {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.example-card__preview--image {
    padding: 0;
    background: #eef4ff;
}

.example-card__preview--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.example-card,
.example-card:hover,
.example-card:focus,
.example-card:active,
.example-card:visited {
    color: inherit;
    text-decoration: none;
}

.example-card {
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.example-card:hover,
.example-card:focus-visible {
    transform: translateY(-3px);
    border-color: #d5e2f8;
    box-shadow: 0 14px 34px rgba(7, 31, 86, 0.1);
    outline: 0;
}

.example-card__preview--image {
    padding: 0;
    background: #eef4ff;
}

.example-card__preview--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.paid-options {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 36px 0 42px;
    background:
        radial-gradient(circle at 18% 20%, rgba(218, 232, 255, 0.85), transparent 28rem),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.paid-options__inner {
    width: min(100% - 40px, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 26px;
    align-items: center;
}

.paid-options__content {
    max-width: 780px;
}

.paid-options__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-2);
    border: 1px solid #dce8ff;
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.paid-options__tag svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.paid-options h2 {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--text);
    font-size: clamp(1.65rem, 2.4vw, 2.45rem);
    line-height: 1.16;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.paid-options h2 strong {
    display: block;
    color: var(--blue);
    font-weight: 600;
}

.paid-options__content > p {
    max-width: 740px;
    margin: 14px 0 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.68;
    font-weight: 400;
}

.paid-options__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-top: 22px;
}

.paid-options__item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 70px;
    padding: 13px 14px;
    border: 1px solid var(--line-soft);
    border-radius: 13px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.paid-options__item span {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(180deg, #f2f7ff 0%, #e5efff 100%);
}

.paid-options__item svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.paid-options__item p {
    margin: 0;
    color: var(--text);
    font-size: 0.86rem;
    line-height: 1.38;
    font-weight: 500;
}

.paid-options__box {
    padding: 22px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
}

.paid-options__box-header {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line-soft);
}

.paid-options__box-header span {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 0.82rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.paid-options__box-header strong {
    display: block;
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.paid-options__box ul {
    display: grid;
    gap: 10px;
    margin: 17px 0 20px;
    padding: 0;
    list-style: none;
}

.paid-options__box li {
    position: relative;
    padding-left: 22px;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.42;
    font-weight: 400;
}

.paid-options__box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-soft);
}

.paid-options__box a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 0 18px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-2) 100%);
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(11, 99, 255, 0.22);
}

.paid-options__box a svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 980px) {
    .paid-options__inner {
        grid-template-columns: 1fr;
    }

    .paid-options__box {
        max-width: 520px;
    }
}

@media (max-width: 680px) {
    .paid-options {
        padding: 30px 0 34px;
    }

    .paid-options__inner {
        width: min(100% - 28px, var(--max-width));
    }

    .paid-options__items {
        grid-template-columns: 1fr;
    }

    .paid-options__box {
        padding: 18px;
    }
}

.find-accountant {
    width: 100vw;
    margin: 26px calc(50% - 50vw) 0;
    padding: 0;
}

.find-accountant__inner {
    width: min(100% - 40px, var(--max-width));
    min-height: 118px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 22px 24px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 12% 20%, rgba(219, 234, 255, 0.9), transparent 24rem),
        linear-gradient(135deg, #ffffff 0%, #f2f7ff 100%);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
}

.find-accountant__content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.find-accountant__icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-2) 100%);
    box-shadow: 0 12px 28px rgba(11, 99, 255, 0.22);
}

.find-accountant__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.find-accountant h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.find-accountant p {
    max-width: 760px;
    margin: 7px 0 0;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.58;
    font-weight: 400;
}

.find-accountant__button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-2) 100%);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(11, 99, 255, 0.2);
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.find-accountant__button,
.find-accountant__button:hover,
.find-accountant__button:focus,
.find-accountant__button:active,
.find-accountant__button:visited {
    color: var(--white);
    text-decoration: none;
}

.find-accountant__button svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.find-accountant__button:hover,
.find-accountant__button:focus-visible {
    transform: translateY(-2px);
    outline: 0;
}

@media (max-width: 780px) {
    .find-accountant {
        margin-top: 22px;
    }

    .find-accountant__inner {
        width: min(100% - 28px, var(--max-width));
        grid-template-columns: 1fr;
        align-items: flex-start;
        padding: 20px;
    }

    .find-accountant__content {
        align-items: flex-start;
    }

    .find-accountant__button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .find-accountant__content {
        display: grid;
        gap: 13px;
    }

    .find-accountant__icon {
        width: 52px;
        height: 52px;
    }
}
