/* =========================================================
   MARCOS DEV
   Página: Sobre
   ========================================================= */

:root {
    color-scheme: light;

    /* Marca */
    --blue: #016ff7;
    --blue-hover: #0062df;
    --blue-active: #0055c5;
    --light-blue: #58a4ec;

    /* Tons escuros */
    --navy-950: #020916;
    --navy-900: #06152d;
    --navy-800: #0a2144;
    --navy-700: #11315f;

    /* Superfícies */
    --white: #fefefe;
    --surface: #ffffff;
    --surface-soft: #f7faff;
    --surface-blue: #f1f7ff;

    /* Texto */
    --text: #0b1730;
    --text-soft: #35465e;
    --muted: #68758a;
    --muted-light: #8b98a9;

    /* Bordas */
    --line: #dce4ef;
    --line-soft: #edf2f7;

    /* Sombras */
    --shadow-xs: 0 1px 3px rgba(6, 21, 45, 0.04);
    --shadow-sm: 0 8px 24px rgba(6, 21, 45, 0.06);
    --shadow-md: 0 20px 50px rgba(6, 21, 45, 0.09);
    --shadow-blue: 0 18px 40px rgba(1, 111, 247, 0.22);

    /* Layout */
    --max: 1180px;
    --page-padding: 32px;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Animação */
    --ease: cubic-bezier(.2, .8, .2, 1);
}


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

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

html {
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--white);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;

    color: var(--text);
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(88, 164, 236, 0.07),
            transparent 38%
        ),
        var(--white);

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

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;
}

button,
input,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

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

::selection {
    color: #fff;
    background: var(--blue);
}


/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;

    padding: 11px 16px;

    color: #fff;
    background: var(--navy-900);

    border-radius: 10px;

    font-size: .88rem;
    font-weight: 700;

    text-decoration: none;

    transform: translateY(-180%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(1, 111, 247, .28);
    outline-offset: 4px;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - (var(--page-padding) * 2)),
        var(--max)
    );

    margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 100;

    width: 100%;

    border-bottom: 1px solid rgba(220, 228, 239, .8);

    background:
        rgba(254, 254, 254, .86);

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

.header-container {
    min-height: 92px;

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

    gap: 40px;
}


/* Logo */

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

    flex: 0 0 auto;

    text-decoration: none;
}

.brand img {
    display: block;

    width: 168px;
    height: auto;

    transition:
        transform .35s var(--ease),
        opacity .35s ease;
}

.brand:hover img {
    transform: translateY(-1px);
}


/* Menu */

.main-nav {
    display: flex;
    align-items: center;

    gap: 6px;
}

.nav-link,
.login-link {
    position: relative;

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

    min-height: 42px;

    padding: 0 14px;

    border-radius: 10px;

    color: var(--muted);

    font-size: .9rem;
    font-weight: 650;

    text-decoration: none;

    transition:
        color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(1, 111, 247, .055);
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
    color: var(--blue);
}

.nav-link.is-active::after,
.nav-link[aria-current="page"]::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 3px;

    height: 2px;

    border-radius: 999px;

    background: var(--blue);
}


/* Botão entrar */

.login-link {
    margin-left: 8px;

    padding-inline: 18px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--navy-900),
            var(--navy-800)
        );

    box-shadow:
        0 8px 20px rgba(6, 21, 45, .12);
}

.login-link:hover {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #081b38,
            #0a2a58
        );

    transform: translateY(-1px);
}


/* =========================================================
   SEÇÕES
   ========================================================= */

.section {
    position: relative;
}

main {
    display: block;
}


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

.hero {
    position: relative;

    overflow: hidden;

    padding:
        clamp(76px, 8.5vw, 128px)
        0
        clamp(82px, 9vw, 128px);

    border-bottom: 1px solid var(--line-soft);
}


/* Grid decorativo */

.hero-grid-pattern {
    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .45;

    background-image:
        linear-gradient(
            rgba(1, 111, 247, .045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(1, 111, 247, .045) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .85),
            transparent 90%
        );
}


/* Glows */

.hero-glow {
    position: absolute;

    pointer-events: none;

    border-radius: 999px;

    filter: blur(12px);
}

.hero-glow-one {
    width: 520px;
    height: 520px;

    top: -250px;
    right: -100px;

    background:
        radial-gradient(
            circle,
            rgba(1, 111, 247, .14),
            rgba(1, 111, 247, 0) 70%
        );
}

.hero-glow-two {
    width: 420px;
    height: 420px;

    left: -220px;
    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(88, 164, 236, .11),
            rgba(88, 164, 236, 0) 70%
        );
}


/* Layout hero */

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

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, .95fr);

    align-items: center;

    gap: clamp(50px, 7vw, 96px);
}

.hero-content {
    min-width: 0;
}


/* Eyebrow */

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin: 0 0 20px;

    color: var(--blue);

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .13em;
    line-height: 1.5;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 0 5px rgba(1, 111, 247, .09);
}


/* Título */

.hero-title {
    max-width: 720px;

    margin: 0;

    color: var(--navy-950);

    font-size: clamp(3.6rem, 6.4vw, 4.5rem);
    font-weight: 780;

    letter-spacing: -.072em;
    line-height: .92;
}

.hero-title span {
    color: var(--navy-950);
}


/* Descrição */

.hero-copy {
    max-width: 640px;

    margin: 30px 0 0;

    color: var(--text-soft);

    font-size: clamp(1.05rem, 1.7vw, 1.25rem);

    line-height: 1.72;
}


/* CTA */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    color: var(--navy-900);
    font-size: .9rem;
    font-weight: 720;
    text-decoration: none;
}

.secondary-link:hover {
    color: var(--blue);
}

.hero-rule {
    width: 100%;
    height: 1px;
    margin-top: 46px;
    background: var(--line);
}

.primary-link {
    position: relative;

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

    gap: 14px;

    min-height: 44px;

    padding: 0 21px;

    overflow: hidden;

    border: 1px solid rgba(1, 111, 247, .4);
    border-radius: 9px;

    color: #fff;

    background: var(--blue);

    box-shadow: none;

    font-size: .93rem;
    font-weight: 760;

    text-decoration: none;

    transition:
        transform .3s var(--ease),
        box-shadow .3s ease,
        background .3s ease;
}

.primary-link::before {
    content: "";

    position: absolute;

    top: -60%;
    left: -45%;

    width: 40%;
    height: 220%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.2),
            transparent
        );

    transform: rotate(20deg);

    transition: left .65s var(--ease);
}

.primary-link:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
    box-shadow: none;
}

.primary-link:hover::before {
    left: 120%;
}

.link-arrow {
    display: inline-flex;

    font-size: 1.12rem;

    transition: transform .3s var(--ease);
}

.primary-link:hover .link-arrow {
    transform: translateX(4px);
}


/* =========================================================
   VISUAL DO HERO
   ========================================================= */

.hero-visual {
    position: relative;

    width: 100%;
}

.hero-visual::before {
    content: "";

    position: absolute;

    width: 82%;
    aspect-ratio: 1;

    left: 50%;
    top: 52%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 111, 247, .12),
            transparent 68%
        );

    filter: blur(4px);
}


/* Janela */

.visual-window {
    position: relative;
    z-index: 2;

    width: 100%;

    aspect-ratio: 1.27;

    overflow: hidden;

    border:
        1px solid rgba(190, 205, 224, .82);

    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 35px 85px rgba(6, 21, 45, .14),
        0 8px 20px rgba(6, 21, 45, .06),
        inset 0 1px 0 rgba(255,255,255,.85);

    transform:
        perspective(1200px)
        rotateY(-2deg)
        rotateX(1deg);

    animation:
        heroFloat 7s ease-in-out infinite;
}


/* Topo navegador */

.visual-window-header {
    height: 50px;

    display: grid;

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

    align-items: center;

    padding: 0 15px;

    border-bottom:
        1px solid var(--line-soft);

    background:
        linear-gradient(
            to bottom,
            #fff,
            #fafcff
        );
}

.window-dots {
    display: flex;
    align-items: center;

    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;

    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;
}

.window-dots span:first-child {
    background: #ff5f57;
}

.window-dots span:nth-child(2) {
    background: #febc2e;
}

.window-dots span:nth-child(3) {
    background: #28c840;
}

.window-address {
    justify-self: center;

    width: min(100%, 210px);

    overflow: hidden;

    padding: 7px 14px;

    border: 1px solid #e8eef5;
    border-radius: 8px;

    color: #8a98aa;

    background: #f7f9fc;

    font-size: .66rem;
    font-weight: 650;

    text-align: center;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* Conteúdo */

.visual-window-content {
    display: grid;

    grid-template-columns: 68px 1fr;

    height: calc(100% - 50px);

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #ffffff 50%
        );
}


/* Sidebar */

.visual-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 14px;

    padding: 18px 11px;

    border-right:
        1px solid #edf2f7;

    background: #fff;
}

.visual-sidebar-logo {
    position: relative;
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    margin-bottom: 9px;

    border-radius: 9px;

    overflow: hidden;
    border: 1px solid rgba(1, 111, 247, .14);
    background: #f3f8ff;

    box-shadow:
        0 8px 18px rgba(1, 111, 247, .14);
}

.visual-sidebar-logo img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.visual-sidebar-item {
    width: 27px;
    height: 6px;

    display: block;

    border-radius: 999px;

    background: #e8eef5;
}

.visual-sidebar-item.active {
    background: var(--blue);
}


/* Dashboard */

.visual-dashboard {
    min-width: 0;

    padding: clamp(18px, 3vw, 28px);
}

.visual-dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.visual-dashboard-top > div {
    width: 58%;
}

.visual-small-line,
.visual-title-line,
.visual-card-title,
.visual-card-line {
    display: block;

    border-radius: 999px;
}

.visual-small-line {
    width: 38%;
    height: 5px;

    margin-bottom: 10px;

    background: #bedbff;
}

.visual-title-line {
    width: 85%;
    height: 13px;

    background: var(--navy-900);
}

.visual-avatar {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ddebff,
            #a7ceff
        );

    border:
        3px solid #fff;

    box-shadow:
        0 0 0 1px #dce7f3;
}


/* Stats */

.visual-stat-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;

    margin-top: clamp(25px, 5vw, 40px);
}

.visual-stat-grid span {
    height: clamp(58px, 8vw, 78px);

    display: block;

    border:
        1px solid #e4ecf5;

    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #f6faff
        );

    box-shadow:
        0 7px 18px rgba(6, 21, 45, .035);
}

.visual-stat-grid span:first-child {
    border-color:
        rgba(1, 111, 247, .25);

    background:
        linear-gradient(
            145deg,
            #f5f9ff,
            #eaf4ff
        );
}


/* Card */

.visual-content-card {
    margin-top: 13px;

    padding: 18px;

    border:
        1px solid #e4ecf5;

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 8px 20px rgba(6, 21, 45, .035);
}

.visual-card-title {
    width: 32%;
    height: 8px;

    margin-bottom: 17px;

    background: var(--navy-900);
}

.visual-card-line {
    width: 88%;
    height: 5px;

    margin-top: 8px;

    background: #dce5ef;
}

.visual-card-line.short {
    width: 58%;
}

.visual-progress {
    width: 100%;
    height: 5px;

    margin-top: 20px;

    overflow: hidden;

    border-radius: 999px;

    background: #edf2f7;
}

.visual-progress span {
    display: block;

    width: 65%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--light-blue)
        );
}


/* =========================================================
   IDENTIDADE
   ========================================================= */

.identity {
    padding:
        clamp(82px, 9vw, 120px)
        0;

    background: #fff;

    border-bottom:
        1px solid var(--line-soft);
}

.identity-layout {
    display: grid;

    grid-template-columns:
        minmax(260px, .8fr)
        minmax(0, 1.2fr);

    gap: clamp(55px, 9vw, 128px);

    align-items: start;
}


/* Labels */

.section-label {
    margin-bottom: 18px;
}

.section-label > span {
    width: 23px;
    height: 2px;

    display: inline-block;

    border-radius: 999px;

    background: var(--blue);
}


/* Títulos */

h2 {
    margin: 0;

    color: var(--navy-950);

    font-size: clamp(2.15rem, 4.2vw, 3.5rem);
    font-weight: 740;

    letter-spacing: -.047em;
    line-height: 1.05;
}


/* Texto identidade */

.identity-content {
    position: relative;

    padding-top: 5px;
}

.identity-content > p {
    max-width: 700px;

    margin: 0;

    color: var(--text-soft);

    font-size: clamp(1.05rem, 1.8vw, 1.18rem);

    line-height: 1.86;
}

.identity-detail {
    display: flex;

    gap: 7px;

    margin-top: 32px;
}

.identity-detail span {
    display: block;

    height: 4px;

    border-radius: 999px;

    background: #dde8f5;
}

.identity-detail span:nth-child(1) {
    width: 48px;
    background: var(--blue);
}

.identity-detail span:nth-child(2) {
    width: 24px;
}

.identity-detail span:nth-child(3) {
    width: 12px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features {
    padding:
        clamp(88px, 10vw, 138px)
        0;

    background:
        linear-gradient(
            180deg,
            #fbfdff,
            #f6faff
        );
}

.section-heading {
    max-width: 720px;
}

.section-heading-centered {
    margin-inline: auto;

    text-align: center;
}

.section-heading-centered .section-label {
    justify-content: center;
}

.section-heading > p:last-child {
    margin: 23px 0 0;

    color: var(--muted);

    font-size: 1.01rem;

    line-height: 1.8;
}


/* Grid */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-top: clamp(45px, 6vw, 65px);
}


/* Card */

.feature-card {
    position: relative;

    min-height: 300px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    padding: clamp(28px, 4vw, 38px);

    border:
        1px solid rgba(220, 228, 239, .9);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .98),
            rgba(250, 252, 255, .98)
        );

    box-shadow:
        0 10px 30px rgba(6, 21, 45, .035);

    transition:
        transform .35s var(--ease),
        box-shadow .35s ease,
        border-color .35s ease;
}

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

    position: absolute;

    width: 190px;
    height: 190px;

    right: -110px;
    top: -110px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 111, 247, .1),
            rgba(1, 111, 247, 0) 68%
        );

    transition:
        transform .45s var(--ease);
}

.feature-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(1, 111, 247, .25);

    box-shadow:
        0 25px 60px rgba(6, 21, 45, .09);
}

.feature-card:hover::before {
    transform: scale(1.15);
}


/* Top */

.feature-card-top {
    position: relative;
    z-index: 2;

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

    gap: 20px;
}

.feature-number {
    color: var(--blue);

    font-size: .72rem;
    font-weight: 850;

    letter-spacing: .1em;
}

.feature-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(1, 111, 247, .13);

    border-radius: 10px;

    color: var(--blue);

    background:
        rgba(1, 111, 247, .065);

    font-size: .9rem;
    font-weight: 850;

    transition:
        transform .35s var(--ease),
        background .35s ease;
}

.feature-card:hover .feature-icon {
    transform:
        rotate(-4deg)
        scale(1.05);

    background:
        rgba(1, 111, 247, .1);
}


/* Conteúdo */

.feature-card h3 {
    position: relative;
    z-index: 2;

    margin: 55px 0 13px;

    color: var(--navy-950);

    font-size: 1.25rem;
    font-weight: 740;

    letter-spacing: -.02em;
}

.feature-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--muted);

    font-size: .95rem;

    line-height: 1.72;
}

.feature-line {
    position: relative;
    z-index: 2;

    width: 44px;
    height: 3px;

    display: block;

    margin-top: auto;
    padding-top: 27px;

    border-bottom: 3px solid var(--blue);

    transition:
        width .4s var(--ease);
}

.feature-card:hover .feature-line {
    width: 72px;
}

/* Lista editorial: simples, direta e sem cartões genéricos. */
.features-layout {
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    gap: clamp(52px, 9vw, 120px);
    align-items: start;
}

.features-layout .section-heading {
    position: sticky;
    top: 120px;
}

.feature-list {
    border-top: 1px solid var(--line);
}

.feature-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0 30px;
    border-bottom: 1px solid var(--line);
}

.feature-row .feature-number {
    padding-top: 5px;
    color: var(--blue);
    font-size: .68rem;
    font-weight: 820;
    letter-spacing: .08em;
}

.feature-row h3 {
    margin: 0 0 8px;
    color: var(--navy-950);
    font-size: 1.12rem;
    font-weight: 740;
    letter-spacing: -.02em;
}

.feature-row p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.68;
}

@media (max-width: 820px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .features-layout .section-heading {
        position: static;
    }
}


/* =========================================================
   SITE OFICIAL
   ========================================================= */

.official {
    padding:
        clamp(85px, 9vw, 120px)
        0
        clamp(90px, 10vw, 130px);

    background: #fff;
}

.official-card {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(330px, .9fr);

    align-items: center;

    gap: clamp(45px, 7vw, 90px);

    overflow: hidden;

    padding:
        clamp(38px, 6vw, 70px);

    border-radius: var(--radius-xl);

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--navy-950) 0%,
            var(--navy-900) 48%,
            #09244c 100%
        );

    box-shadow:
        0 30px 70px rgba(6, 21, 45, .18);
}

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

    position: absolute;

    width: 420px;
    height: 420px;

    top: -240px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 111, 247, .3),
            transparent 65%
        );
}

.official-card::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .17;

    background-image:
        linear-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );

    background-size: 38px 38px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            black
        );
}

.official-content,
.official-link {
    position: relative;
    z-index: 2;
}

.official .section-label {
    color: #83bcff;
}

.official .section-label > span {
    background: #83bcff;
}

.official h2 {
    color: #fff;
}

.official-content > p:last-child {
    max-width: 560px;

    margin: 20px 0 0;

    color: #b7c5d9;

    font-size: 1rem;

    line-height: 1.75;
}


/* Link site */

.official-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    min-width: 0;

    padding: 20px 21px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 16px;

    color: #fff;

    background:
        rgba(255,255,255,.055);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    text-decoration: none;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s var(--ease);
}

.official-link:hover {
    background:
        rgba(255,255,255,.09);

    border-color:
        rgba(126, 184, 255, .35);

    transform: translateY(-2px);
}

.official-link-content {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.official-link small {
    color: #7eb8ff;

    font-size: .61rem;
    font-weight: 850;

    letter-spacing: .14em;
}

.official-link strong {
    overflow-wrap: anywhere;

    color: #fff;

    font-size: clamp(.95rem, 2vw, 1.15rem);
    font-weight: 700;
}

.official-link-arrow {
    flex: 0 0 auto;

    width: 41px;
    height: 41px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: #fff;

    background:
        rgba(1, 111, 247, .26);

    font-size: 1.2rem;

    transition:
        transform .3s var(--ease),
        background .3s ease;
}

.official-link:hover .official-link-arrow {
    transform:
        translate(2px, -2px);

    background:
        rgba(1, 111, 247, .42);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;

    border-top:
        1px solid var(--line-soft);

    background:
        #fbfcfe;
}

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

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

    gap: 40px;

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

.footer-brand {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.footer-brand img {
    display: block;

    width: 130px;
    height: auto;

    opacity: .92;
}

.footer-brand p {
    margin: 0;

    color: var(--muted);

    font-size: .81rem;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 8px 20px;
}

.footer-nav a {
    color: var(--muted);

    font-size: .82rem;
    font-weight: 600;

    text-decoration: none;

    transition:
        color .2s ease;
}

.footer-nav a:hover {
    color: var(--blue);
}


/* =========================================================
   ANIMAÇÕES DE ENTRADA
   ========================================================= */

.reveal {
    opacity: 1;

    transform: translate3d(0, 0, 0);

    transition:
        opacity .75s var(--ease),
        transform .75s var(--ease);
}

.reveal.reveal-pending {
    opacity: 0;

    transition:
        opacity .75s var(--ease),
        transform .75s var(--ease);

    will-change:
        opacity,
        transform;
}

.reveal-up {
    transform:
        translate3d(0, 30px, 0);
}

.reveal-left {
    transform:
        translate3d(-34px, 0, 0);
}

.reveal-right {
    transform:
        translate3d(34px, 0, 0);
}

.reveal.is-visible {
    opacity: 1;

    transform:
        translate3d(0, 0, 0);
}


/* Hero flutuando */

@keyframes heroFloat {
    0%,
    100% {
        transform:
            perspective(1200px)
            rotateY(-2deg)
            rotateX(1deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1200px)
            rotateY(-1deg)
            rotateX(.5deg)
            translateY(-8px);
    }
}


/* =========================================================
   TABLET / NOTEBOOK
   ========================================================= */

@media (max-width: 1020px) {

    :root {
        --max: 900px;
    }

    .hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, .8fr);

        gap: 50px;
    }

    .hero-title {
        font-size:
            clamp(3.6rem, 7vw, 4.5rem);
    }

    .visual-window {
        transform: none;
    }

    .identity-layout {
        gap: 60px;
    }

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

        gap: 40px;
    }

    .official-link {
        max-width: 580px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 820px) {

    :root {
        --page-padding: 24px;
    }

    .header-container {
        min-height: 82px;
    }

    .brand img {
        width: 150px;
    }

    .main-nav {
        gap: 2px;
    }

    .nav-link {
        padding-inline: 10px;
    }

    .login-link {
        margin-left: 4px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 58px;
    }

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

    .hero-title {
        max-width: none;

        font-size:
            clamp(3.6rem, 10vw, 4.5rem);
    }

    .hero-copy {
        max-width: 680px;
    }

    .hero-visual {
        width: min(100%, 650px);

        margin-inline: auto;
    }

    .visual-window {
        animation:
            heroFloatMobile
            7s ease-in-out infinite;
    }

    .identity-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .identity-content {
        max-width: 700px;
    }

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

    .feature-card {
        min-height: 260px;
    }

    .footer-container {
        align-items: flex-start;

        flex-direction: column;
    }

    .footer-nav {
        justify-content: flex-start;
    }
}

@keyframes heroFloatMobile {
    0%,
    100% {
        transform:
            translateY(0);
    }

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


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 620px) {

    :root {
        --page-padding: 18px;
    }

    .header-container {
        min-height: 76px;

        gap: 14px;
    }

    .brand img {
        width: 132px;
    }

    .main-nav {
        gap: 4px;
    }

    .nav-link:not(.is-active):not([aria-current="page"]) {
        display: none;
    }

    .nav-link {
        min-height: 39px;

        padding-inline: 10px;

        font-size: .84rem;
    }

    .login-link {
        min-height: 39px;

        margin-left: 0;

        padding-inline: 14px;

        font-size: .84rem;
    }

    .hero {
        padding:
            64px
            0
            76px;
    }

    .hero-grid-pattern {
        background-size:
            32px 32px;
    }

    .eyebrow {
        max-width: 92%;

        margin-bottom: 17px;

        font-size: .65rem;

        letter-spacing: .1em;
    }

    .hero-title {
        font-size:
            clamp(3.4rem, 17vw, 4.5rem);

        letter-spacing: -.067em;
    }

    .hero-copy {
        margin-top: 24px;

        font-size: 1rem;

        line-height: 1.65;
    }

    .hero-actions {
        margin-top: 28px;
    }

    .primary-link {
        min-height: 44px;

        padding-inline: 18px;

        border-radius: 12px;
    }

    .hero-visual {
        margin-top: 4px;
    }

    .visual-window {
        aspect-ratio: 1.15;

        border-radius: 18px;
    }

    .visual-window-header {
        height: 44px;

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

    .window-address {
        padding: 6px 10px;

        font-size: .58rem;
    }

    .visual-window-content {
        grid-template-columns:
            52px
            1fr;

        height:
            calc(100% - 44px);
    }

    .visual-sidebar {
        padding:
            14px 8px;

        gap: 11px;
    }

    .visual-sidebar-logo {
        width: 28px;
        height: 28px;
    }

    .visual-sidebar-item {
        width: 21px;
    }

    .visual-dashboard {
        padding: 16px;
    }

    .visual-stat-grid {
        gap: 7px;

        margin-top: 25px;
    }

    .visual-content-card {
        padding: 14px;
    }

    .identity,
    .features {
        padding:
            74px
            0;
    }

    h2 {
        font-size:
            clamp(2.1rem, 10vw, 2.8rem);
    }

    .identity-content > p {
        font-size: 1rem;

        line-height: 1.75;
    }

    .features {
        padding-bottom: 80px;
    }

    .section-heading-centered {
        text-align: left;
    }

    .section-heading-centered .section-label {
        justify-content: flex-start;
    }

    .section-heading > p:last-child {
        font-size: .96rem;
    }

    .feature-grid {
        margin-top: 40px;

        gap: 13px;
    }

    .feature-card {
        min-height: 0;

        padding: 28px;

        border-radius: 16px;
    }

    .feature-card h3 {
        margin-top: 40px;
    }

    .feature-line {
        margin-top: 16px;
    }

    .official {
        padding:
            70px
            0
            80px;
    }

    .official-card {
        gap: 34px;

        padding: 31px 25px;

        border-radius: 21px;
    }

    .official-link {
        gap: 14px;

        padding: 16px;
    }

    .official-link-arrow {
        width: 37px;
        height: 37px;
    }

    .footer-container {
        min-height: 0;

        padding-top: 35px;
        padding-bottom: 42px;
    }

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

        gap: 15px;
    }
}


/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media (max-width: 390px) {

    :root {
        --page-padding: 15px;
    }

    .brand img {
        width: 118px;
    }

    .header-container {
        gap: 9px;
    }

    .nav-link {
        padding-inline: 8px;
    }

    .login-link {
        padding-inline: 12px;
    }

    .hero-title {
        font-size:
            clamp(3.15rem, 17vw, 4rem);
    }

    .primary-link {
        width: auto;

        justify-content: space-between;
    }

    .visual-window {
        border-radius: 15px;
    }

    .visual-sidebar {
        display: none;
    }

    .visual-window-content {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 24px;
    }

    .official-card {
        padding:
            28px
            21px;
    }

    .official-link {
        align-items: flex-start;
    }
}


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

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .001ms !important;
    }

    .reveal {
        opacity: 1 !important;

        transform: none !important;
    }

    .visual-window {
        transform: none !important;
    }
}
