/* =========================================================
   LEVA ALI — LANDING PAGE
   CSS COMPLETO CONSOLIDADO
========================================================= */

:root {
    --blue: #1976D2;
    --blue-dark: #0D5EB8;
    --blue-deep: #073E78;
    --blue-soft: #EAF4FF;

    --green: #00A550;
    --green-dark: #008C44;
    --green-soft: #E5F7EE;

    --navy: #102333;
    --text: #17212B;
    --text-soft: #5F6F7C;

    --white: #FFFFFF;
    --surface: #F5F9FC;
    --surface-blue: #EEF6FC;

    --border: #DCE7EF;
    --border-blue: #CFE4F7;

    --shadow: 0 18px 50px rgba(16, 35, 51, 0.08);
    --shadow-phone: 0 28px 55px rgba(16, 35, 51, 0.18);

    --radius: 22px;
    --radius-small: 14px;

    --max-width: 1180px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(25, 118, 210, 0.35);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--max-width));
    margin-inline: auto;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 78px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 175px;
    height: auto;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;

    font-size: 0.9rem;
    font-weight: 650;
    color: #344554;
}

.desktop-nav a,
.komiti-link {
    transition:
        color 180ms ease,
        opacity 180ms ease;
}

.desktop-nav a:hover,
.komiti-link:hover {
    color: var(--blue);
}

.komiti-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #435360;
    white-space: nowrap;
}


/* =========================================================
   ELEMENTOS GERAIS
========================================================= */

.section {
    padding: 100px 0;
}

.section-white {
    background: var(--white);
}

.section-soft {
    background: var(--surface);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 15px;

    color: var(--green);

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.eyebrow-light {
    color: #C7F5DC;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 52px;
}

.section-heading-wide {
    max-width: 780px;
}

.section-heading-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading p {
    max-width: 690px;
    margin: 0;

    color: var(--text-soft);
    font-size: 1.03rem;
}


/* =========================================================
   BOTÕES
========================================================= */

.button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 0.94rem;
    font-weight: 750;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--green);

    box-shadow:
        0 12px 28px rgba(0, 165, 80, 0.22);
}

.button-primary:hover {
    background: var(--green-dark);
}

.button-secondary {
    color: var(--blue);
    background: var(--white);
    border: 1px solid var(--border-blue);
}

.button-secondary:hover {
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.10);
}

.button-white {
    color: var(--blue);
    background: var(--white);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 610px;

    display: flex;
    align-items: center;

    padding: 90px 0 100px;

    background:
        linear-gradient(
            120deg,
            #FFFFFF 0%,
            #FFFFFF 52%,
            #F1F8FE 100%
        );
}

.hero::after {
    content: "";

    position: absolute;

    width: 440px;
    height: 440px;

    right: -170px;
    bottom: -240px;

    border-radius: 50%;
    background: rgba(25, 118, 210, 0.055);
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);

    align-items: center;
    gap: 80px;
}

.hero-content {
    max-width: 660px;
}

.hero h1 {
    margin: 0 0 24px;

    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero h1 span {
    color: var(--blue);
}

.hero-text {
    max-width: 650px;
    margin: 0;

    color: var(--text-soft);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 32px;
}

.launch-status {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 25px;
    padding: 8px 14px;

    border-radius: 999px;

    color: var(--green-dark);
    background: var(--green-soft);

    font-size: 0.84rem;
    font-weight: 750;
}

.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: var(--green);
}


/* =========================================================
   HERO — REPRESENTAÇÃO DO FLUXO
========================================================= */

.hero-visual {
    position: relative;

    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-10px);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-shape-one {
    width: 390px;
    height: 390px;

    background:
        linear-gradient(
            145deg,
            rgba(25, 118, 210, 0.13),
            rgba(0, 165, 80, 0.08)
        );
}

.hero-shape-two {
    width: 290px;
    height: 290px;

    right: 0;
    top: 25px;

    border: 1px solid rgba(25, 118, 210, 0.14);
}

.hero-product-card {
    position: relative;
    z-index: 3;

    width: min(100%, 470px);
    padding: 34px;

    border: 1px solid rgba(25, 118, 210, 0.15);
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 30px 80px rgba(16, 35, 51, 0.13);
}

.hero-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 15px;

    color: var(--white);
    background: var(--blue);

    font-size: 1.4rem;
    font-weight: 800;
}

.hero-product-card > span {
    display: block;

    color: var(--green);

    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-product-card > strong {
    display: block;

    margin-top: 8px;

    font-size: 1.65rem;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.hero-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;

    align-items: center;
    gap: 8px;

    margin-top: 30px;
}

.hero-flow div {
    min-width: 0;
    padding: 13px 8px;

    border-radius: 13px;

    background: var(--blue-soft);
    text-align: center;
}

.hero-flow b {
    display: block;

    color: var(--blue);
    font-size: 0.75rem;
}

.hero-flow span {
    display: block;

    margin-top: 2px;

    color: #425665;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-flow i {
    color: var(--green);
    font-style: normal;
    font-weight: 900;
}


/* =========================================================
   BENEFÍCIOS
========================================================= */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card,
.profile-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.feature-card:hover,
.profile-card:hover {
    transform: translateY(-4px);

    border-color: var(--border-blue);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 32px;
}

.feature-icon,
.profile-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: var(--blue);
    background: var(--blue-soft);

    font-size: 1.3rem;
    font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon {
    color: var(--green);
    background: var(--green-soft);
}

.feature-card h3,
.profile-card h3 {
    margin: 20px 0 8px;

    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.feature-card p,
.profile-card p {
    margin: 0;

    color: var(--text-soft);
    font-size: 0.94rem;
}


/* =========================================================
   COMO FUNCIONA
========================================================= */

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.profile-card {
    position: relative;
    padding: 34px;
}

.profile-number {
    position: absolute;

    top: 24px;
    right: 24px;

    color: var(--blue);

    font-size: 0.78rem;
    font-weight: 850;
}

.profile-action {
    display: inline-block;

    margin-top: 24px;
    padding: 7px 12px;

    border-radius: 999px;

    color: var(--blue);
    background: var(--blue-soft);

    font-size: 0.78rem;
    font-weight: 750;
}


/* =========================================================
   OPERAÇÃO LEVA ALI
========================================================= */

.operation-showcase {
    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            var(--surface) 0%,
            var(--white) 100%
        );
}

.operation-image {
    position: relative;
    overflow: hidden;

    min-height: 540px;

    display: flex;
    align-items: flex-end;

    border-radius: 30px;

    background: var(--navy);

    box-shadow:
        0 28px 70px rgba(16, 35, 51, 0.16);
}

.operation-image > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 500ms ease;
}

.operation-image:hover > img {
    transform: scale(1.015);
}

.operation-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 28, 44, 0.88) 0%,
            rgba(7, 28, 44, 0.68) 30%,
            rgba(7, 28, 44, 0.20) 58%,
            rgba(7, 28, 44, 0.02) 100%
        );
}

.operation-overlay {
    position: relative;
    z-index: 2;

    width: min(100%, 520px);

    padding: 54px;

    color: var(--white);
}

.operation-overlay > span {
    display: inline-block;

    margin-bottom: 13px;

    color: #BFF2D6;

    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.09em;
}

.operation-overlay h2 {
    margin: 0 0 17px;

    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.operation-overlay h2 strong {
    display: block;

    color: #78DDA8;
    font-weight: inherit;
}

.operation-overlay p {
    max-width: 470px;
    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1rem;
}


/* =========================================================
   LEVA ALI NA PRÁTICA
========================================================= */

.product-demo {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(25, 118, 210, 0.08),
            transparent 38%
        ),
        var(--white);
}

.phones-flow {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        42px
        minmax(0, 1fr)
        42px
        minmax(0, 1fr);

    align-items: center;
    gap: 12px;

    margin-top: 60px;
}

.phone-column {
    min-width: 0;
    text-align: center;
}

.phone-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 20px;
}

.phone-label span {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--white);
    background: var(--blue);

    font-size: 0.72rem;
    font-weight: 850;
}

.phone-label strong {
    font-size: 1rem;
}

.phone-frame {
    position: relative;

    width: min(100%, 290px);

    margin: 0 auto;
    padding: 11px;

    border: 3px solid #17212B;
    border-radius: 38px;

    background:
        linear-gradient(
            145deg,
            #28333C,
            #0D141A
        );

    box-shadow: var(--shadow-phone);
}

.phone-frame::before {
    content: "";

    position: absolute;

    width: 3px;
    height: 58px;

    left: -6px;
    top: 90px;

    border-radius: 4px 0 0 4px;

    background: #26313A;
}

.phone-frame::after {
    content: "";

    position: absolute;

    width: 3px;
    height: 72px;

    right: -6px;
    top: 115px;

    border-radius: 0 4px 4px 0;

    background: #26313A;
}

.phone-speaker {
    position: absolute;
    z-index: 5;

    width: 64px;
    height: 17px;

    top: 15px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 0 0 11px 11px;

    background: #11181E;
}

.phone-screen {
    overflow: hidden;

    aspect-ratio: 9 / 19.5;

    border-radius: 28px;

    background: var(--white);
}

.phone-screen img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;
}

.phone-column > p {
    max-width: 285px;

    margin: 26px auto 0;

    color: var(--text-soft);
    font-size: 0.9rem;
}

.flow-arrow {
    color: var(--green);

    font-size: 2.1rem;
    font-weight: 400;
    text-align: center;
}


/* =========================================================
   ETAPAS
========================================================= */

.stages-layout {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.85fr)
        minmax(0, 1.15fr);

    gap: 80px;
    align-items: center;
}

.stages-layout .section-heading {
    margin-bottom: 0;
}

.stages {
    position: relative;

    display: grid;
    gap: 8px;
}

.stages::before {
    content: "";

    position: absolute;

    width: 2px;

    top: 35px;
    bottom: 35px;
    left: 22px;

    background:
        linear-gradient(
            var(--blue),
            var(--green)
        );
}

.stage {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 46px 1fr;

    gap: 20px;
    align-items: flex-start;

    padding: 17px 0;
}

.stage-number {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 5px solid var(--surface);
    border-radius: 50%;

    color: var(--white);
    background: var(--blue);

    font-size: 0.68rem;
    font-weight: 850;
}

.stage-green {
    background: var(--green);
}

.stage h3 {
    margin: 2px 0 3px;

    font-size: 1rem;
}

.stage p {
    margin: 0;

    color: var(--text-soft);
    font-size: 0.9rem;
}


/* =========================================================
   BLOCO AZUL
========================================================= */

.technology-banner {
    position: relative;
    overflow: hidden;

    padding: 82px 0;

    color: var(--white);

    background:
        linear-gradient(
            125deg,
            #0A63C7 0%,
            #1976D2 48%,
            #0889D1 100%
        );
}

.technology-banner::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -130px;
    bottom: -270px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.technology-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 0.8fr;

    gap: 100px;
    align-items: center;
}

.technology-grid h2 {
    max-width: 600px;

    margin: 0 0 18px;

    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.technology-grid h2 strong {
    display: block;
}

.technology-grid > div:first-child > p {
    max-width: 610px;

    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.84);
}

.technology-points {
    display: grid;
    gap: 16px;
}

.technology-points div {
    display: grid;
    grid-template-columns: 48px 1fr;

    gap: 17px;
    align-items: center;

    padding: 20px 22px;

    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.13);

    box-shadow:
        0 10px 30px rgba(7, 62, 120, 0.12);
}

.technology-points span {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);

    font-weight: 850;
}

.technology-points p {
    margin: 0;
    font-size: 0.92rem;
}


/* =========================================================
   LANÇAMENTO
========================================================= */

.launch-section {
    background: var(--white);
}

.launch-card {
    display: grid;
    grid-template-columns: 74px 1fr;

    gap: 28px;
    align-items: center;

    padding: 45px;

    border: 1px solid var(--border-blue);
    border-radius: 26px;

    background:
        linear-gradient(
            110deg,
            #F6FBFF,
            #EEF7FF
        );
}

.launch-marker {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border-radius: 22px;

    color: var(--white);
    background: var(--blue);

    font-size: 1.8rem;
}

.launch-card .eyebrow {
    margin-bottom: 7px;
}

.launch-card h2 {
    margin: 0 0 10px;

    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.launch-card p {
    max-width: 780px;
    margin: 0;

    color: var(--text-soft);
}


/* =========================================================
   CTA + REDES SOCIAIS
========================================================= */

.cta-section {
    padding: 76px 0;

    color: var(--white);
    background: var(--navy);
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    align-items: center;
    gap: 70px;
}

.cta-inner > div:first-child {
    max-width: 690px;
}

.cta-inner h2 {
    margin: 0 0 13px;

    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.cta-inner p {
    margin: 0;

    color: #C3D0D9;
}

.social-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(170px, 1fr));
    gap: 12px;
}

.social-button {
    min-width: 180px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 15px 18px;

    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 16px;

    color: var(--white);
    background: rgba(255, 255, 255, 0.07);

    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.social-button:hover {
    transform: translateY(-2px);

    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.14);
}

.social-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border-radius: 13px;
    line-height: 0;
}

.social-icon svg {
    display: block;

    width: 22px;
    height: 22px;

    margin: 0;
    padding: 0;

    flex: 0 0 22px;
}

.social-icon-instagram {
    background: var(--green);
}

.social-icon-instagram svg {
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-icon-instagram .instagram-dot {
    fill: #FFFFFF;
    stroke: none;
}

.social-icon-facebook {
    background: var(--blue);
}

.social-icon-facebook svg {
    fill: #FFFFFF;
    stroke: none;
    transform: translateX(1px);
}

.social-text {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    line-height: 1.15;
}

.social-text small {
    display: block;

    margin: 0 0 3px;

    color: #AFC0CB;

    font-size: 0.68rem;
    font-weight: 600;
}

.social-text strong {
    display: block;

    margin: 0;

    color: #FFFFFF;

    font-size: 0.9rem;
    font-weight: 750;
}


/* =========================================================
   DOCUMENTOS LEGAIS
========================================================= */

.legal-section {
    background: var(--white);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.legal-card {
    position: relative;
    overflow: hidden;

    min-height: 270px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.legal-card::before {
    content: "";

    position: absolute;

    height: 5px;

    top: 0;
    left: 0;
    right: 0;
}

.legal-blue {
    background:
        linear-gradient(
            160deg,
            #FFFFFF,
            #F1F7FE
        );
}

.legal-blue::before {
    background: var(--blue);
}

.legal-green {
    background:
        linear-gradient(
            160deg,
            #FFFFFF,
            #EFFBF5
        );
}

.legal-green::before {
    background: var(--green);
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.legal-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 13px;

    font-size: 0.9rem;
    font-weight: 850;
}

.legal-blue .legal-icon {
    color: var(--blue);
    background: var(--blue-soft);
}

.legal-green .legal-icon {
    color: var(--green);
    background: var(--green-soft);
}

.legal-card h3 {
    margin: 0 0 10px;

    font-size: 1.05rem;
}

.legal-card p {
    margin: 0 0 22px;

    color: var(--text-soft);
    font-size: 0.9rem;
}

.legal-card a {
    margin-top: auto;

    color: var(--blue);

    font-size: 0.88rem;
    font-weight: 800;
}

.legal-green a {
    color: var(--green-dark);
}


/* =========================================================
   RODAPÉ
========================================================= */

.site-footer {
    color: #D6E0E7;
    background: #0D2232;
}

.footer-top {
    min-height: 150px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 50px;

    padding-top: 36px;
    padding-bottom: 36px;
}

.footer-brand img {
    width: 150px;
    height: auto;

    padding: 0;

    border-radius: 0;
    background: transparent;
}

.footer-brand p {
    margin: 10px 0 0;

    color: #AFC0CB;
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 22px;

    color: #BCCAD3;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;

    color: #8FA3B1;
    font-size: 0.78rem;
}


/* =========================================================
   REDES SOCIAIS — DESKTOP
========================================================= */

@media (min-width: 981px) {

    .cta-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 55px;
    }

    .social-actions {
        width: auto;

        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;

        align-items: center;
        justify-content: flex-end;

        gap: 12px;
    }

    .social-button {
        width: 175px;
        min-width: 175px;
        min-height: 64px;

        padding: 11px 14px;

        gap: 11px;
    }

    .social-icon {
        flex-basis: 38px;

        width: 38px;
        height: 38px;

        border-radius: 11px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .social-text small {
        font-size: 0.64rem;
    }

    .social-text strong {
        font-size: 0.84rem;
    }
}


/* =========================================================
   RESPONSIVIDADE — TABLET
========================================================= */

@media (max-width: 980px) {

    .desktop-nav {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 360px;
        transform: none;
    }

    .benefits-grid,
    .profiles-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .profile-card {
        max-width: 760px;
    }

    .operation-image {
        min-height: 500px;
    }

    .operation-overlay {
        padding: 45px;
    }

    .phones-flow {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        align-items: start;
    }

    .flow-arrow {
        display: none;
    }

    .phone-frame {
        width: min(100%, 245px);
        border-radius: 32px;
    }

    .phone-screen {
        border-radius: 23px;
    }

    .stages-layout,
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .social-actions {
        width: min(100%, 470px);
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-card {
        min-height: 220px;
    }
}


/* =========================================================
   RESPONSIVIDADE — CELULAR
========================================================= */

@media (max-width: 760px) {

    .container {
        width: min(calc(100% - 30px), var(--max-width));
    }


    /* CABEÇALHO */

    .header-inner {
        min-height: 74px;
        gap: 18px;
    }

    .brand-logo {
        width: 150px;
    }

    .komiti-link {
        max-width: none;
        font-size: 0.76rem;
        line-height: 1.25;
        text-align: right;
    }


    /* SEÇÕES */

    .section {
        padding: 75px 0;
    }


    /* HERO */

    .hero {
        padding: 70px 0 75px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 330px;
    }

    .hero-shape-one {
        width: 310px;
        height: 310px;
    }

    .hero-product-card {
        padding: 27px 22px;
    }

    .hero-product-card > strong {
        font-size: 1.4rem;
    }

    .hero-flow {
        gap: 4px;
    }

    .hero-flow div {
        padding: 10px 4px;
    }

    .hero-flow span {
        font-size: 0.62rem;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .feature-card,
    .profile-card {
        padding: 27px;
    }


    /* IMAGEM OPERACIONAL */

    .operation-showcase {
        padding: 60px 0;
    }

    .operation-image {
        min-height: 0;
        height: auto;

        aspect-ratio: 4 / 5;

        border-radius: 22px;
    }

    .operation-image > img {
        object-fit: cover;
        object-position: 56% center;
    }

    .operation-image::after {
        background:
            linear-gradient(
                0deg,
                rgba(7, 28, 44, 0.94) 0%,
                rgba(7, 28, 44, 0.72) 34%,
                rgba(7, 28, 44, 0.15) 62%,
                rgba(7, 28, 44, 0.02) 100%
            );
    }

    .operation-overlay {
        width: 100%;
        padding: 26px 24px;
    }

    .operation-overlay > span {
        margin-bottom: 8px;
        font-size: 0.68rem;
    }

    .operation-overlay h2 {
        max-width: 330px;

        margin-bottom: 10px;

        font-size: clamp(1.75rem, 8.5vw, 2.35rem);
        line-height: 1.02;
    }

    .operation-overlay p {
        max-width: 330px;

        font-size: 0.88rem;
        line-height: 1.45;
    }


    /* TELAS DO APLICATIVO */

    .phones-flow {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .phone-frame {
        width: min(100%, 285px);
        border-radius: 38px;
    }

    .phone-screen {
        border-radius: 28px;
    }

    .phone-column > p {
        max-width: 340px;
    }


    /* ETAPAS */

    .stages-layout {
        gap: 35px;
    }


    /* TECNOLOGIA */

    .technology-banner {
        padding: 70px 0;
    }


    /* LANÇAMENTO */

    .launch-card {
        grid-template-columns: 1fr;

        gap: 20px;
        padding: 30px;
    }

    .launch-marker {
        width: 58px;
        height: 58px;
    }


    /* CTA + REDES SOCIAIS */

    .cta-section {
        padding: 65px 0;
    }

    .cta-inner {
        display: grid;
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .social-actions {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .social-button {
        width: 100%;
        min-width: 0;
    }


    /* RODAPÉ */

    .footer-top {
        align-items: flex-start;
        flex-direction: column;

        gap: 28px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-direction: column;

        gap: 13px;
    }
}


/* =========================================================
   TELAS MUITO PEQUENAS
========================================================= */

@media (max-width: 420px) {

    /* CABEÇALHO */

    .header-inner {
        min-height: 70px;
    }

    .brand-logo {
        width: 130px;
    }

    .komiti-link {
        max-width: 110px;

        font-size: 0.7rem;
        line-height: 1.25;
        text-align: right;
    }


    /* HERO */

    .hero h1 {
        letter-spacing: -0.055em;
    }

    .hero-product-card {
        border-radius: 22px;
    }

    .hero-flow i {
        font-size: 0.75rem;
    }


    /* IMAGEM OPERACIONAL */

    .operation-image {
        min-height: 0;
        aspect-ratio: 4 / 5;

        border-radius: 20px;
    }

    .operation-overlay {
        padding: 22px 20px;
    }

    .operation-overlay p {
        font-size: 0.88rem;
    }


    /* TELAS */

    .phone-frame {
        width: min(100%, 270px);
    }


    /* LANÇAMENTO */

    .launch-card {
        padding: 25px;
    }


    /* REDES SOCIAIS */

    .social-button {
        padding: 14px 16px;
    }
}


/* =========================================================
   ACESSIBILIDADE — REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .operation-image:hover > img {
        transform: none;
    }
}
