:root {
    --hd-navy: #0f172a;
    --hd-blue: #2563eb;
    --hd-cyan: #06b6d4;

    --hd-white: #ffffff;
    --hd-text: #0f172a;
    --hd-muted: #64748b;
    --hd-border: #e2e8f0;
    --hd-surface: #f8fafc;

    --hd-gradient:
        linear-gradient(135deg,
            var(--hd-blue) 0%,
            var(--hd-cyan) 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--hd-white);
    color: var(--hd-text);

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.site-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border: 1px solid transparent;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 200ms ease,
        background-color 200ms ease,
        box-shadow 200ms ease;
}

.site-button:hover {
    transform: translateY(-2px);
}

.site-button--small {
    min-height: 43px;
    padding: 0 18px;

    font-size: 12px;
}

.site-button--primary {
    background: var(--hd-blue);
    color: var(--hd-white);

    box-shadow:
        0 12px 26px rgba(37, 99, 235, 0.22);
}

.site-button--primary:hover {
    background: #1d4ed8;
}

@media (max-width: 680px) {
    .site-container {
        width: min(100% - 28px, 1240px);
    }
}



/* =========================================================
   HERO HDÁGIL — IMPACTO VISUAL
========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 42%, rgba(0, 105, 255, 0.22), transparent 31%),
        radial-gradient(circle at 12% 52%, rgba(0, 178, 255, 0.08), transparent 28%),
        linear-gradient(135deg, #020711 0%, #03101f 48%, #020812 100%);
    color: #ffffff;
    isolation: isolate;
}

.hero-background,
.hero-grid,
.hero-glow,
.hero-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-background {
    z-index: -1;
}

.hero-grid {
    opacity: 0.13;
    background-image:
        linear-gradient(rgba(69, 143, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(69, 143, 255, 0.15) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            #000 18%,
            #000 82%,
            transparent 100%);
}

.hero-glow {
    filter: blur(90px);
    opacity: 0.55;
}

.hero-glow-left {
    width: 440px;
    height: 440px;
    top: 23%;
    left: -310px;
    border-radius: 50%;
    background: rgba(0, 125, 255, 0.25);
}

.hero-glow-right {
    width: 680px;
    height: 680px;
    top: 7%;
    right: -290px;
    border-radius: 50%;
    background: rgba(0, 113, 255, 0.24);
}

.hero-network {
    left: auto;
    width: 53%;
    opacity: 0.33;
    background-image:
        radial-gradient(circle, rgba(51, 174, 255, 0.8) 1px, transparent 2px),
        linear-gradient(25deg, transparent 47%, rgba(19, 139, 255, 0.14) 49%, transparent 51%),
        linear-gradient(-24deg, transparent 47%, rgba(19, 139, 255, 0.12) 49%, transparent 51%);
    background-size:
        77px 77px,
        150px 110px,
        180px 120px;
    mask-image: radial-gradient(circle at center, #000 15%, transparent 75%);
}

.hero-container {
    width: min(1460px, calc(100% - 72px));
    margin: 0 auto;
    padding: 88px 0 20px;
}

.hero-main {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
    align-items: center;
    gap: 40px;
    min-height: 520px;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
    color: #48b7ff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-eyebrow-line {
    width: 31px;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, #13b4ff, #2468ff);
}

.hero-title {
    max-width: 670px;
    margin: 0;
    padding: 0 0 0.12em;
    color: #ffffff;
    font-size: clamp(2.7rem, 4vw, 4.3rem);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -0.052em;
    overflow: visible;
}

.hero-title span {
    display: block;

    margin-top: 10px;
    padding-bottom: 0.13em;

    color: transparent;

    background: linear-gradient(90deg,
            #09b8f2 0%,
            #1377ff 62%,
            #3f65ff 100%);

    background-clip: text;
    -webkit-background-clip: text;

    overflow: visible;
}

.hero-description {
    max-width: 620px;
    margin: 27px 0 0;
    color: #b3bfd0;
    font-size: 1.07rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button-primary {
    color: #ffffff;
    border-color: #156aff;
    background: linear-gradient(135deg, #087cf7, #1855e9);
    box-shadow:
        0 18px 38px rgba(0, 88, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-button-primary:hover {
    color: #ffffff;
    box-shadow:
        0 22px 44px rgba(0, 88, 255, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-button-secondary {
    color: #f3f7ff;
    border-color: rgba(139, 167, 205, 0.4);
    background: rgba(7, 17, 31, 0.52);
    backdrop-filter: blur(12px);
}

.hero-button-secondary:hover {
    color: #ffffff;
    border-color: rgba(68, 157, 255, 0.8);
    background: rgba(15, 42, 73, 0.66);
}

.hero-button-icon,
.hero-play-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    flex: 0 0 auto;
}

.hero-button-icon svg,
.hero-play-icon svg,
.hero-button-arrow {
    width: 100%;
    height: 100%;
}

.hero-button-arrow {
    width: 18px;
    height: 18px;
    transition: transform 180ms ease;
}

.hero-button-primary:hover .hero-button-arrow {
    transform: translateX(4px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
    margin-top: 25px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9fadc0;
    font-size: 0.77rem;
    font-weight: 600;
}

.hero-check {
    width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    color: #14c98a;
    background: rgba(19, 198, 136, 0.14);
}

.hero-check svg {
    width: 100%;
    height: 100%;
}

/* =========================================================
   PRODUTO — NOTEBOOK E CELULAR
========================================================= */

.hero-product {
    position: relative;
    z-index: 2;
    min-height: 555px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.hero-product-glow {
    position: absolute;
    width: 80%;
    height: 67%;
    top: 18%;
    left: 13%;
    border-radius: 50%;
    background: rgba(0, 115, 255, 0.24);
    filter: blur(90px);
}

.hero-product-badge {
    position: absolute;
    z-index: 10;
    top: 3%;
    right: 7%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(101, 164, 255, 0.25);
    border-radius: 999px;
    color: #bcd0ec;
    background: rgba(4, 17, 34, 0.75);
    box-shadow: 0 13px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
    font-size: 0.72rem;
}

.hero-product-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #19d897;
    box-shadow: 0 0 0 5px rgba(25, 216, 151, 0.12);
}

.hero-laptop {
    position: relative;
    width: min(720px, 96%);
    transform: rotateX(1deg) rotateY(-4deg);
    transform-style: preserve-3d;
    animation: hero-product-float 6s ease-in-out infinite;
}

.hero-laptop-screen {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    padding: 10px;
    border: 2px solid #536c8e;
    border-radius: 21px 21px 11px 11px;
    background: linear-gradient(145deg, #263a51, #02070e 17%);
    box-shadow:
        0 35px 75px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(98, 174, 255, 0.35),
        0 0 45px rgba(0, 111, 255, 0.22);
}

.hero-laptop-screen::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    width: 5px;
    height: 5px;
    z-index: 4;
    border-radius: 50%;
    background: #142538;
    transform: translateX(-50%);
}

.hero-browser-bar {
    height: 31px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 12px;
    border-radius: 10px 10px 0 0;
    background: #081321;
}

.hero-browser-dots {
    display: flex;
    gap: 5px;
}

.hero-browser-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #263a53;
}

.hero-browser-address {
    width: 48%;
    padding: 4px 13px;
    border-radius: 5px;
    color: #62738c;
    background: #0d1a2a;
    font-size: 0.49rem;
}

.hero-dashboard {
    height: calc(100% - 31px);
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 0 0 7px 7px;
    background:
        radial-gradient(circle at 75% 5%, rgba(22, 113, 255, 0.09), transparent 35%),
        #060e19;
}

.hero-dashboard-sidebar {
    padding: 16px 10px;
    border-right: 1px solid rgba(117, 153, 194, 0.1);
    background: #07101c;
}

.hero-dashboard-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 0.65rem;
}

.hero-dashboard-brand span {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #ffffff;
    background: linear-gradient(135deg, #225eff, #05b7d5);
    font-size: 0.52rem;
    font-weight: 800;
}

.hero-dashboard-brand strong {
    color: #e8f1ff;
    font-size: 0.7rem;
}

.hero-dashboard-menu {
    display: grid;
    gap: 6px;
}

.hero-dashboard-menu span {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 7px;
    border-radius: 5px;
    color: #8391a5;
    font-size: 0.49rem;
}

.hero-dashboard-menu span.is-active {
    color: #d8e8ff;
    background: linear-gradient(90deg,
            rgba(27, 119, 255, 0.27),
            rgba(27, 119, 255, 0.06));
}

.hero-dashboard-menu i {
    width: 7px;
    height: 7px;
    border: 1px solid currentColor;
    border-radius: 2px;
}

.hero-dashboard-content {
    min-width: 0;
    padding: 16px;
}

.hero-dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-dashboard-top div:first-child {
    display: grid;
    gap: 3px;
}

.hero-dashboard-top small {
    color: #576a85;
    font-size: 0.46rem;
}

.hero-dashboard-top strong {
    color: #edf5ff;
    font-size: 0.72rem;
}

.hero-dashboard-avatar {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #185ef6, #11a7e8);
    font-size: 0.45rem;
    font-weight: 800;
}

.hero-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 13px;
}

.hero-dashboard-cards article,
.hero-chart-panel {
    border: 1px solid rgba(109, 149, 194, 0.13);
    border-radius: 8px;
    background:
        linear-gradient(145deg,
            rgba(19, 37, 59, 0.7),
            rgba(7, 17, 29, 0.78));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.hero-dashboard-cards article {
    display: grid;
    gap: 5px;
    padding: 11px;
}

.hero-dashboard-cards span {
    color: #76869b;
    font-size: 0.43rem;
}

.hero-dashboard-cards strong {
    color: #f4f8ff;
    font-size: 0.76rem;
}

.hero-dashboard-cards small {
    color: #14c896;
    font-size: 0.4rem;
}

.hero-dashboard-charts {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 9px;
    margin-top: 10px;
}

.hero-chart-panel {
    min-width: 0;
    padding: 10px;
}

.hero-panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-panel-title strong {
    color: #dce8f7;
    font-size: 0.5rem;
}

.hero-panel-title span {
    padding: 3px 6px;
    border-radius: 3px;
    color: #708199;
    background: rgba(111, 145, 187, 0.08);
    font-size: 0.38rem;
}

.hero-line-chart {
    position: relative;
    height: 135px;
    margin-top: 6px;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(102, 133, 171, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 133, 171, 0.07) 1px, transparent 1px);
    background-size: 100% 26px, 44px 100%;
}

.hero-line-chart svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hero-line-chart polyline {
    fill: none;
    stroke: #20a8ff;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 7px rgba(32, 168, 255, 0.45));
}

.hero-line-chart .hero-chart-area {
    fill: url("#hero-chart-area");
}

.hero-donut-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 135px;
}

.hero-donut {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #091525 52%, transparent 54%),
        conic-gradient(#168cff 0 45%,
            #16c8df 45% 72%,
            #2850d9 72% 88%,
            #15253c 88% 100%);
}

.hero-donut span {
    color: #eef7ff;
    font-size: 0.65rem;
    font-weight: 700;
}

.hero-donut-content ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-donut-content li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #7d8da4;
    font-size: 0.41rem;
}

.hero-donut-content li i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #168cff;
}

.hero-donut-content li:nth-child(2) i {
    background: #16c8df;
}

.hero-donut-content li:nth-child(3) i {
    background: #2850d9;
}

.hero-laptop-base {
    position: relative;
    width: 113%;
    height: 22px;
    left: -6.5%;
    margin-top: -2px;
    border-radius: 2px 2px 24px 24px;
    background: linear-gradient(180deg,
            #61788f 0%,
            #1d2e3e 28%,
            #101b26 76%,
            #30485c 100%);
    box-shadow:
        0 13px 24px rgba(0, 0, 0, 0.44),
        inset 0 1px rgba(255, 255, 255, 0.16);
}

.hero-laptop-base::after {
    content: "";
    position: absolute;
    top: 0;
    left: 42%;
    width: 16%;
    height: 6px;
    border-radius: 0 0 8px 8px;
    background: #293d4e;
}

.hero-laptop-shadow {
    position: absolute;
    width: 94%;
    height: 28px;
    left: 3%;
    bottom: -19px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    filter: blur(13px);
}

.hero-phone {
    position: absolute;
    z-index: 9;
    width: 142px;
    right: -1%;
    bottom: 10%;
    padding: 6px;
    border: 2px solid #526a86;
    border-radius: 25px;
    background: linear-gradient(145deg, #344b61, #05090e 18%);
    box-shadow:
        0 28px 48px rgba(0, 0, 0, 0.55),
        0 0 28px rgba(0, 112, 255, 0.22);
    transform: rotateY(-6deg) rotateZ(1deg);
    animation: hero-phone-float 6s ease-in-out infinite;
}

.hero-phone-speaker {
    position: absolute;
    z-index: 3;
    top: 8px;
    left: 50%;
    width: 42px;
    height: 5px;
    border-radius: 10px;
    background: #02060b;
    transform: translateX(-50%);
}

.hero-phone-screen {
    min-height: 281px;
    padding: 25px 11px 11px;
    overflow: hidden;
    border-radius: 19px;
    background:
        radial-gradient(circle at 100% 0, rgba(28, 102, 255, 0.2), transparent 42%),
        #06101d;
}

.hero-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-phone-header div {
    display: grid;
    gap: 2px;
}

.hero-phone-header span {
    color: #eef6ff;
    font-size: 0.51rem;
    font-weight: 700;
}

.hero-phone-header small {
    color: #6c7c91;
    font-size: 0.39rem;
}

.hero-phone-header i {
    width: 13px;
    height: 13px;
    border: 1px solid #687a91;
    border-radius: 50%;
}

.hero-phone-value {
    display: grid;
    gap: 4px;
    margin-top: 23px;
}

.hero-phone-value span,
.hero-phone-stat span {
    color: #708096;
    font-size: 0.4rem;
}

.hero-phone-value strong {
    color: #f5f9ff;
    font-size: 0.72rem;
}

.hero-phone-value small {
    color: #12cf99;
    font-size: 0.39rem;
}

.hero-phone-chart {
    height: 76px;
    margin-top: 10px;
    background-image:
        linear-gradient(rgba(114, 146, 185, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(114, 146, 185, 0.07) 1px, transparent 1px);
    background-size: 100% 19px, 27px 100%;
}

.hero-phone-chart svg {
    width: 100%;
    height: 100%;
}

.hero-phone-chart polyline {
    fill: none;
    stroke: #1a9eff;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.hero-phone-stat {
    display: grid;
    gap: 3px;
    padding: 10px;
    border: 1px solid rgba(106, 146, 193, 0.12);
    border-radius: 7px;
    background: rgba(14, 31, 52, 0.65);
}

.hero-phone-stat strong {
    color: #edf5ff;
    font-size: 0.67rem;
}

.hero-phone-nav {
    display: flex;
    justify-content: space-around;
    margin-top: 14px;
}

.hero-phone-nav i {
    width: 8px;
    height: 8px;
    border: 1px solid #52647a;
    border-radius: 2px;
}

.hero-phone-nav i.is-active {
    border-color: #168cff;
    background: #168cff;
}

/* =========================================================
   DIFERENCIAIS
========================================================= */

.hero-features {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 28px;
    border: 1px solid rgba(92, 145, 207, 0.2);
    border-radius: 17px;
    background:
        linear-gradient(115deg,
            rgba(8, 24, 43, 0.92),
            rgba(5, 17, 31, 0.76));
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(16px);
}

.hero-feature {
    position: relative;
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
    padding: 27px 25px;
}

.hero-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(108, 145, 188, 0.18);
}

.hero-feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1787ff;
}

.hero-feature-icon svg {
    width: 100%;
    height: 100%;
}

.hero-feature strong {
    display: block;
    color: #f3f7fd;
    font-size: 0.89rem;
    line-height: 1.35;
}

.hero-feature p {
    margin: 5px 0 0;
    color: #9ba9bc;
    font-size: 0.72rem;
    line-height: 1.6;
}

.hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: #75879f;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease;
}

.hero-scroll:hover {
    color: #3aa9ff;
}

.hero-scroll svg {
    width: 16px;
    height: 16px;
    animation: hero-scroll-arrow 1.7s ease-in-out infinite;
}

/* =========================================================
   ANIMAÇÕES
========================================================= */

@keyframes hero-product-float {

    0%,
    100% {
        transform: rotateX(1deg) rotateY(-4deg) translateY(0);
    }

    50% {
        transform: rotateX(1deg) rotateY(-4deg) translateY(-9px);
    }
}

@keyframes hero-phone-float {

    0%,
    100% {
        transform: rotateY(-6deg) rotateZ(1deg) translateY(0);
    }

    50% {
        transform: rotateY(-6deg) rotateZ(1deg) translateY(-12px);
    }
}

@keyframes hero-scroll-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1250px) {
    .hero-container {
        width: min(1180px, calc(100% - 48px));
    }

    .hero-main {
        grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    }

    .hero-title {
        font-size: clamp(2.8rem, 4.5vw, 4.35rem);
    }

    .hero-feature {
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 24px 17px;
    }

    .hero-feature-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 1050px) {
    .hero-container {
        width: min(850px, calc(100% - 40px));
        padding-top: 100px;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-content {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-eyebrow,
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-title {
        max-width: 760px;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-product {
        min-height: 540px;
    }

    .hero-laptop {
        width: min(700px, 90%);
    }

    .hero-phone {
        right: 3%;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-feature:not(:last-child)::after {
        display: none;
    }

    .hero-feature {
        border-bottom: 1px solid rgba(108, 145, 188, 0.14);
    }

    .hero-feature:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .hero-feature:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .hero {
        min-height: auto;
    }

    .hero-container {
        width: min(100% - 28px, 620px);
        padding-top: 96px;
    }

    .hero-title {
        font-size: clamp(2.7rem, 4vw, 4.3rem);
        line-height: 1.03;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-button {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        justify-content: flex-start;
        width: max-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-product {
        min-height: 390px;
        margin-top: 15px;
    }

    .hero-laptop {
        width: min(640px, 90%);
        transform: none;
        animation: none;
    }

    .hero-laptop-screen {
        border-radius: 13px 13px 7px 7px;
    }

    .hero-dashboard {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .hero-dashboard-sidebar {
        padding: 10px 6px;
    }

    .hero-dashboard-menu span {
        padding: 5px 3px;
        font-size: 0.35rem;
    }

    .hero-dashboard-content {
        padding: 10px;
    }

    .hero-dashboard-cards {
        gap: 5px;
    }

    .hero-dashboard-cards article {
        padding: 7px;
    }

    .hero-dashboard-cards strong {
        font-size: 0.54rem;
    }

    .hero-dashboard-charts {
        grid-template-columns: 1fr;
    }

    .hero-donut-panel {
        display: none;
    }

    .hero-line-chart {
        height: 92px;
    }

    .hero-phone {
        width: 125px;
        right: -1%;
        bottom: 7%;
        padding: 4px;
        border-radius: 18px;
        animation: none;
    }

    .hero-phone-screen {
        min-height: 203px;
        padding: 20px 8px 8px;
        border-radius: 13px;
    }

    .hero-phone-value {
        margin-top: 15px;
    }

    .hero-phone-value strong {
        font-size: 0.52rem;
    }

    .hero-phone-chart {
        height: 51px;
    }

    .hero-phone-stat {
        padding: 7px;
    }

    .hero-phone-nav {
        margin-top: 8px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        margin-top: 5px;
    }

    .hero-feature,
    .hero-feature:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(108, 145, 188, 0.14);
    }

    .hero-feature:last-child {
        grid-column: auto;
        border-bottom: 0;
    }

    .hero-scroll {
        margin-bottom: 20px;
    }
}

@media (max-width: 450px) {
    .hero-eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.11em;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .hero-product {
        min-height: 315px;
    }

    .hero-browser-bar {
        height: 23px;
    }

    .hero-browser-address {
        font-size: 0.35rem;
    }

    .hero-dashboard {
        height: calc(100% - 23px);
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .hero-dashboard-brand {
        margin-bottom: 10px;
    }

    .hero-dashboard-brand strong {
        display: none;
    }

    .hero-dashboard-menu span {
        gap: 4px;
        font-size: 0.3rem;
    }

    .hero-dashboard-top strong {
        font-size: 0.5rem;
    }

    .hero-dashboard-cards article:nth-child(3) {
        display: none;
    }

    .hero-dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-line-chart {
        height: 67px;
    }

    .hero-phone {
        width: 88px;
    }

    .hero-phone-screen {
        min-height: 171px;
    }

    .hero-phone-header small,
    .hero-phone-value span,
    .hero-phone-value small,
    .hero-phone-stat span {
        font-size: 0.29rem;
    }

    .hero-phone-chart {
        height: 38px;
    }

    .hero-feature {
        padding: 22px 18px;
    }
}

/* Respeita usuários que desativam animações */
@media (prefers-reduced-motion: reduce) {

    .hero-laptop,
    .hero-phone,
    .hero-scroll svg {
        animation: none;
    }
}



/* Animações */

@keyframes hero-rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes hero-float {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -7px;
    }
}

@keyframes hero-data-vertical {

    0%,
    100% {
        transform: translateY(-42px);
        opacity: 0;
    }

    30%,
    70% {
        opacity: 1;
    }

    50% {
        transform: translateY(45px);
    }
}

@keyframes hero-data-vertical-reverse {

    0%,
    100% {
        transform: translateY(42px);
        opacity: 0;
    }

    30%,
    70% {
        opacity: 1;
    }

    50% {
        transform: translateY(-45px);
    }
}

@keyframes hero-data-horizontal {

    0%,
    100% {
        transform: translateX(-42px);
        opacity: 0;
    }

    30%,
    70% {
        opacity: 1;
    }

    50% {
        transform: translateX(45px);
    }
}

@keyframes hero-data-horizontal-reverse {

    0%,
    100% {
        transform: translateX(42px);
        opacity: 0;
    }

    30%,
    70% {
        opacity: 1;
    }

    50% {
        transform: translateX(-45px);
    }
}

/* Responsividade */

@media (max-width: 1100px) {
    .site-hero__container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .site-hero__content {
        max-width: 820px;
    }

    .site-hero__visual {
        min-height: 520px;
    }

    .hero-ecosystem {
        width: min(88vw, 520px);
    }
}

@media (max-width: 700px) {
    .site-hero {
        min-height: auto;
        padding: 78px 0 38px;
    }

    .site-hero__title {
        font-size: clamp(42px, 13vw, 58px);
    }

    .site-hero__description {
        font-size: 16px;
    }

    .site-hero__actions,
    .site-hero__button {
        width: 100%;
    }

    .site-hero__visual {
        min-height: 440px;
    }

    .hero-ecosystem {
        width: min(94vw, 390px);
    }

    .hero-node {
        min-width: 138px;
        min-height: 61px;

        padding: 10px;
    }

    .hero-node--left {
        left: -15px;
    }

    .hero-node--right {
        right: -15px;
    }

    .hero-node__icon {
        width: 33px;
        height: 33px;
        flex-basis: 33px;
    }

    .hero-node small {
        display: none;
    }

    .hero-core {
        width: 170px;
        min-height: 105px;
    }

    .site-hero__trust {
        display: grid;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-ecosystem::after,
    .hero-node,
    .hero-data {
        animation: none;
    }
}




/* ==================================================
   PROBLEMA
================================================== */

.problem-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    border-top: 1px solid var(--hd-border);

    background:
        radial-gradient(circle at 12% 14%,
            rgba(37, 99, 235, 0.07),
            transparent 25rem),
        var(--hd-white);
}

.problem-section__heading {
    max-width: 850px;
    margin: 0 auto 76px;

    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 20px;

    color: var(--hd-blue);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";

    width: 26px;
    height: 2px;

    border-radius: var(--hd-radius-pill);

    background: var(--hd-gradient);
}

.problem-section__heading h2 {
    margin: 0;

    color: var(--hd-navy);

    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.problem-section__heading h2 span {
    display: block;
    color: #475569;
}

.problem-section__heading p {
    max-width: 720px;

    margin: 25px auto 0;

    color: var(--hd-muted);

    font-size: 18px;
    line-height: 1.75;
}

.problem-map {
    position: relative;

    max-width: 1080px;
    min-height: 600px;

    margin: 0 auto;

    display: grid;
    place-items: center;
}

.problem-map::before {
    content: "";

    position: absolute;
    inset: 50% auto auto 50%;

    width: 490px;
    height: 490px;

    border: 1px dashed rgba(100, 116, 139, 0.22);
    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.problem-map::after {
    content: "";

    position: absolute;
    inset: 50% auto auto 50%;

    width: 330px;
    height: 330px;

    border: 1px solid rgba(100, 116, 139, 0.13);
    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.problem-map__grid {
    position: absolute;
    inset: 0;
}

.problem-card {
    position: absolute;
    z-index: 3;

    width: 190px;
    min-height: 78px;

    padding: 14px 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-md);

    background: rgba(255, 255, 255, 0.92);

    box-shadow: var(--hd-shadow-sm);

    transition:
        transform var(--hd-transition),
        border-color var(--hd-transition),
        box-shadow var(--hd-transition);
}

.problem-card:hover {
    z-index: 5;

    transform: translateY(-4px);

    border-color: #cbd5e1;

    box-shadow: var(--hd-shadow-md);
}

.problem-card__icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: #f1f5f9;
    color: var(--hd-muted);

    font-size: 12px;
    font-weight: 800;
}

.problem-card div {
    display: flex;
    flex-direction: column;

    line-height: 1.3;
}

.problem-card strong {
    color: var(--hd-navy);
    font-size: 13px;
}

.problem-card small {
    margin-top: 4px;

    color: var(--hd-muted);
    font-size: 10px;
}

.problem-card--sheet {
    top: 2%;
    left: 17%;
}

.problem-card--message {
    top: 2%;
    right: 17%;
}

.problem-card--sales {
    top: 31%;
    left: 0;
}

.problem-card--orders {
    top: 31%;
    right: 0;
}

.problem-card--production {
    bottom: 17%;
    left: 6%;
}

.problem-card--finance {
    bottom: 17%;
    right: 6%;
}

.problem-card--inventory {
    bottom: 0;
    left: 26%;
}

.problem-card--email {
    right: 26%;
    bottom: 0;
}

.problem-map__center {
    position: relative;
    z-index: 4;

    width: min(100% - 40px, 460px);

    padding: 44px;

    border: 1px solid rgba(239, 68, 68, 0.13);
    border-radius: var(--hd-radius-lg);

    background:
        radial-gradient(circle at top,
            rgba(239, 68, 68, 0.06),
            transparent 15rem),
        rgba(255, 255, 255, 0.96);

    text-align: center;

    box-shadow:
        0 24px 70px rgba(15, 23, 42, 0.11);

    backdrop-filter: blur(16px);
}

.problem-map__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 20px;
    padding: 7px 12px;

    border-radius: var(--hd-radius-pill);

    background: var(--hd-danger-light);
    color: #b91c1c;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.problem-map__status::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--hd-danger);

    box-shadow:
        0 0 0 5px rgba(239, 68, 68, 0.1);
}

.problem-map__center strong {
    display: block;

    color: var(--hd-navy);

    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.problem-map__center p {
    margin: 17px 0 0;

    color: var(--hd-muted);

    font-size: 14px;
    line-height: 1.7;
}

.problem-section__conclusion {
    max-width: 850px;

    margin: 75px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.problem-section__line {
    width: 80px;
    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            var(--hd-blue));
}

.problem-section__conclusion::after {
    content: "";

    width: 80px;
    height: 1px;

    background:
        linear-gradient(90deg,
            var(--hd-blue),
            transparent);
}

.problem-section__conclusion p {
    margin: 0;

    color: var(--hd-muted);

    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.45;
    text-align: center;
}

.problem-section__conclusion strong {
    display: block;
    color: var(--hd-navy);
}

@media (max-width: 1000px) {
    .problem-map {
        min-height: auto;
    }

    .problem-map::before,
    .problem-map::after {
        display: none;
    }

    .problem-map__grid {
        position: relative;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .problem-card {
        position: relative;
        inset: auto;

        width: auto;
        min-height: 82px;
    }

    .problem-map__center {
        width: 100%;
        max-width: 620px;

        margin-top: 25px;
    }
}

@media (max-width: 640px) {
    .problem-section {
        padding: 90px 0;
    }

    .problem-section__heading {
        margin-bottom: 50px;
        text-align: left;
    }

    .problem-section__heading p {
        margin-left: 0;
    }

    .problem-map {
        display: block;
    }

    .problem-map__grid {
        grid-template-columns: 1fr;
    }

    .problem-map__center {
        padding: 28px 22px;
    }

    .problem-map__center strong {
        font-size: 22px;
    }

    .problem-section__conclusion {
        margin-top: 55px;
        gap: 12px;
    }

    .problem-section__line,
    .problem-section__conclusion::after {
        width: 28px;
    }
}


/* ==================================================
   SOLUÇÃO
================================================== */

.solution-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background:
        radial-gradient(circle at 82% 18%,
            rgba(6, 182, 212, 0.12),
            transparent 30rem),
        radial-gradient(circle at 10% 80%,
            rgba(37, 99, 235, 0.13),
            transparent 32rem),
        var(--hd-navy);

    color: var(--hd-white);
}

.solution-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(148, 163, 184, 0.06) 1px,
            transparent 1px);

    background-size: 64px 64px;

    mask-image:
        linear-gradient(to bottom,
            transparent,
            rgba(0, 0, 0, 0.75) 18%,
            rgba(0, 0, 0, 0.75) 82%,
            transparent);

    pointer-events: none;
}

.solution-section .site-container {
    position: relative;
    z-index: 2;
}

.section-eyebrow--light {
    color: #67e8f9;
}

.solution-section__heading {
    max-width: 850px;
    margin-bottom: 76px;
}

.solution-section__heading h2 {
    margin: 0;

    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.07;
    letter-spacing: -0.055em;
}

.solution-section__heading h2 span {
    display: block;

    background: var(--hd-gradient);
    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
}

.solution-section__heading p {
    max-width: 720px;

    margin: 25px 0 0;

    color: #94a3b8;

    font-size: 18px;
    line-height: 1.75;
}

.solution-comparison {
    display: grid;
    gap: 28px;
}

.solution-flow {
    padding: 34px;

    border-radius: var(--hd-radius-lg);

    backdrop-filter: blur(18px);
}

.solution-flow--before {
    border: 1px solid rgba(148, 163, 184, 0.16);

    background: rgba(255, 255, 255, 0.035);
}

.solution-flow--after {
    border: 1px solid rgba(96, 165, 250, 0.28);

    background:
        radial-gradient(circle at 50% 0,
            rgba(37, 99, 235, 0.18),
            transparent 24rem),
        rgba(255, 255, 255, 0.06);

    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.22);
}

.solution-flow__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 30px;
}

.solution-flow__label {
    display: inline-flex;

    padding: 7px 11px;

    border-radius: var(--hd-radius-pill);

    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.solution-flow--after .solution-flow__label {
    background: rgba(37, 99, 235, 0.2);
    color: #bfdbfe;
}

.solution-flow__header>strong {
    color: #e2e8f0;

    font-size: 15px;
}

.solution-flow__steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.solution-step {
    min-width: 125px;
    min-height: 96px;

    padding: 17px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: var(--hd-radius-md);
}

.solution-step span {
    font-size: 10px;
    font-weight: 800;
}

.solution-step strong {
    font-size: 14px;
}

.solution-step--muted {
    border: 1px solid rgba(148, 163, 184, 0.13);

    background: rgba(255, 255, 255, 0.035);
    color: #94a3b8;
}

.solution-step--muted strong {
    color: #94a3b8;
}

.solution-step--active {
    border: 1px solid rgba(96, 165, 250, 0.23);

    background: rgba(37, 99, 235, 0.18);
    color: var(--hd-white);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.solution-step--active span {
    color: #67e8f9;
}

.solution-flow__broken {
    color: #475569;

    font-size: 22px;
    letter-spacing: 0.12em;
}

.solution-flow__arrow {
    color: #67e8f9;

    font-size: 22px;
}

.solution-flow__result {
    max-width: 680px;

    margin: 28px 0 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}

.solution-flow--after .solution-flow__result {
    color: #94a3b8;
}

.solution-transition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.solution-transition span {
    width: 80px;
    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(56, 189, 248, 0.65));
}

.solution-transition span:last-child {
    background:
        linear-gradient(90deg,
            rgba(56, 189, 248, 0.65),
            transparent);
}

.solution-transition strong {
    color: #67e8f9;

    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.solution-section__summary {
    margin-top: 70px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.solution-summary__item {
    padding: 28px;

    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 15px;

    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.solution-summary__item>span {
    color: #38bdf8;

    font-size: 11px;
    font-weight: 800;
}

.solution-summary__item strong {
    display: block;

    color: var(--hd-white);

    font-size: 16px;
}

.solution-summary__item p {
    margin: 10px 0 0;

    color: #94a3b8;

    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 960px) {
    .solution-flow__steps {
        display: grid;
        grid-template-columns: repeat(5, minmax(120px, 1fr));

        overflow-x: auto;

        padding-bottom: 10px;
    }

    .solution-flow__broken,
    .solution-flow__arrow {
        display: none;
    }

    .solution-section__summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .solution-section {
        padding: 90px 0;
    }

    .solution-section__heading {
        margin-bottom: 50px;
    }

    .solution-section__heading p {
        font-size: 16px;
    }

    .solution-flow {
        padding: 23px;
    }

    .solution-flow__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .solution-flow__steps {
        grid-template-columns: 1fr;

        overflow: visible;
    }

    .solution-step {
        min-height: 82px;
    }

    .solution-transition span {
        width: 38px;
    }

    .solution-summary__item {
        padding: 24px 0;
    }
}



/* ==================================================
   JORNADA
================================================== */

.journey-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background:
        radial-gradient(circle at 100% 5%,
            rgba(37, 99, 235, 0.08),
            transparent 27rem),
        var(--hd-surface);
}

.journey-section__heading {
    max-width: 850px;
    margin-bottom: 78px;
}

.journey-section__heading h2 {
    margin: 0;

    color: var(--hd-navy);

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.journey-section__heading h2 span {
    display: block;
    color: var(--hd-blue);
}

.journey-section__heading p {
    max-width: 720px;

    margin: 25px 0 0;

    color: var(--hd-muted);

    font-size: 18px;
    line-height: 1.75;
}

.journey-track {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.journey-track__line {
    position: absolute;
    top: 51px;
    left: 7%;
    right: 7%;

    height: 2px;

    background:
        linear-gradient(90deg,
            rgba(37, 99, 235, 0.14),
            var(--hd-blue),
            var(--hd-cyan),
            rgba(37, 99, 235, 0.14));
}

.journey-card {
    position: relative;
    z-index: 2;

    min-height: 430px;

    padding: 28px 24px;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-md);

    background: rgba(255, 255, 255, 0.92);

    box-shadow: var(--hd-shadow-sm);

    transition:
        transform var(--hd-transition),
        border-color var(--hd-transition),
        box-shadow var(--hd-transition);
}

.journey-card:hover {
    transform: translateY(-7px);

    border-color: #bfdbfe;

    box-shadow: var(--hd-shadow-md);
}

.journey-card__number {
    position: absolute;
    top: 22px;
    right: 22px;

    color: #94a3b8;

    font-size: 11px;
    font-weight: 800;
}

.journey-card__icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 7px solid var(--hd-surface);
    border-radius: 50%;

    background: var(--hd-gradient);
    color: var(--hd-white);

    box-shadow:
        0 0 0 1px rgba(37, 99, 235, 0.14),
        0 8px 20px rgba(37, 99, 235, 0.18);

    font-size: 12px;
    font-weight: 800;
}

.journey-card h3 {
    margin: 33px 0 13px;

    color: var(--hd-navy);

    font-size: 25px;
    letter-spacing: -0.04em;
}

.journey-card p {
    margin: 0;

    color: var(--hd-muted);

    font-size: 14px;
    line-height: 1.7;
}

.journey-card ul {
    margin: 26px 0 0;
    padding: 22px 0 0;

    display: grid;
    gap: 11px;

    border-top: 1px solid var(--hd-border);

    list-style: none;
}

.journey-card li {
    position: relative;

    padding-left: 17px;

    color: #475569;

    font-size: 12px;
    font-weight: 700;
}

.journey-card li::before {
    content: "";

    position: absolute;
    top: 7px;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--hd-cyan);
}

.journey-section__conclusion {
    margin-top: 70px;

    padding: 32px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    border-top: 1px solid var(--hd-border);
    border-bottom: 1px solid var(--hd-border);
}

.journey-section__conclusion span {
    color: var(--hd-blue);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.journey-section__conclusion strong {
    max-width: 700px;

    color: var(--hd-navy);

    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.3;
    letter-spacing: -0.035em;
}

@media (max-width: 1050px) {
    .journey-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-track__line {
        display: none;
    }

    .journey-card {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .journey-section {
        padding: 90px 0;
    }

    .journey-section__heading {
        margin-bottom: 50px;
    }

    .journey-section__heading p {
        font-size: 16px;
    }

    .journey-track {
        grid-template-columns: 1fr;
    }

    .journey-card {
        min-height: auto;
    }

    .journey-section__conclusion {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}


/* ==================================================
   PRODUTO
================================================== */

.product-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    border-top: 1px solid var(--hd-border);

    background:
        radial-gradient(circle at 85% 10%,
            rgba(37, 99, 235, 0.1),
            transparent 30rem),
        var(--hd-white);
}

.product-section__heading {
    max-width: 850px;
    margin-bottom: 65px;
}

.product-section__heading h2 {
    margin: 0;

    color: var(--hd-navy);

    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.product-section__heading h2 span {
    color: var(--hd-blue);
}

.product-section__heading p {
    max-width: 720px;

    margin: 24px 0 0;

    color: var(--hd-muted);

    font-size: 18px;
    line-height: 1.75;
}

.product-experience {
    padding: 22px;

    border: 1px solid var(--hd-border);
    border-radius: 28px;

    background: var(--hd-surface);

    box-shadow:
        0 24px 80px rgba(15, 23, 42, 0.08);
}

.product-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;

    margin-bottom: 22px;
}

.product-tab {
    min-height: 66px;

    padding: 12px 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 1px solid transparent;
    border-radius: 14px;

    background: transparent;
    color: var(--hd-muted);

    cursor: pointer;

    font-size: 13px;
    font-weight: 800;

    transition:
        color var(--hd-transition),
        border-color var(--hd-transition),
        background-color var(--hd-transition),
        transform var(--hd-transition);
}

.product-tab:hover {
    color: var(--hd-navy);

    background: var(--hd-white);
}

.product-tab.is-active {
    border-color: #bfdbfe;

    background: var(--hd-white);
    color: var(--hd-blue);

    box-shadow: var(--hd-shadow-sm);

    transform: translateY(-2px);
}

.product-tab span {
    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #e2e8f0;
    color: var(--hd-muted);

    font-size: 9px;
}

.product-tab.is-active span {
    background: var(--hd-blue-light);
    color: var(--hd-blue);
}

.product-stage {
    min-height: 650px;

    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
    gap: 48px;
    align-items: center;

    padding: 42px;

    border: 1px solid var(--hd-border);
    border-radius: 22px;

    background: var(--hd-white);
}

.product-stage__visual {
    position: relative;
}

.product-window {
    overflow: hidden;

    border: 1px solid #cbd5e1;
    border-radius: 18px;
    border-color: #94a3b8;

    background: var(--hd-white);

    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.15);
}

.product-window__bar {
    min-height: 48px;

    padding: 0 16px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;

    border-bottom: 1px solid var(--hd-border);

    background: #f8fafc;
}

.product-window__dots {
    display: flex;
    gap: 6px;
}

.product-window__dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #cbd5e1;
}

.product-window__address {
    max-width: 260px;

    margin: 0 auto;
    padding: 5px 14px;

    overflow: hidden;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-pill);

    background: var(--hd-white);
    color: var(--hd-muted);

    font-size: 10px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-window__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #047857;

    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-window__status::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--hd-success);
}

.product-window__screen {
    position: relative;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f8fafc,
            #eaf1f8);
}

.product-window__screen img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: top center;

    transition:
        opacity 180ms ease,
        transform 500ms ease;
}

.product-window__screen img.is-changing {
    opacity: 0;
}

.product-stage__connection {
    position: absolute;
    right: -42px;
    top: 50%;

    width: 84px;
    height: 1px;

    overflow: hidden;

    background: #bfdbfe;
}

.product-stage__connection span {
    position: absolute;
    top: 50%;
    left: -8px;

    width: 8px;
    height: 8px;

    border: 2px solid var(--hd-white);
    border-radius: 50%;

    background: var(--hd-cyan);

    transform: translateY(-50%);

    box-shadow:
        0 0 0 5px rgba(6, 182, 212, 0.1);

    animation: product-connection 3s ease-in-out infinite;
}

.product-stage__content {
    position: relative;
    z-index: 2;
}

.product-stage__eyebrow {
    display: block;

    margin-bottom: 16px;

    color: var(--hd-blue);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-stage__content h3 {
    margin: 0;

    color: var(--hd-navy);

    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.product-stage__content>p {
    margin: 22px 0 0;

    color: var(--hd-muted);

    font-size: 15px;
    line-height: 1.75;
}

.product-stage__list {
    margin: 25px 0 0;
    padding: 25px 0 0;

    display: grid;
    gap: 12px;

    border-top: 1px solid var(--hd-border);

    list-style: none;
}

.product-stage__list li {
    position: relative;

    padding-left: 21px;

    color: #475569;

    font-size: 13px;
    font-weight: 700;
}

.product-stage__list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--hd-success);

    font-weight: 800;
}

.product-stage__flow {
    margin-top: 32px;
    padding-top: 24px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;

    border-top: 1px solid var(--hd-border);
}

.product-stage__flow span {
    padding: 6px 9px;

    border-radius: var(--hd-radius-pill);

    background: var(--hd-blue-light);
    color: var(--hd-blue-dark);

    font-size: 9px;
    font-weight: 800;
}

.product-stage__flow strong {
    color: #94a3b8;
    font-size: 12px;
}

.product-section__proof {
    margin-top: 60px;
    padding: 34px 0;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;

    border-top: 1px solid var(--hd-border);
    border-bottom: 1px solid var(--hd-border);
}

.product-section__proof>div {
    display: grid;
    gap: 8px;
}

.product-section__proof span {
    color: var(--hd-blue);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-section__proof strong {
    color: var(--hd-navy);

    font-size: clamp(22px, 2.5vw, 34px);
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.product-section__proof p {
    margin: 0;

    color: var(--hd-muted);

    font-size: 15px;
    line-height: 1.75;
}

.product-window__fallback {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    color: var(--hd-muted);
}

.product-window__fallback>span {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: var(--hd-gradient);
    color: var(--hd-white);

    font-weight: 800;
}

.product-window__fallback div {
    display: flex;
    flex-direction: column;
}

.product-window__fallback strong {
    color: var(--hd-navy);
}

.product-window__fallback small {
    margin-top: 4px;
}


@keyframes product-connection {
    0% {
        left: -8px;
        opacity: 0;
    }

    20%,
    80% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 4px);
        opacity: 0;
    }
}

@media (max-width: 1000px) {
    .product-tabs {
        grid-template-columns: repeat(5, 150px);

        overflow-x: auto;

        padding-bottom: 8px;
    }

    .product-stage {
        grid-template-columns: 1fr;
    }

    .product-stage__connection {
        display: none;
    }
}

@media (max-width: 700px) {
    .product-section {
        padding: 90px 0;
    }

    .product-section__heading {
        margin-bottom: 48px;
    }

    .product-section__heading p {
        font-size: 16px;
    }

    .product-experience {
        padding: 12px;
        border-radius: 20px;
    }

    .product-stage {
        min-height: auto;

        gap: 34px;
        padding: 18px;

        border-radius: 16px;
    }

    .product-window__status {
        display: none;
    }

    .product-window__bar {
        grid-template-columns: auto 1fr;
    }

    .product-section__proof {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}



/* ==================================================
   SEGMENTOS
================================================== */

.segments-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background:
        radial-gradient(circle at 8% 8%,
            rgba(37, 99, 235, 0.08),
            transparent 28rem),
        radial-gradient(circle at 95% 90%,
            rgba(6, 182, 212, 0.08),
            transparent 30rem),
        var(--hd-surface);
}

.segments-section__heading {
    margin-bottom: 72px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
}

.segments-section__heading h2 {
    margin: 0;

    color: var(--hd-navy);

    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.07;
    letter-spacing: -0.055em;
}

.segments-section__heading h2 span {
    display: block;
    color: var(--hd-blue);
}

.segments-section__heading>p {
    margin: 0 0 8px;

    color: var(--hd-muted);

    font-size: 17px;
    line-height: 1.75;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.segment-card {
    position: relative;
    overflow: hidden;

    min-height: 480px;

    padding: 31px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-lg);

    background: rgba(255, 255, 255, 0.92);

    box-shadow: var(--hd-shadow-sm);

    transition:
        transform var(--hd-transition),
        border-color var(--hd-transition),
        box-shadow var(--hd-transition);
}

.segment-card:hover {
    transform: translateY(-6px);

    border-color: #bfdbfe;

    box-shadow: var(--hd-shadow-md);
}

.segment-card--featured {
    border-color: rgba(37, 99, 235, 0.3);

    background:
        radial-gradient(circle at 100% 0,
            rgba(37, 99, 235, 0.13),
            transparent 23rem),
        var(--hd-white);

    box-shadow:
        0 22px 60px rgba(37, 99, 235, 0.1);
}

.segment-card--future {
    background:
        linear-gradient(145deg,
            rgba(15, 23, 42, 0.99),
            rgba(23, 32, 51, 0.98));

    color: var(--hd-white);
}

.segment-card__top {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.segment-card__icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: var(--hd-blue-light);
    color: var(--hd-blue);

    font-size: 14px;
    font-weight: 800;
}

.segment-card--future .segment-card__icon {
    background: rgba(37, 99, 235, 0.2);
    color: #67e8f9;
}

.segment-card__status,
.segment-card__label {
    display: inline-flex;

    padding: 7px 11px;

    border-radius: var(--hd-radius-pill);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.segment-card__status {
    background: var(--hd-success-light);
    color: #047857;
}

.segment-card__label {
    background: #f1f5f9;
    color: var(--hd-muted);
}

.segment-card--future .segment-card__label {
    background: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

.segment-card__content {
    flex: 1;
}

.segment-card__number {
    display: block;

    margin-top: 38px;

    color: var(--hd-blue);

    font-size: 11px;
    font-weight: 800;
}

.segment-card h3 {
    max-width: 520px;

    margin: 15px 0 14px;

    color: var(--hd-navy);

    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.13;
    letter-spacing: -0.045em;
}

.segment-card--future h3 {
    color: var(--hd-white);
}

.segment-card__content>p {
    max-width: 570px;

    margin: 0;

    color: var(--hd-muted);

    font-size: 15px;
    line-height: 1.7;
}

.segment-card--future .segment-card__content>p {
    color: #94a3b8;
}

.segment-card ul {
    margin: 27px 0 0;
    padding: 25px 0 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;

    border-top: 1px solid var(--hd-border);

    list-style: none;
}

.segment-card--future ul {
    border-color: rgba(255, 255, 255, 0.1);
}

.segment-card li {
    position: relative;

    padding-left: 17px;

    color: #475569;

    font-size: 12px;
    font-weight: 700;
}

.segment-card--future li {
    color: #cbd5e1;
}

.segment-card li::before {
    content: "";

    position: absolute;
    top: 7px;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--hd-cyan);
}

.segment-card__footer {
    margin-top: 30px;
    padding-top: 21px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    border-top: 1px solid var(--hd-border);
}

.segment-card--future .segment-card__footer {
    border-color: rgba(255, 255, 255, 0.1);
}

.segment-card__footer span {
    padding: 6px 9px;

    border-radius: var(--hd-radius-pill);

    background: var(--hd-blue-light);
    color: var(--hd-blue-dark);

    font-size: 9px;
    font-weight: 800;
}

.segment-card--future .segment-card__footer span {
    background: rgba(37, 99, 235, 0.18);
    color: #bfdbfe;
}

/* Núcleo compartilhado */

.segments-architecture {
    margin-top: 72px;
    padding: 42px;

    display: grid;
    grid-template-columns: auto 120px 1fr;
    gap: 28px;
    align-items: center;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-lg);

    background: var(--hd-white);

    box-shadow: var(--hd-shadow-sm);
}

.segments-architecture__core {
    display: flex;
    align-items: center;
    gap: 16px;
}

.segments-architecture__symbol {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    background: var(--hd-gradient);
    color: var(--hd-white);

    font-weight: 800;
}

.segments-architecture__core div {
    display: flex;
    flex-direction: column;
}

.segments-architecture__core strong {
    color: var(--hd-navy);
    font-size: 17px;
}

.segments-architecture__core small {
    margin-top: 4px;

    color: var(--hd-muted);
    font-size: 11px;
}

.segments-architecture__line {
    position: relative;

    height: 1px;

    overflow: hidden;

    background: var(--hd-border);
}

.segments-architecture__line span {
    position: absolute;
    top: 50%;
    left: -8px;

    width: 8px;
    height: 8px;

    border: 2px solid var(--hd-white);
    border-radius: 50%;

    background: var(--hd-cyan);

    transform: translateY(-50%);

    animation: segments-data-flow 3s ease-in-out infinite;
}

.segments-architecture__capabilities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
}

.segments-architecture__capabilities div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.segments-architecture__capabilities span {
    color: var(--hd-blue);

    font-size: 9px;
    font-weight: 800;
}

.segments-architecture__capabilities strong {
    color: #475569;

    font-size: 12px;
}

/* Conclusão */

.segments-section__conclusion {
    margin-top: 68px;
    padding: 34px 0;

    display: grid;
    grid-template-columns: 0.35fr 1.65fr;
    gap: 50px;

    border-top: 1px solid var(--hd-border);
    border-bottom: 1px solid var(--hd-border);
}

.segments-section__conclusion span {
    color: var(--hd-blue);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.segments-section__conclusion strong {
    max-width: 850px;

    color: var(--hd-navy);

    font-size: clamp(23px, 2.8vw, 36px);
    line-height: 1.3;
    letter-spacing: -0.035em;
}


/* ==================================================
   INTELIGÊNCIA
================================================== */

.intelligence-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background:
        radial-gradient(circle at 85% 10%,
            rgba(6, 182, 212, 0.12),
            transparent 30rem),
        radial-gradient(circle at 8% 90%,
            rgba(37, 99, 235, 0.14),
            transparent 32rem),
        var(--hd-navy);

    color: var(--hd-white);
}

.intelligence-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(148, 163, 184, 0.05) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(148, 163, 184, 0.05) 1px,
            transparent 1px);

    background-size: 64px 64px;

    pointer-events: none;
}

.intelligence-section .site-container {
    position: relative;
    z-index: 2;
}

.intelligence-section__heading {
    margin-bottom: 72px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
}

.intelligence-section__heading h2 {
    margin: 0;

    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.07;
    letter-spacing: -0.055em;
}

.intelligence-section__heading h2 span {
    display: block;

    background: var(--hd-gradient);
    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
}

.intelligence-section__heading>p {
    margin: 0 0 8px;

    color: #94a3b8;

    font-size: 17px;
    line-height: 1.75;
}

.intelligence-main {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 22px;
}

.intelligence-card {
    min-height: 590px;

    padding: 34px;

    display: flex;
    flex-direction: column;

    border-radius: var(--hd-radius-lg);

    backdrop-filter: blur(18px);
}

.intelligence-card--primary {
    border: 1px solid rgba(96, 165, 250, 0.27);

    background:
        radial-gradient(circle at 100% 0,
            rgba(37, 99, 235, 0.19),
            transparent 25rem),
        rgba(255, 255, 255, 0.06);
}

.intelligence-card--future {
    border: 1px solid rgba(148, 163, 184, 0.16);

    background: rgba(255, 255, 255, 0.035);
}

.intelligence-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.intelligence-card__label {
    padding: 7px 11px;

    border-radius: var(--hd-radius-pill);

    background: rgba(37, 99, 235, 0.2);
    color: #bfdbfe;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.intelligence-card--future .intelligence-card__label {
    background: rgba(255, 255, 255, 0.07);
    color: #94a3b8;
}

.intelligence-card__icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: rgba(37, 99, 235, 0.18);
    color: #67e8f9;

    font-size: 15px;
    font-weight: 800;
}

.intelligence-card h3 {
    max-width: 650px;

    margin: 42px 0 16px;

    color: var(--hd-white);

    font-size: clamp(29px, 3.3vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.intelligence-card>p {
    max-width: 650px;

    margin: 0;

    color: #94a3b8;

    font-size: 15px;
    line-height: 1.75;
}

.intelligence-capabilities {
    margin-top: 36px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.intelligence-capabilities>div {
    padding: 22px;

    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--hd-radius-md);

    background: rgba(255, 255, 255, 0.035);
}

.intelligence-capabilities span {
    color: #67e8f9;

    font-size: 10px;
    font-weight: 800;
}

.intelligence-capabilities strong {
    display: block;

    margin-top: 15px;

    color: var(--hd-white);

    font-size: 14px;
}

.intelligence-capabilities p {
    margin: 9px 0 0;

    color: #94a3b8;

    font-size: 12px;
    line-height: 1.65;
}

.intelligence-future-flow {
    margin-top: 36px;

    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.intelligence-future-flow>div {
    min-height: 102px;

    padding: 16px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: var(--hd-radius-md);

    background: rgba(255, 255, 255, 0.035);
}

.intelligence-future-flow span {
    color: #64748b;

    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.intelligence-future-flow strong {
    color: #cbd5e1;

    font-size: 12px;
    line-height: 1.4;
}

.intelligence-future-flow>span {
    color: #38bdf8;
    font-size: 14px;
}

.intelligence-card--future ul {
    margin: 30px 0 0;
    padding: 25px 0 0;

    display: grid;
    gap: 13px;

    border-top: 1px solid rgba(148, 163, 184, 0.14);

    list-style: none;
}

.intelligence-card--future li {
    position: relative;

    padding-left: 20px;

    color: #cbd5e1;

    font-size: 13px;
}

.intelligence-card--future li::before {
    content: "";

    position: absolute;
    top: 7px;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--hd-cyan);
}

.intelligence-principle {
    margin-top: 70px;
    padding: 35px 0;

    display: grid;
    grid-template-columns: 0.35fr 1.65fr;
    gap: 50px;

    border-top: 1px solid rgba(148, 163, 184, 0.17);
    border-bottom: 1px solid rgba(148, 163, 184, 0.17);
}

.intelligence-principle span {
    color: #67e8f9;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.intelligence-principle strong {
    max-width: 900px;

    color: var(--hd-white);

    font-size: clamp(22px, 2.7vw, 35px);
    line-height: 1.32;
    letter-spacing: -0.035em;
}



/* ==================================================
   INTEGRAÇÕES E SEGURANÇA
================================================== */

.connections-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background:
        radial-gradient(circle at 8% 8%,
            rgba(37, 99, 235, 0.08),
            transparent 28rem),
        var(--hd-white);
}

.connections-section__heading {
    margin-bottom: 72px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
}

.connections-section__heading h2 {
    margin: 0;

    color: var(--hd-navy);

    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.07;
    letter-spacing: -0.055em;
}

.connections-section__heading h2 span {
    display: block;
    color: var(--hd-blue);
}

.connections-section__heading>p {
    margin: 0 0 8px;

    color: var(--hd-muted);

    font-size: 17px;
    line-height: 1.75;
}

.connections-main {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.88fr);
    gap: 22px;
    align-items: stretch;
}

/* Painel de integrações */

.connections-panel,
.security-panel {
    padding: 34px;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-lg);

    background: var(--hd-surface);

    box-shadow: var(--hd-shadow-sm);
}

.connections-panel__header,
.security-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.connections-panel__eyebrow,
.security-panel__eyebrow {
    display: block;

    margin-bottom: 14px;

    color: var(--hd-blue);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.connections-panel h3,
.security-panel h3 {
    max-width: 580px;

    margin: 0;

    color: var(--hd-navy);

    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.045em;
}

.connections-panel__icon,
.security-panel__shield {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: var(--hd-blue-light);
    color: var(--hd-blue);

    font-size: 15px;
    font-weight: 800;
}

.connections-panel__description,
.security-panel__description {
    max-width: 650px;

    margin: 22px 0 0;

    color: var(--hd-muted);

    font-size: 14px;
    line-height: 1.75;
}

.connections-grid {
    margin-top: 32px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.connection-card {
    min-height: 250px;

    padding: 22px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-md);

    background: var(--hd-white);

    transition:
        transform var(--hd-transition),
        border-color var(--hd-transition),
        box-shadow var(--hd-transition);
}

.connection-card:hover {
    transform: translateY(-4px);

    border-color: #bfdbfe;

    box-shadow: var(--hd-shadow-md);
}

.connection-card--roadmap {
    background:
        linear-gradient(145deg,
            rgba(248, 250, 252, 1),
            rgba(241, 245, 249, 0.95));
}

.connection-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.connection-card__symbol {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--hd-blue-light);
    color: var(--hd-blue);

    font-size: 11px;
    font-weight: 800;
}

.connection-card__status {
    padding: 6px 9px;

    border-radius: var(--hd-radius-pill);

    background: var(--hd-success-light);
    color: #047857;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.connection-card--roadmap .connection-card__status {
    background: #e2e8f0;
    color: var(--hd-muted);
}

.connection-card h4 {
    margin: 25px 0 10px;

    color: var(--hd-navy);

    font-size: 18px;
    letter-spacing: -0.03em;
}

.connection-card p {
    margin: 0;

    color: var(--hd-muted);

    font-size: 12px;
    line-height: 1.65;
}

.connection-card__category {
    margin-top: auto;
    padding-top: 22px;

    color: var(--hd-blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.connections-flow {
    margin-top: 30px;
    padding: 22px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-md);

    background: var(--hd-white);
}

.connections-flow span {
    color: #475569;

    font-size: 10px;
    font-weight: 800;
}

.connections-flow i {
    position: relative;

    width: 32px;
    height: 1px;

    overflow: hidden;

    background: #bfdbfe;
}

.connections-flow i::after {
    content: "";

    position: absolute;
    top: 50%;
    left: -5px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--hd-cyan);

    transform: translateY(-50%);

    animation: connection-flow 2.8s ease-in-out infinite;
}


/* Segurança */

.security-panel {
    display: flex;
    flex-direction: column;

    background:
        radial-gradient(circle at 100% 0,
            rgba(37, 99, 235, 0.1),
            transparent 22rem),
        var(--hd-white);
}

.security-panel__shield {
    background: var(--hd-success-light);
    color: #047857;
}

.security-list {
    margin-top: 31px;

    display: grid;
    gap: 0;

    border-top: 1px solid var(--hd-border);
}

.security-item {
    padding: 20px 0;

    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;

    border-bottom: 1px solid var(--hd-border);
}

.security-item__number {
    color: var(--hd-blue);

    font-size: 9px;
    font-weight: 800;
}

.security-item strong {
    display: block;

    color: var(--hd-navy);

    font-size: 13px;
}

.security-item p {
    margin: 6px 0 0;

    color: var(--hd-muted);

    font-size: 11px;
    line-height: 1.6;
}

.security-panel__status {
    margin-top: auto;
    padding: 20px;

    display: flex;
    align-items: center;
    gap: 13px;

    border-radius: var(--hd-radius-md);

    background: var(--hd-success-light);
}

.security-panel__status-dot {
    width: 10px;
    height: 10px;

    flex: 0 0 10px;

    border-radius: 50%;

    background: var(--hd-success);

    box-shadow:
        0 0 0 6px rgba(16, 185, 129, 0.12);
}

.security-panel__status div {
    display: flex;
    flex-direction: column;
}

.security-panel__status strong {
    color: #047857;

    font-size: 12px;
}

.security-panel__status small {
    margin-top: 3px;

    color: #059669;

    font-size: 10px;
}

/* Conclusão */

.connections-section__conclusion {
    margin-top: 70px;
    padding: 34px 0;

    display: grid;
    grid-template-columns: 0.35fr 1.65fr;
    gap: 50px;

    border-top: 1px solid var(--hd-border);
    border-bottom: 1px solid var(--hd-border);
}

.connections-section__conclusion span {
    color: var(--hd-blue);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.connections-section__conclusion strong {
    color: var(--hd-navy);

    font-size: clamp(23px, 2.8vw, 36px);
    line-height: 1.3;
    letter-spacing: -0.035em;
}



/* ==================================================
   EMPRESA
================================================== */

.company-section {
    position: relative;
    overflow: hidden;

    padding: 130px 0;

    background:
        radial-gradient(circle at 90% 12%,
            rgba(37, 99, 235, 0.08),
            transparent 28rem),
        var(--hd-surface);
}

.company-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.82fr);
    gap: 85px;
    align-items: center;
}

.company-section__content h2 {
    max-width: 750px;

    margin: 0;

    color: var(--hd-navy);

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.07;
    letter-spacing: -0.055em;
}

.company-section__content h2 span {
    display: block;
    color: var(--hd-blue);
}

.company-section__lead {
    max-width: 670px;

    margin: 28px 0 0;

    color: var(--hd-navy);

    font-size: 20px;
    font-weight: 600;
    line-height: 1.65;
}

.company-section__content>p:not(.company-section__lead) {
    max-width: 670px;

    margin: 18px 0 0;

    color: var(--hd-muted);

    font-size: 16px;
    line-height: 1.75;
}

.company-section__principles {
    margin-top: 42px;

    display: grid;
    gap: 0;

    border-top: 1px solid var(--hd-border);
}

.company-section__principles article {
    padding: 24px 0;

    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 16px;

    border-bottom: 1px solid var(--hd-border);
}

.company-section__principles article>span {
    color: var(--hd-blue);

    font-size: 10px;
    font-weight: 800;
}

.company-section__principles strong {
    display: block;

    color: var(--hd-navy);

    font-size: 15px;
}

.company-section__principles p {
    margin: 7px 0 0;

    color: var(--hd-muted);

    font-size: 13px;
    line-height: 1.65;
}

/* História */

.company-story {
    padding: 38px;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-lg);

    background: var(--hd-white);

    box-shadow:
        0 28px 80px rgba(15, 23, 42, 0.1);
}

.company-story__header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-story__symbol {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: var(--hd-gradient);
    color: var(--hd-white);

    font-size: 14px;
    font-weight: 800;
}

.company-story__header div {
    display: flex;
    flex-direction: column;
}

.company-story__header strong {
    color: var(--hd-navy);

    font-size: 17px;
}

.company-story__header small {
    margin-top: 3px;

    color: var(--hd-muted);

    font-size: 11px;
}

.company-story__timeline {
    position: relative;

    margin-top: 38px;
    padding-left: 18px;

    display: grid;
    gap: 30px;

    border-left: 1px solid #bfdbfe;
}

.company-story__timeline article {
    position: relative;

    padding-left: 22px;
}

.company-story__point {
    position: absolute;
    top: 5px;
    left: -24px;

    width: 11px;
    height: 11px;

    border: 3px solid var(--hd-white);
    border-radius: 50%;

    background: var(--hd-blue);

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.12);
}

.company-story__timeline small {
    color: var(--hd-blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.company-story__timeline strong {
    display: block;

    margin-top: 7px;

    color: var(--hd-navy);

    font-size: 15px;
    line-height: 1.45;
}

.company-story__timeline p {
    margin: 8px 0 0;

    color: var(--hd-muted);

    font-size: 12px;
    line-height: 1.65;
}

.company-story blockquote {
    margin: 37px 0 0;
    padding: 24px;

    border-left: 3px solid var(--hd-blue);
    border-radius: 0 var(--hd-radius-md) var(--hd-radius-md) 0;

    background: var(--hd-blue-light);
    color: var(--hd-navy);

    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
}



/* ==================================================
   CTA FINAL
================================================== */

.final-cta {
    position: relative;

    padding: 110px 0;

    background: var(--hd-white);
}

.final-cta__panel {
    position: relative;
    overflow: hidden;

    min-height: 610px;

    padding: 74px;

    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
    gap: 70px;
    align-items: center;

    border-radius: 34px;

    background:
        radial-gradient(circle at 85% 25%,
            rgba(6, 182, 212, 0.17),
            transparent 28rem),
        radial-gradient(circle at 8% 95%,
            rgba(37, 99, 235, 0.22),
            transparent 30rem),
        var(--hd-navy);

    color: var(--hd-white);

    box-shadow:
        0 35px 100px rgba(15, 23, 42, 0.22);
}

.final-cta__background {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.final-cta__orbit {
    position: absolute;

    border: 1px solid rgba(96, 165, 250, 0.12);
    border-radius: 50%;
}

.final-cta__orbit--one {
    top: -180px;
    right: -120px;

    width: 620px;
    height: 620px;
}

.final-cta__orbit--two {
    top: -80px;
    right: -20px;

    width: 420px;
    height: 420px;
}

.final-cta__orbit--three {
    top: 20px;
    right: 80px;

    width: 220px;
    height: 220px;

    border-style: dashed;

    animation: final-cta-rotate 26s linear infinite;
}

.final-cta__content,
.final-cta__visual {
    position: relative;
    z-index: 2;
}

.final-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 21px;

    color: #67e8f9;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.final-cta__eyebrow::before {
    content: "";

    width: 27px;
    height: 2px;

    background: var(--hd-gradient);
}

.final-cta h2 {
    max-width: 730px;

    margin: 0;

    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.07;
    letter-spacing: -0.055em;
}

.final-cta h2 span {
    display: block;

    background: var(--hd-gradient);
    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
}

.final-cta__content>p {
    max-width: 660px;

    margin: 26px 0 0;

    color: #94a3b8;

    font-size: 17px;
    line-height: 1.75;
}

.final-cta__actions {
    margin-top: 35px;

    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.final-cta__button {
    min-height: 54px;
    padding: 0 25px;
}

.final-cta__assurances {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;
    gap: 13px 22px;
}

.final-cta__assurances span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #cbd5e1;

    font-size: 11px;
    font-weight: 700;
}

.final-cta__assurances i {
    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;

    font-style: normal;
    font-size: 10px;
}

/* Visual CTA */

.final-cta__visual {
    min-height: 420px;

    display: grid;
    place-items: center;
}

.final-cta__core {
    position: relative;
    z-index: 4;

    width: 220px;
    min-height: 112px;

    padding: 19px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.08);

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(18px);
}

.final-cta__core>span {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: var(--hd-gradient);

    font-size: 13px;
    font-weight: 800;
}

.final-cta__core div {
    display: flex;
    flex-direction: column;
}

.final-cta__core strong {
    font-size: 17px;
}

.final-cta__core small {
    margin-top: 3px;

    color: #94a3b8;

    font-size: 11px;
}

.final-cta__node {
    position: absolute;
    z-index: 3;

    min-width: 128px;

    padding: 13px 16px;

    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 13px;

    background: rgba(255, 255, 255, 0.055);
    color: #cbd5e1;

    font-size: 11px;
    font-weight: 700;
    text-align: center;

    backdrop-filter: blur(12px);
}

.final-cta__node--top {
    top: 15px;
}

.final-cta__node--right {
    right: -10px;
}

.final-cta__node--bottom {
    bottom: 15px;
}

.final-cta__node--left {
    left: -10px;
}

@keyframes final-cta-rotate {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1000px) {

    .company-section__layout,
    .final-cta__panel {
        grid-template-columns: 1fr;
    }

    .final-cta__visual {
        max-width: 520px;
        width: 100%;

        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .company-section {
        padding: 90px 0;
    }

    .company-section__layout {
        gap: 55px;
    }

    .company-story {
        padding: 26px 23px;
    }

    .final-cta {
        padding: 70px 0;
    }

    .final-cta__panel {
        min-height: auto;

        padding: 50px 24px;

        border-radius: 24px;
    }

    .final-cta__actions,
    .final-cta__button {
        width: 100%;
    }

    .final-cta__visual {
        min-height: 360px;
    }

    .final-cta__node--right {
        right: 0;
    }

    .final-cta__node--left {
        left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .final-cta__orbit--three {
        animation: none;
    }
}

@keyframes connection-flow {
    0% {
        left: -5px;
        opacity: 0;
    }

    20%,
    80% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 3px);
        opacity: 0;
    }
}

@media (max-width: 1000px) {

    .connections-section__heading,
    .connections-main {
        grid-template-columns: 1fr;
    }

    .connections-section__heading {
        gap: 24px;
    }
}

@media (max-width: 700px) {
    .connections-section {
        padding: 90px 0;
    }

    .connections-section__heading {
        margin-bottom: 50px;
    }

    .connections-panel,
    .security-panel {
        padding: 24px;
    }

    .connections-grid {
        grid-template-columns: 1fr;
    }

    .connections-flow {
        align-items: stretch;
        flex-direction: column;
    }

    .connections-flow i {
        width: 1px;
        height: 25px;

        margin-left: 20px;
    }

    .connections-flow i::after {
        top: -5px;
        left: 50%;

        animation: connection-flow-mobile 2.8s ease-in-out infinite;
    }

    .connections-section__conclusion {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@keyframes connection-flow-mobile {
    0% {
        top: -5px;
        opacity: 0;
    }

    20%,
    80% {
        opacity: 1;
    }

    100% {
        top: calc(100% - 3px);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .connections-flow i::after {
        animation: none;
    }
}


@media (max-width: 950px) {

    .intelligence-section__heading,
    .intelligence-main {
        grid-template-columns: 1fr;
    }

    .intelligence-section__heading {
        gap: 24px;
    }

    .intelligence-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .intelligence-section {
        padding: 90px 0;
    }

    .intelligence-section__heading {
        margin-bottom: 50px;
    }

    .intelligence-card {
        padding: 24px;
    }

    .intelligence-capabilities {
        grid-template-columns: 1fr;
    }

    .intelligence-future-flow {
        grid-template-columns: 1fr;
    }

    .intelligence-future-flow>span {
        transform: rotate(90deg);
        text-align: center;
    }

    .intelligence-principle {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


@keyframes segments-data-flow {
    0% {
        left: -8px;
        opacity: 0;
    }

    20%,
    80% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 4px);
        opacity: 0;
    }
}

@media (max-width: 950px) {
    .segments-section__heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .segments-grid {
        grid-template-columns: 1fr;
    }

    .segments-architecture {
        grid-template-columns: 1fr;
    }

    .segments-architecture__line {
        width: 1px;
        height: 60px;

        margin-left: 28px;
    }

    .segments-architecture__line span {
        top: -8px;
        left: 50%;

        animation: segments-data-flow-mobile 3s ease-in-out infinite;
    }
}

@media (max-width: 640px) {
    .segments-section {
        padding: 90px 0;
    }

    .segments-section__heading {
        margin-bottom: 50px;
    }

    .segment-card {
        min-height: auto;
        padding: 24px;
    }

    .segment-card ul {
        grid-template-columns: 1fr;
    }

    .segments-architecture {
        padding: 26px 22px;
    }

    .segments-architecture__capabilities {
        grid-template-columns: 1fr;
    }

    .segments-section__conclusion {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@keyframes segments-data-flow-mobile {
    0% {
        top: -8px;
        opacity: 0;
    }

    20%,
    80% {
        opacity: 1;
    }

    100% {
        top: calc(100% - 4px);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .segments-architecture__line span {
        animation: none;
    }
}



/* ==================================================
   FORMULÁRIO DE DEMONSTRAÇÃO
================================================== */

.demo-form-panel {
    margin-top: 34px;
    padding: 56px;

    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 70px;

    border: 1px solid var(--hd-border);
    border-radius: 30px;

    background: var(--hd-white);

    box-shadow: var(--hd-shadow-md);
}

.demo-form-panel__heading h3 {
    margin: 0;

    color: var(--hd-navy);

    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.demo-form-panel__heading p {
    margin: 20px 0 0;

    color: var(--hd-muted);

    font-size: 15px;
    line-height: 1.75;
}

.demo-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.demo-form__group {
    display: grid;
    gap: 8px;
}

.demo-form__group--full {
    grid-column: 1 / -1;
}

.demo-form__group label {
    color: var(--hd-navy);

    font-size: 12px;
    font-weight: 800;
}

.demo-form__group input,
.demo-form__group select,
.demo-form__group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-sm);

    background: var(--hd-white);
    color: var(--hd-text);

    outline: none;

    transition:
        border-color var(--hd-transition),
        box-shadow var(--hd-transition);
}

.demo-form__group input,
.demo-form__group select {
    min-height: 51px;
}

.demo-form__group textarea {
    min-height: 130px;
    resize: vertical;
}

.demo-form__group input:focus,
.demo-form__group select:focus,
.demo-form__group textarea:focus {
    border-color: var(--hd-blue);

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.1);
}

.demo-form__error {
    color: #b91c1c;

    font-size: 11px;
    font-weight: 700;
}

.demo-form__footer {
    margin-top: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.demo-form__footer p {
    max-width: 420px;

    margin: 0;

    color: var(--hd-muted);

    font-size: 11px;
    line-height: 1.6;
}

.demo-form__submit {
    min-height: 54px;
    flex: 0 0 auto;
}

.demo-form__honeypot {
    position: absolute;
    left: -9999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}

/* Mensagens Flask */

.site-flashes {
    position: fixed;
    top: 94px;
    left: 50%;
    z-index: 100;

    transform: translateX(-50%);
}

.site-flash {
    max-width: 680px;
    margin-left: auto;

    padding: 15px 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-sm);

    background: var(--hd-white);

    box-shadow: var(--hd-shadow-md);

    font-size: 13px;
    font-weight: 700;
}

.site-flash--success {
    border-color: #a7f3d0;
    color: #047857;
}

.site-flash--error {
    border-color: #fecaca;
    color: #b91c1c;
}

.site-flash__close {
    padding: 0;

    border: 0;

    background: transparent;
    color: currentColor;

    cursor: pointer;

    font-size: 22px;
    line-height: 1;
}

@media (max-width: 850px) {
    .demo-form-panel {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 640px) {
    .demo-form-panel {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .demo-form__grid {
        grid-template-columns: 1fr;
    }

    .demo-form__group--full {
        grid-column: auto;
    }

    .demo-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .demo-form__submit {
        width: 100%;
    }

    .site-flashes {
        top: 78px;
    }
}