@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
            --bg: #f7f1e5;
            --bg-2: #eee3d2;
            --panel: rgba(255, 252, 246, .94);
            --panel-solid: #fffaf2;
            --paper: #fffdf8;
            --ink: #2c2926;
            --muted: #6d655e;
            --line: rgba(185, 146, 39, .24);
            --line-strong: rgba(185, 146, 39, .52);
            --green: #b70000;
            --green-dark: #8f0000;
            --cyan: #c49a28;
            --amber: #d1a12b;
            --red: #b70000;
            --text-dark: #fffaf5;
            --shadow: 0 26px 70px rgba(91, 62, 24, .16);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--ink);
            background: var(--bg);
            font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            line-height: 1.5;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -3;
            background:
                linear-gradient(rgba(185, 146, 39, .09) 1px, transparent 1px),
                linear-gradient(90deg, rgba(185, 146, 39, .07) 1px, transparent 1px),
                radial-gradient(circle at 50% -10%, rgba(183, 0, 0, .10), transparent 38%),
                var(--bg);
            background-size: 64px 64px, 64px 64px, auto, auto;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        select {
            font: inherit;
        }

        .page-shell {
            min-height: 100vh;
            overflow: hidden;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 30;
            border-bottom: 1px solid var(--line);
            background: rgba(247, 241, 229, .92);
            backdrop-filter: blur(18px);
        }

        .nav {
            width: min(1200px, calc(100% - 32px));
            min-height: 72px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-weight: 900;
            letter-spacing: 0;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            border: 1px solid var(--line-strong);
            border-radius: 8px;
            display: grid;
            place-items: center;
            overflow: hidden;
            color: #fffaf5;
            background: #fffdf8;
            box-shadow: 0 10px 28px rgba(91, 62, 24, .16);
        }

        .brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            color: var(--muted);
            font-size: 14px;
            font-weight: 800;
        }

        .button,
        .nav-button {
            border: 0;
            border-radius: 8px;
            min-height: 44px;
            padding: 0 18px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #fffaf5;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            font-weight: 900;
            box-shadow: 0 16px 34px rgba(183, 0, 0, .22);
        }

        .button--ghost {
            color: var(--ink);
            background: rgba(255, 253, 248, .78);
            border: 1px solid var(--line-strong);
            box-shadow: none;
        }

        .hero-stage {
            position: relative;
            min-height: calc(100vh - 72px);
            padding: 58px 0 46px;
        }

        .hero-canvas {
            position: absolute;
            inset: 0;
            z-index: -2;
            width: 100%;
            height: 100%;
            opacity: .62;
        }

        .hero {
            width: min(1200px, calc(100% - 32px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.03fr) minmax(380px, .72fr);
            gap: 34px;
            align-items: start;
        }

        .eyebrow {
            margin: 0 0 14px;
            color: var(--green);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        h1 {
            margin: 0;
            max-width: 760px;
            font-size: clamp(40px, 5.5vw, 70px);
            line-height: .98;
            letter-spacing: 0;
        }

        .hero-copy > p:not(.eyebrow) {
            max-width: 680px;
            margin: 24px 0 0;
            color: var(--muted);
            font-size: 20px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-top: 30px;
        }

        .hero-text-link {
            color: var(--green-dark);
            font-size: 13px;
            font-weight: 900;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .section-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 28px;
            text-align: center;
        }

        .section-actions .button,
        .section-actions .nav-button {
            min-width: min(100%, 220px);
        }

        .section-inner > .button,
        .section-inner > .nav-button {
            width: max-content;
            max-width: 100%;
            margin: 28px auto 0;
            display: flex;
            text-align: center;
        }

        .data-strip {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 32px;
            max-width: 760px;
        }

        .data-chip {
            min-height: 92px;
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 14px;
            background: rgba(255, 253, 248, .88);
            backdrop-filter: blur(14px);
        }

        .data-chip strong {
            display: block;
            color: var(--ink);
            font-size: 17px;
            line-height: 1.2;
        }

        .data-chip span {
            display: block;
            margin-top: 3px;
            color: var(--muted);
            font-size: 13px;
        }

        .brand-marquee {
            max-width: 760px;
            margin-top: 18px;
        }

        .brand-marquee__label,
        .brand-marquee__note {
            margin: 0;
            color: var(--muted);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .02em;
        }

        .brand-marquee__note {
            margin-top: 8px;
            font-size: 11px;
            font-weight: 600;
        }

        .brand-marquee__viewport {
            position: relative;
            margin-top: 10px;
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
        }

        .brand-marquee__track,
        .brand-marquee__group {
            display: flex;
            align-items: center;
        }

        .brand-marquee__track {
            width: max-content;
            animation: brand-marquee-scroll 36s linear infinite;
        }

        .brand-marquee__group {
            flex: 0 0 auto;
            gap: 10px;
            padding-right: 10px;
        }

        .brand-marquee__item {
            min-width: 138px;
            min-height: 48px;
            padding: 8px 12px;
            border: 1px solid var(--line);
            border-radius: 8px;
            display: inline-flex;
            flex: 0 0 auto;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--ink);
            background: rgba(255, 253, 248, .92);
            box-shadow: 0 8px 22px rgba(91, 62, 24, .08);
            font-size: 13px;
            font-weight: 900;
            white-space: nowrap;
        }

        .brand-marquee__item img {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            display: block;
            object-fit: cover;
        }

        .brand-marquee__item--partner {
            min-width: 154px;
        }

        .brand-marquee__item .brand-marquee__logo {
            width: 112px;
            height: 30px;
            border-radius: 0;
            object-fit: contain;
        }

        .brand-marquee__item--pagbank {
            background: #171717;
            border-color: #171717;
        }

        .brand-marquee__symbol {
            width: 24px;
            height: 24px;
            border-radius: 999px;
            display: inline-grid;
            place-items: center;
            color: #fff;
            background: var(--ink);
            font-size: 15px;
            font-weight: 900;
            line-height: 1;
        }

        .brand-marquee__item--mercado-pago {
            color: #1672bd;
        }

        .brand-marquee__item--mercado-pago .brand-marquee__symbol {
            color: #1672bd;
            background: #ffe600;
        }

        .brand-marquee__item--pagbank {
            color: #157a50;
        }

        .brand-marquee__item--pagbank .brand-marquee__symbol {
            color: #fff;
            background: #157a50;
        }

        .brand-marquee__item--infinitepay {
            color: #171527;
        }

        .brand-marquee__item--infinitepay .brand-marquee__symbol {
            color: #171527;
            background: linear-gradient(135deg, #00ef26, #ffc700);
            font-size: 23px;
        }

        .brand-marquee__item--hostgator {
            color: #1f2e68;
        }

        .brand-marquee__item--hostgator .brand-marquee__symbol {
            color: #f37b30;
            background: #1f2e68;
        }

        @keyframes brand-marquee-scroll {
            to {
                transform: translateX(-50%);
            }
        }

        .console-preview {
            margin-top: 34px;
            max-width: 760px;
            border: 1px solid var(--line);
            border-radius: 8px;
            overflow: hidden;
            background: rgba(255, 250, 242, .94);
            box-shadow: var(--shadow);
            animation: console-float 8s ease-in-out infinite;
        }

        .console-bar {
            min-height: 42px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 16px;
            border-bottom: 1px solid var(--line);
            background: rgba(255, 253, 248, .78);
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: var(--red);
        }

        .dot:nth-child(2) {
            background: var(--amber);
        }

        .dot:nth-child(3) {
            background: var(--green);
        }

        .console-body {
            min-height: 360px;
            padding: 18px;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: 1.16fr .84fr;
            gap: 14px;
            min-height: 326px;
        }

        .showcase-side {
            display: grid;
            gap: 14px;
        }

        .showcase-card,
        .screen-card {
            position: relative;
            margin: 0;
            border: 1px solid var(--line);
            border-radius: 8px;
            overflow: hidden;
            background: rgba(255, 253, 248, .92);
            box-shadow: 0 18px 42px rgba(91, 62, 24, .14);
        }

        .showcase-card img,
        .screen-card img {
            width: 100%;
            height: 100%;
            min-height: 150px;
            display: block;
            object-fit: cover;
            object-position: top center;
        }

        .showcase-card--main img {
            min-height: 326px;
        }

        .showcase-card--main {
            animation: showcase-drift 9s ease-in-out infinite;
        }

        .showcase-side .showcase-card:first-child {
            animation: showcase-drift 8s ease-in-out -2.5s infinite reverse;
        }

        .showcase-side .showcase-card:last-child {
            animation: showcase-drift 10s ease-in-out -5s infinite;
        }

        @keyframes console-float {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-7px);
            }
        }

        @keyframes showcase-drift {
            0%, 100% {
                transform: translate3d(0, 0, 0);
            }

            50% {
                transform: translate3d(0, -5px, 0);
            }
        }

        .showcase-card figcaption,
        .screen-card figcaption {
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 12px;
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: 8px;
            padding: 9px 10px;
            color: var(--ink);
            background: rgba(3, 8, 6, .72);
            backdrop-filter: blur(12px);
            font-size: 13px;
            font-weight: 800;
        }

        .signup-panel {
            border: 1px solid var(--line-strong);
            border-radius: 8px;
            padding: 24px;
            background: rgba(255, 252, 246, .97);
            box-shadow: var(--shadow), 0 0 0 1px rgba(185, 146, 39, .08) inset;
            backdrop-filter: blur(18px);
        }

        #cadastro {
            scroll-margin-top: 92px;
        }

        .signup-panel__intro {
            padding-bottom: 22px;
        }

        .signup-panel__intro .eyebrow {
            margin-bottom: 10px;
        }

        .signup-panel .signup-panel__intro h2 {
            max-width: 390px;
            font-size: clamp(28px, 3vw, 38px);
        }

        .signup-panel__intro p:not(.eyebrow) {
            max-width: 440px;
            margin-bottom: 20px;
        }

        .signup-panel__consultation {
            width: 100%;
            justify-content: center;
        }

        .signup-disclosure {
            border-top: 1px solid var(--line);
        }

        .signup-disclosure summary {
            display: grid;
            gap: 3px;
            padding: 21px 0;
            color: var(--ink);
            cursor: pointer;
            list-style: none;
        }

        .signup-disclosure summary::-webkit-details-marker {
            display: none;
        }

        .signup-disclosure summary span {
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
        }

        .signup-disclosure summary strong {
            color: var(--green-dark);
            font-size: 15px;
        }

        .signup-disclosure[open] summary {
            padding-bottom: 16px;
        }

        .signup-disclosure__body > h2 {
            font-size: 28px;
        }

        .signup-disclosure__body > p {
            margin-top: 8px;
        }

        .signup-panel h2 {
            margin: 0;
            font-size: 30px;
            line-height: 1.08;
        }

        .signup-panel p {
            margin: 9px 0 18px;
            color: var(--muted);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 13px;
        }

        .field {
            display: grid;
            gap: 7px;
        }

        .field--full {
            grid-column: 1 / -1;
        }

        .field span,
        .field-title {
            color: #3a342f;
            font-size: 13px;
            font-weight: 800;
        }

        input,
        select {
            width: 100%;
            min-height: 46px;
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 0 12px;
            color: var(--ink);
            background: #fffdf8;
            outline: none;
        }

        select {
            color-scheme: light;
        }

        input::placeholder {
            color: rgba(74, 67, 61, .52);
        }

        input:focus,
        select:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(183, 0, 0, .12);
        }

        .city-warning {
            grid-column: 1 / -1;
            border: 1px solid rgba(185, 146, 39, .46);
            border-radius: 8px;
            padding: 10px 12px;
            color: #6f5211;
            background: rgba(209, 161, 43, .12);
            font-size: 13px;
        }

        .plan-mini {
            grid-column: 1 / -1;
            border: 1px solid var(--line-strong);
            border-radius: 8px;
            padding: 12px;
            background: rgba(183, 0, 0, .06);
            display: grid;
            gap: 10px;
        }

        .plan-mini strong {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .plan-mini span {
            color: var(--green);
            font-weight: 900;
        }

        .plan-select-field select {
            min-height: 52px;
            border-color: var(--line-strong);
            color: var(--ink);
            background:
                linear-gradient(135deg, rgba(183, 0, 0, .07), rgba(196, 154, 40, .09)),
                rgba(255, 255, 255, .06);
            font-weight: 900;
        }

        .plan-select-field select:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(183, 0, 0, .12);
        }


        .legal-consent {
            grid-column: 1 / -1;
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 13px;
            background: rgba(255, 253, 248, .88);
            display: grid;
            gap: 12px;
        }

        .legal {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--muted);
            font-size: 13px;
        }

        .legal input {
            width: 18px;
            min-height: 18px;
            margin-top: 2px;
            accent-color: var(--green);
        }

        .legal-policy {
            display: grid;
            gap: 10px;
        }

        .legal-policy summary {
            width: max-content;
            max-width: 100%;
            cursor: pointer;
            color: var(--green);
            font-size: 13px;
            font-weight: 900;
        }

        .legal-policy__content {
            max-height: 280px;
            overflow: auto;
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 14px;
            color: var(--muted);
            background: rgba(255, 250, 242, .96);
            font-size: 13px;
            line-height: 1.6;
        }

        .legal-policy__content h3 {
            margin: 16px 0 7px;
            color: var(--ink);
            font-size: 14px;
        }

        .legal-policy__content p,
        .legal-policy__content ul {
            margin: 0 0 10px;
        }

        .legal-policy__content ul {
            padding-left: 18px;
        }

        .legal-policy__contacts {
            color: #3a342f;
        }

        .submit {
            width: 100%;
            min-height: 52px;
            margin-top: 16px;
            font-size: 16px;
        }

        .support-line {
            margin: 14px 0 0;
            text-align: center;
            color: var(--muted);
            font-size: 13px;
        }

        .support-line a {
            color: var(--green);
            font-weight: 900;
        }

        .demo-section {
            padding-top: 34px;
        }

        .demo-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            margin-top: 28px;
        }

        .demo-card {
            display: flex;
            align-items: center;
            gap: 13px;
            min-height: 110px;
            padding: 16px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(255, 253, 248, .84);
            box-shadow: 0 14px 34px rgba(91, 62, 24, .08);
            transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
        }

        .demo-card:hover {
            border-color: var(--line-strong);
            box-shadow: 0 18px 40px rgba(91, 62, 24, .14);
            transform: translateY(-2px);
        }

        .demo-card__logo {
            display: grid;
            width: 44px;
            height: 44px;
            flex: 0 0 auto;
            place-items: center;
            overflow: hidden;
            border: 1px solid var(--line-strong);
            border-radius: 50%;
            background: #fffdf8;
            color: var(--green-dark);
            font-size: 18px;
            font-weight: 900;
        }

        .demo-card__logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .demo-card__content {
            display: grid;
            min-width: 0;
            gap: 3px;
        }

        .demo-card__content strong {
            overflow: hidden;
            color: var(--ink);
            font-size: 14px;
            line-height: 1.2;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .demo-card__content small {
            color: var(--muted);
            font-size: 11px;
            line-height: 1.35;
        }

        .demo-card__arrow {
            align-self: flex-start;
            margin-left: auto;
            color: var(--green-dark);
            font-size: 18px;
            font-weight: 900;
        }

        .consultation-section {
            padding-top: 10px;
        }

        .consultation-card {
            width: min(1200px, calc(100% - 32px));
            margin: 0 auto;
            padding: clamp(28px, 5vw, 54px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 26px;
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 8px;
            color: #fffaf5;
            background: linear-gradient(125deg, #5e0000, #9b0000 58%, #bd7212);
            box-shadow: 0 24px 58px rgba(91, 0, 0, .2);
        }

        .consultation-card .eyebrow {
            color: #ffdea5;
        }

        .consultation-card h2 {
            max-width: 700px;
            margin: 0;
            font-size: clamp(29px, 4vw, 50px);
            line-height: 1.02;
        }

        .consultation-card p:not(.eyebrow) {
            max-width: 680px;
            margin: 14px 0 0;
            color: rgba(255, 250, 245, .82);
        }

        .consultation-card .button {
            flex: 0 0 auto;
            color: var(--green-dark);
            background: #fffaf5;
            box-shadow: none;
        }

        .section {
            padding: 64px 0;
        }

        .section-inner {
            width: min(1200px, calc(100% - 32px));
            margin: 0 auto;
        }

        .section-head {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 24px;
            margin-bottom: 24px;
        }

        .section-head h2 {
            margin: 0;
            max-width: 680px;
            font-size: clamp(30px, 4.3vw, 52px);
            line-height: 1;
        }

        .section-head p {
            max-width: 500px;
            margin: 0;
            color: var(--muted);
        }

        .source-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: max-content;
            max-width: 100%;
            margin-top: 12px;
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 7px 10px;
            color: var(--muted);
            background: rgba(255, 253, 248, .78);
            font-size: 12px;
            font-weight: 800;
        }

        .source-chip::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--source-chip-color, var(--amber));
            box-shadow: 0 0 14px currentColor;
        }

        .source-chip--live {
            --source-chip-color: var(--green);
        }

        .source-chip--fallback {
            --source-chip-color: var(--amber);
        }

        .media-section {
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            background: rgba(255, 253, 248, .56);
        }

        .screenshot-grid {
            display: grid;
            grid-template-columns: 1.15fr .85fr .85fr;
            gap: 16px;
            align-items: stretch;
        }

        .screen-card {
            min-height: 360px;
        }

        .screen-card--wide {
            min-height: 420px;
        }

        .screen-card img {
            min-height: inherit;
        }

        .plans {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .plan-card {
            position: relative;
            min-height: 410px;
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 20px;
            background: rgba(255, 253, 248, .88);
            box-shadow: 0 16px 40px rgba(91, 62, 24, .12);
            display: grid;
            align-content: start;
            gap: 15px;
            transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
        }

        .plan-card.is-selected {
            transform: translateY(-4px);
            border-color: var(--green);
            box-shadow: 0 24px 52px rgba(183, 0, 0, .12);
        }

        .plan-tag {
            width: max-content;
            max-width: 100%;
            border: 1px solid rgba(185, 146, 39, .34);
            border-radius: 999px;
            padding: 5px 10px;
            color: var(--cyan);
            background: rgba(196, 154, 40, .10);
            font-size: 12px;
            font-weight: 900;
        }

        .plan-card.is-featured .plan-tag {
            border-color: rgba(183, 0, 0, .34);
            color: var(--green);
            background: rgba(183, 0, 0, .08);
        }

        .plan-card h3 {
            margin: 0;
            font-size: 23px;
            line-height: 1.1;
        }

        .plan-card p {
            min-height: 72px;
            margin: 0;
            color: var(--muted);
        }

        .price {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .price strong {
            font-size: 34px;
            letter-spacing: 0;
        }

        .price span {
            color: var(--muted);
            font-weight: 800;
        }

        .annual-note {
            color: var(--amber);
            font-size: 12px;
            font-weight: 800;
        }

        .features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 9px;
            color: #3a342f;
            font-size: 14px;
        }

        .features li {
            display: grid;
            grid-template-columns: 18px 1fr;
            gap: 8px;
            align-items: start;
        }

        .features li::before {
            content: "✓";
            color: var(--green);
            font-weight: 900;
        }

        .choose-plan {
            width: 100%;
            min-height: 42px;
            margin-top: auto;
            border: 1px solid var(--line-strong);
            border-radius: 8px;
            color: var(--ink);
            background: rgba(255, 253, 248, .92);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 900;
        }

        .plan-card.is-selected .choose-plan {
            color: #fffaf5;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
        }

        .ops-section {
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            background: rgba(238, 227, 210, .58);
        }

        .workflow {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .step {
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 20px;
            background: rgba(255, 253, 248, .78);
        }

        .step b {
            width: 34px;
            height: 34px;
            margin-bottom: 18px;
            border-radius: 8px;
            display: inline-grid;
            place-items: center;
            color: #fffaf5;
            background: var(--green);
        }

        .step h3 {
            margin: 0 0 8px;
        }

        .step p {
            margin: 0;
            color: var(--muted);
        }

        footer {
            padding: 28px 0;
            color: var(--muted);
            font-size: 13px;
        }

        footer .section-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        footer a {
            color: var(--green);
            font-weight: 900;
        }

        [hidden] {
            display: none !important;
        }

        @media (max-width: 1060px) {
            .hero {
                grid-template-columns: minmax(0, 1fr);
            }

            .signup-panel {
                max-width: 720px;
            }

            .plans,
            .screenshot-grid,
            .demo-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .consultation-card {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        @media (max-width: 720px) {
            .nav,
            .hero,
            .section-inner {
                width: min(100% - 24px, 1200px);
            }

            .nav {
                min-height: 64px;
            }

            .nav-links a:not(.nav-button) {
                display: none;
            }

            .hero-stage {
                padding-top: 36px;
            }

            /* Evita que elementos animados aumentem a largura da coluna no celular. */
            .hero-copy {
                width: 100%;
                min-width: 0;
            }

            .hero-copy > *,
            .data-strip,
            .brand-marquee,
            .console-preview {
                min-width: 0;
                max-width: 100%;
            }

            .hero-copy > p:not(.eyebrow) {
                font-size: 17px;
            }

            .data-strip,
            .showcase-grid,
            .form-grid,
            .plans,
            .screenshot-grid,
            .demo-grid,
            .workflow {
                grid-template-columns: 1fr;
            }

            .showcase-card--main img,
            .screen-card,
            .screen-card--wide {
                min-height: 260px;
            }

            .section-head {
                display: grid;
                align-items: start;
            }

            .signup-panel {
                padding: 18px;
            }

            .consultation-card {
                width: min(100% - 24px, 1200px);
                padding: 28px 22px;
            }

            .consultation-card .button {
                width: 100%;
                justify-content: center;
            }
        }


        /* Ajustes do tema claro inspirado no cardápio */
        .site-header,
        .nav,
        .brand,
        .nav-links,
        .hero-copy,
        .signup-panel,
        .section,
        .section-inner,
        footer {
            color: var(--ink);
        }

        .button,
        .nav-button,
        .plan-card.is-selected .choose-plan,
        .step b {
            color: #fffaf5;
        }

        .button--ghost {
            color: var(--ink);
            background: rgba(255, 253, 248, .86);
            border-color: var(--line-strong);
        }

        .button--ghost:hover,
        .choose-plan:hover {
            border-color: var(--green);
        }

        .data-chip,
        .plan-card,
        .step,
        .signup-panel,
        .console-preview,
        .showcase-card,
        .screen-card,
        .legal-consent {
            background-color: rgba(255, 253, 248, .92);
        }

        .console-bar {
            background: rgba(238, 227, 210, .72);
        }

        .showcase-card figcaption,
        .screen-card figcaption {
            color: #fffaf5;
            background: rgba(44, 32, 25, .78);
        }

        input,
        select {
            color: var(--ink);
            background: #fffdf8;
        }

        .plan-select-field select {
            color: var(--ink);
        }

        .legal-policy__content {
            color: var(--muted);
        }

        .features {
            color: #3a342f;
        }

        .choose-plan {
            color: var(--ink);
            background: #fffaf5;
        }

        .eyebrow,
        .support-line a,
        footer a,
        .legal-policy summary,
        .features li::before {
            color: var(--green);
        }

        .plan-tag {
            color: #8a6716;
        }

        .plan-card.is-featured .plan-tag {
            color: var(--green);
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
            }
        }
