:root {
    --font-body: "Cabinet Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-display: "Cabinet Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --bg: #020204;
    --panel: rgba(37, 99, 235, 0.12);
    --panel-border: rgba(96, 165, 250, 0.28);
    --brand-gradient: linear-gradient(135deg, #ffc31a 0%, #ff8a00 20%, #ff4d14 48%, #ff003c 74%, #ef00b8 100%);
    --brand-line-soft: rgba(255, 120, 32, 0.38);
    --brand-line-strong: rgba(239, 0, 184, 0.4);
    --text: #f7f7fb;
    --muted: #a3a0b8;
    --glow: #60a5fa;
    --glow-strong: rgba(59, 130, 246, 0.42);
    --button-text: #050507;
    --button-bg: #ffffff;
    --button-bg-hover: #eceaf6;
    --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
    --card-bg: rgba(15, 15, 20, 0.6);
    --glass-bg: rgba(10, 14, 28, 0.78);
    --hero-heading: #ffffff;
    --heading-gradient: linear-gradient(180deg, #ffffff 0%, #ddd8f1 48%, #7c7790 100%);
}

* {
    box-sizing: border-box;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top center, rgba(20, 64, 160, 0.28), transparent 32rem),
        linear-gradient(180deg, #040407 0%, #010103 100%);
    color: var(--text);
    overflow-x: hidden;
    color-scheme: dark;
}

.site-ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.site-ambient::before {
    content: "";
    position: absolute;
    inset: 0;
    display: none;
    background-image: url("assets/mobile-aether-bg2.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-canvas,
.hero-noise,
.hero-glow,
.site-vignette {
    position: absolute;
    inset: 0;
}

.hero-canvas {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.96;
}

.hero-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: grid;
    place-items: center;
    isolation: isolate;
    z-index: 1;
}

.hero-noise {
    z-index: 1;
    opacity: 0.2;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.07) 0.7px, transparent 0.7px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
    pointer-events: none;
}

.hero-glow {
    z-index: 1;
    pointer-events: none;
    filter: blur(110px);
    opacity: 0.9;
}

.hero-glow-left {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.34) 0%, transparent 62%);
    transform: translate(-38%, -14%);
}

.hero-glow-right {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.28) 0%, transparent 64%);
    transform: translate(46%, 18%);
}

.site-vignette {
    z-index: 2;
    background:
        radial-gradient(circle at 50% 18%, transparent 0 16rem, rgba(1, 1, 3, 0.1) 30rem, rgba(1, 1, 3, 0.42) 58rem),
        linear-gradient(180deg, rgba(2, 2, 4, 0.04) 0%, rgba(2, 2, 4, 0.34) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, 62rem);
    padding: 2rem;
    text-align: center;
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shell::before {
    z-index: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.12), transparent 16rem),
        radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.2), transparent 30rem),
        conic-gradient(from 180deg at 50% 12%, rgba(96, 165, 250, 0.12), transparent 22%, transparent 78%, rgba(96, 165, 250, 0.12)),
        radial-gradient(circle at 50% 30%, rgba(255, 77, 20, 0.08), transparent 24rem);
    opacity: 0.95;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.72rem;
}

.social-icons-hero {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 4;
    margin: 0;
}

.social-icon {
    position: relative;
    width: 1.44rem;
    height: 1.44rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 0.55rem;
    color: inherit;
    text-decoration: none;
    background:
        linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
        var(--brand-gradient) border-box;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 10px 24px rgba(0, 0, 0, 0.22),
        0 0 20px rgba(255, 84, 46, 0.08);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.social-icon .icon {
    width: 1.64rem;
    height: 1.64rem;
    flex: 0 0 auto;
    transform: translate(0, 0);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 14px 28px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(255, 84, 46, 0.12);
}

.social-icon:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.88);
    outline-offset: 4px;
}

.icon {
    display: block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
}

.icon-stroke {
    fill: none;
    stroke: url(#iconGradient);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-icon::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    clip-path: inherit;
    pointer-events: none;
}

.hero-cta .icon {
    width: 1.15rem;
    height: 1.15rem;
}

.hero-title-wrap {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: min(100%, 50rem);
    margin-bottom: 1.5rem;
}

.hero-title-logo {
    display: block;
    height: clamp(15.625rem, 37.5vw, 25rem);
    width: auto;
    max-width: min(100%, 50rem);
    margin: 0 auto;
    opacity: 0;
    animation:
        hero-logo-glow-reveal 3.4s cubic-bezier(0.22, 1, 0.36, 1) 1.05s both,
        hero-logo-float 5.8s ease-in-out 4.65s infinite;
    will-change: transform, opacity, filter;
    filter:
        drop-shadow(0 0 18px rgba(255, 255, 255, 0.08))
        drop-shadow(0 0 54px rgba(96, 165, 250, 0.22))
        drop-shadow(0 0 96px rgba(255, 82, 42, 0.1));
}

.hero-logo-fallback {
    display: none;
    width: min(100%, 46rem);
    height: auto;
    overflow: visible;
    opacity: 0;
    animation: hero-logo-glow-reveal 3.4s cubic-bezier(0.22, 1, 0.36, 1) 1.05s both;
    filter:
        drop-shadow(0 0 18px rgba(255, 255, 255, 0.08))
        drop-shadow(0 0 54px rgba(96, 165, 250, 0.2));
}

.hero-logo-fallback text {
    fill: url(#heroLogoFallbackGradient);
    font-family: var(--font-display);
    font-size: 8.4rem;
    font-weight: 800;
    letter-spacing: -0.075em;
}

.hero-title-wrap.logo-failed .hero-title-logo {
    display: none;
}

.hero-title-wrap.logo-failed .hero-logo-fallback {
    display: block;
}

.hero-kicker {
    width: min(100%, 42rem);
    margin: -0.35rem auto 1.15rem;
    color: #dbeafe;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-wrap: balance;
    text-shadow:
        0 0 22px rgba(96, 165, 250, 0.22),
        0 0 34px rgba(255, 84, 46, 0.08);
}

.hero-title-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    margin: 0 0 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--hero-heading);
    text-wrap: balance;
}

.hero-copy {
    width: min(100%, 42rem);
    margin: 0 auto 2rem;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    line-height: 1.75;
    color: #c8d2eb;
    text-shadow: 0 0 28px rgba(15, 23, 42, 0.38);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.55rem;
    border: 0;
    border-radius: 0.95rem;
    background: var(--button-bg);
    color: var(--button-text);
    font-weight: 700;
    font: inherit;
    cursor: pointer;
    box-shadow:
        var(--shadow),
        0 0 48px rgba(255, 255, 255, 0.08),
        0 0 80px rgba(96, 165, 250, 0.2);
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.hero-cta-link {
    text-decoration: none;
}

.hero-cta-link:visited {
    color: var(--button-text);
}

.hero-cta:hover {
    background: var(--button-bg-hover);
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.52),
        0 0 56px rgba(255, 255, 255, 0.12),
        0 0 94px rgba(96, 165, 250, 0.28);
}

.hero-cta:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.92);
    outline-offset: 4px;
}

.service-topics {
    width: min(100%, 48rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.58rem 1rem;
    padding: 0;
    margin: 1.4rem auto 0;
    list-style: none;
}

.service-topics li {
    position: relative;
    padding-left: 0.88rem;
    color: #dbeafe;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 18px rgba(96, 165, 250, 0.12);
}

.service-topics li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--brand-gradient);
    transform: translateY(-50%);
    box-shadow: 0 0 14px rgba(255, 132, 0, 0.28);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-1 {
    animation-delay: 0.45s;
}

.reveal-2 {
    animation-delay: 0.7s;
}

.reveal-3 {
    animation-delay: 0.95s;
}

.reveal-4 {
    animation-delay: 1.2s;
}

.reveal-on-scroll {
    animation-play-state: paused;
}

.reveal-on-scroll.reveal-visible {
    animation-play-state: running;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-logo-glow-reveal {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.985);
        filter:
            blur(12px)
            drop-shadow(0 0 0 rgba(255, 255, 255, 0))
            drop-shadow(0 0 0 rgba(96, 165, 250, 0))
            drop-shadow(0 0 0 rgba(255, 82, 42, 0));
    }

    58% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter:
            blur(0)
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.08))
            drop-shadow(0 0 64px rgba(96, 165, 250, 0.28))
            drop-shadow(0 0 112px rgba(255, 82, 42, 0.16));
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter:
            drop-shadow(0 0 18px rgba(255, 255, 255, 0.08))
            drop-shadow(0 0 54px rgba(96, 165, 250, 0.22))
            drop-shadow(0 0 96px rgba(255, 82, 42, 0.1));
    }
}

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

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

@media (max-width: 640px) {
    .hero-shell {
        min-height: 92svh;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title-logo {
        height: clamp(12.5rem, 42.5vw, 18.75rem);
        max-width: 100%;
        animation: hero-logo-glow-reveal 3.4s cubic-bezier(0.22, 1, 0.36, 1) 1.05s both;
        filter:
            drop-shadow(0 0 12px rgba(255, 255, 255, 0.06))
            drop-shadow(0 0 32px rgba(96, 165, 250, 0.16))
            drop-shadow(0 0 54px rgba(255, 82, 42, 0.08));
    }

    .hero-logo-fallback {
        width: min(100%, 24rem);
    }

    .hero-logo-fallback text {
        font-size: 7.4rem;
    }

    .hero-kicker {
        margin-top: -0.15rem;
        font-size: 0.9rem;
    }

    .hero-copy {
        line-height: 1.6;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   ESTILOS DAS NOVAS SEÇÕES DA LANDING PAGE
   ========================================= */

.section {
    padding: 6rem 1rem;
    position: relative;
    z-index: 2;
}

@supports (content-visibility: auto) {
    .section {
        content-visibility: auto;
        contain-intrinsic-size: 760px;
    }
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.06), transparent 30rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 10rem);
    pointer-events: none;
}

.section-alt {
    background: rgba(6, 10, 20, 0.2);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    position: relative;
}

.section-alt::after {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: var(--brand-gradient) 1;
    opacity: 0.26;
    pointer-events: none;
}

.container {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.container-narrow {
    max-width: 800px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-wrap: balance;
}

.section-title.text-left {
    text-align: left;
}

.section-title-inline {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    justify-content: flex-start;
}

.section-title-mark {
    flex: 0 0 auto;
    width: clamp(1.9rem, 3.2vw, 2.6rem);
    height: clamp(1.9rem, 3.2vw, 2.6rem);
    filter:
        drop-shadow(0 0 18px rgba(255, 84, 46, 0.14))
        drop-shadow(0 0 32px rgba(239, 0, 184, 0.12));
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.align-center {
    align-items: center;
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid transparent;
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 195, 26, 0.42), rgba(255, 0, 60, 0.28), rgba(239, 0, 184, 0.4));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 40px rgba(59, 130, 246, 0.15),
        0 0 34px rgba(239, 0, 184, 0.08);
}

.card-icon {
    position: relative;
    width: 4.65rem;
    height: 4.65rem;
    display: inline-grid;
    place-items: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
        rgba(8, 12, 24, 0.88);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 12px 32px rgba(0, 0, 0, 0.24),
        0 0 26px rgba(255, 77, 20, 0.12),
        0 0 44px rgba(239, 0, 184, 0.1);
    clip-path: polygon(16% 0, 100% 0, 100% 84%, 84% 100%, 0 100%, 0 16%);
}

.card-icon .icon {
    width: 2rem;
    height: 2rem;
    filter: drop-shadow(0 0 12px rgba(255, 92, 34, 0.18));
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: var(--hero-heading);
    letter-spacing: -0.02em;
}

.card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Box de destaque */
.highlight-box {
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(37,99,235,0.1), transparent);
    border-left: 4px solid transparent;
    border-image: var(--brand-gradient) 1;
    border-radius: 0 1rem 1rem 0;
    text-align: center;
}

.highlight-box p {
    margin: 0;
    font-size: 1.2rem;
    color: #e2e8f0;
}

.highlight-box strong {
    color: var(--hero-heading);
}

.proof-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: -1.35rem 0 3rem;
}

.proof-metrics-authority {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 2rem 0 0;
}

.proof-metrics-authority .proof-metric {
    min-height: 8.65rem;
    padding: 0.92rem;
}

.proof-metrics-authority .proof-terminal-top {
    gap: 0.24rem;
    margin-bottom: 0.62rem;
}

.proof-metrics-authority .proof-terminal-top span {
    width: 0.38rem;
}

.proof-metrics-authority .proof-metric-statement {
    max-width: 72%;
    font-size: 0.73rem;
}

.proof-metrics-authority .proof-pulse-chart {
    right: 0.38rem;
    bottom: 0.36rem;
    width: 36%;
    height: 2.25rem;
}

.proof-metric {
    position: relative;
    overflow: hidden;
    min-height: 10.5rem;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
        #05070d;
    box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.22),
        0 0 38px rgba(255, 84, 46, 0.08);
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.proof-metric > :not(.proof-pulse-chart) {
    position: relative;
    z-index: 1;
}

.proof-terminal-top {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.proof-terminal-top span {
    width: 0.52rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ff4d14;
}

.proof-terminal-top span:nth-child(2) {
    background: #ffc31a;
}

.proof-terminal-top span:nth-child(3) {
    background: #ef00b8;
}

.proof-metric-statement {
    max-width: 58%;
    margin: 0;
    color: #c8d2eb;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.42;
}

.proof-metric-number {
    display: inline-block;
    color: #ffe7d7;
    font-size: 2.18em;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-shadow:
        0 0 18px rgba(255, 132, 0, 0.26),
        0 0 28px rgba(239, 0, 184, 0.14);
}

.proof-pulse-chart {
    position: absolute;
    right: 0.55rem;
    bottom: 0.45rem;
    width: 48%;
    height: 3.5rem;
    overflow: visible;
    opacity: 0.76;
    filter: drop-shadow(0 0 12px rgba(255, 132, 0, 0.32));
}

.proof-pulse-chart circle {
    filter: drop-shadow(0 0 10px rgba(255, 132, 0, 0.52));
}

.certification-stack {
    margin-top: 1.35rem;
}

.certification-title {
    margin: 0 0 0.8rem;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.certification-copy {
    max-width: 48rem;
    margin: -0.25rem 0 1rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.certification-grid-fallback {
    display: none;
}

.certification-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.12rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent);
}

.certification-track {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: max-content;
    animation: certification-scroll 38s linear infinite;
    will-change: transform;
}

.certification-badge {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 3.1rem;
    width: 15rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.85rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        rgba(5, 7, 13, 0.82);
    color: #c8d2eb;
    font-size: 0.72rem;
    line-height: 1.25;
}

.certification-logo {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.65rem;
    background:
        rgba(255, 255, 255, 0.06)
        center / 1.45rem 1.45rem
        no-repeat;
    color: transparent;
    font-size: 0;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 18px rgba(255, 84, 46, 0.12);
}

.certification-badge:nth-child(10n + 1) .certification-logo,
.certification-badge:nth-child(10n + 2) .certification-logo,
.certification-badge:nth-child(10n + 3) .certification-logo {
    background-image: url("assets/certifications/aws.svg");
}

.certification-badge:nth-child(10n + 4) .certification-logo {
    background-image: url("assets/certifications/google-cloud.svg");
}

.certification-badge:nth-child(10n + 5) .certification-logo {
    background-image: url("assets/certifications/microsoft.svg");
}

.certification-badge:nth-child(10n + 6) .certification-logo {
    background-image: url("assets/certifications/openai.svg");
}

.certification-badge:nth-child(10n + 7) .certification-logo {
    background-image: url("assets/certifications/google.svg");
}

.certification-badge:nth-child(10n + 8) .certification-logo {
    background-image: url("assets/certifications/anthropic.svg");
}

.certification-badge:nth-child(10n + 9) .certification-logo {
    background-image: url("assets/certifications/ai-fluency.svg");
}

.certification-badge:nth-child(10n) .certification-logo {
    background-image: url("assets/certifications/meta.svg");
}

.certification-badge .certification-logo.certification-logo-aws {
    background-image: url("assets/certifications/aws.svg");
}

.certification-badge .certification-logo.certification-logo-google-cloud {
    background-image: url("assets/certifications/google-cloud.svg");
}

.certification-badge .certification-logo.certification-logo-microsoft {
    background-image: url("assets/certifications/microsoft.svg");
}

.certification-badge .certification-logo.certification-logo-openai {
    background-image: url("assets/certifications/openai.svg");
}

.certification-badge .certification-logo.certification-logo-google {
    background-image: url("assets/certifications/google.svg");
}

.certification-badge .certification-logo.certification-logo-anthropic {
    background-image: url("assets/certifications/anthropic.svg");
}

.certification-badge .certification-logo.certification-logo-ai-fluency {
    background-image: url("assets/certifications/ai-fluency.svg");
}

.certification-badge .certification-logo.certification-logo-meta {
    background-image: url("assets/certifications/meta.svg");
}

@keyframes certification-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.325rem));
    }
}

/* Autoridade Section */
.content-text p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-text .highlight {
    color: #fff;
    font-weight: 500;
    border-left: 2px solid transparent;
    border-image: var(--brand-gradient) 1;
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.2), transparent);
    border: 1px dashed transparent;
    border-image: var(--brand-gradient) 1;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--glow-strong);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 0 40px rgba(255, 84, 46, 0.08);
}

.image-placeholder-thumb {
    width: min(100%, 22.5rem);
    aspect-ratio: 4 / 5;
    margin-inline: auto;
    padding: 0.65rem;
    background:
        linear-gradient(rgba(15, 15, 20, 0.82), rgba(15, 15, 20, 0.82)) padding-box,
        linear-gradient(135deg, rgba(255, 195, 26, 0.42), rgba(255, 0, 60, 0.28), rgba(239, 0, 184, 0.4)) border-box;
    border: 1px solid transparent;
    border-radius: 1.6rem;
    overflow: hidden;
}

.authority-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 1.15rem;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.24),
        0 0 24px rgba(255, 84, 46, 0.08);
}

.image-placeholder .icon {
    filter:
        drop-shadow(0 0 30px rgba(255, 84, 46, 0.18))
        drop-shadow(0 0 54px rgba(239, 0, 184, 0.14));
}

/* Feature List (Soluções) */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--muted);
    line-height: 1.5;
}

.feature-list li .icon {
    flex: 0 0 auto;
    width: 1.8rem;
    height: 1.8rem;
    display: inline-grid;
    place-items: center;
    margin-top: 0.05rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.55rem;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.01)),
        rgba(10, 14, 28, 0.9);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 0 18px rgba(255, 84, 46, 0.12);
    padding: 0.35rem;
}

.feature-list li strong {
    color: #fff;
    display: block;
    margin-bottom: 0.2rem;
}

/* Passos (Como Funciona) */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
    padding: 2rem;
    border-radius: 1.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 195, 26, 0.26), rgba(255, 0, 60, 0.12), rgba(239, 0, 184, 0.24));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.step-num {
    font-size: 4rem;
    font-weight: 700;
    color: transparent;
    background-image: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 1px rgba(255, 170, 60, 0.55);
    line-height: 1;
}

.step-content h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 1.4rem;
}

.step-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(255, 195, 26, 0.26), rgba(255, 0, 60, 0.22), rgba(239, 0, 184, 0.26)) 1;
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.faq-question:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.92);
    outline-offset: 6px;
    border-radius: 0.7rem;
}

.faq-question .faq-icon {
    width: 2rem;
    height: 2rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.7rem;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01)),
        rgba(10, 14, 28, 0.9);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 0 18px rgba(239, 0, 184, 0.08);
    transition: transform 0.3s ease;
    padding: 0.38rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--muted);
    line-height: 1.6;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-answer.active {
    margin-top: 1rem;
    max-height: 340px;
    opacity: 1;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: radial-gradient(circle at bottom center, rgba(37, 99, 235, 0.15), transparent 60%);
    padding: 8rem 1rem;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.cta-email {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.cta-email a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.cta-email a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.72);
}

.cta-scarcity {
    max-width: 46rem;
    margin: 1.5rem auto 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-scarcity .icon {
    width: 1.6rem;
    height: 1.6rem;
    display: inline-grid;
    place-items: center;
    border-radius: 0.55rem;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01)),
        rgba(10, 14, 28, 0.88);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 0 16px rgba(255, 132, 0, 0.12);
    padding: 0.28rem;
}

.filmstrip-marquee {
    position: relative;
    margin-top: 2.2rem;
    padding: 0.25rem 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.filmstrip-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: filmstrip-scroll 34s linear infinite;
    will-change: transform;
}

.filmstrip-frame {
    flex: 0 0 auto;
    width: clamp(4.25rem, 7vw, 5.5rem);
    padding: 0;
    border-radius: 1rem;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.filmstrip-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 309 / 296;
    object-fit: cover;
    border-radius: 0.85rem;
    opacity: 0.4;
}

@keyframes filmstrip-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

/* Footer */
.footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--muted);
    font-size: 0.9rem;
}

.social-icons-footer {
    margin-bottom: 1rem;
}

.social-icons-footer .social-icon {
    width: 1.24rem;
    height: 1.24rem;
}

.social-icons-footer .social-icon .icon {
    width: 1.44rem;
    height: 1.44rem;
}

/* Utility Animations */
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@media (max-width: 768px) {
    .site-ambient {
        opacity: 0.92;
    }

    .site-ambient::before {
        display: block;
    }

    .hero-canvas {
        display: none;
    }

    .hero-noise {
        opacity: 0.04;
        background-size: 42px 42px;
    }

    .hero-glow {
        filter: blur(42px);
        opacity: 0.3;
    }

    .hero-glow-left {
        transform: translate(-44%, -18%);
    }

    .hero-glow-right {
        transform: translate(54%, 20%);
    }

    .site-vignette {
        background:
            radial-gradient(circle at 50% 16%, transparent 0 12rem, rgba(1, 1, 3, 0.08) 24rem, rgba(1, 1, 3, 0.3) 44rem),
            linear-gradient(180deg, rgba(2, 2, 4, 0.02) 0%, rgba(2, 2, 4, 0.2) 100%);
    }

    .hero-shell::before {
        opacity: 0.58;
        background:
            radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 12rem),
            radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.12), transparent 22rem),
            radial-gradient(circle at 50% 26%, rgba(255, 77, 20, 0.05), transparent 18rem);
    }

    .hero-content {
        width: min(100%, 34rem);
    }

    .social-icons-hero {
        position: relative;
        top: auto;
        right: auto;
        width: fit-content;
        margin: 0 auto 0.9rem;
        gap: 0.45rem;
    }

    .social-icons-hero .social-icon {
        width: 1.14rem;
        height: 1.14rem;
        border-radius: 0.45rem;
    }

    .social-icons-hero .social-icon .icon {
        width: 1.24rem;
        height: 1.24rem;
    }

    .card {
        backdrop-filter: none;
    }

    .hero-copy {
        width: min(100%, 32rem);
    }

    .proof-metrics {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin: -1rem 0 2.2rem;
    }

    .proof-metrics-authority {
        grid-template-columns: 1fr;
        margin: 2rem 0 0;
    }

    .proof-metrics-authority .proof-metric {
        min-height: 8.5rem;
        padding: 1.15rem;
    }

    .proof-metrics-authority .proof-terminal-top {
        gap: 0.35rem;
        margin-bottom: 1rem;
    }

    .proof-metrics-authority .proof-terminal-top span {
        width: 0.52rem;
    }

    .proof-metrics-authority .proof-metric-statement {
        max-width: 56%;
        font-size: 0.94rem;
    }

    .proof-metrics-authority .proof-pulse-chart {
        right: 0.55rem;
        bottom: 0.45rem;
        width: 43%;
        height: 3.15rem;
    }

    .proof-metric {
        min-height: 8.5rem;
        padding: 1.15rem;
    }

    .proof-metric-statement {
        max-width: 56%;
    }

    .proof-pulse-chart {
        width: 43%;
        height: 3.15rem;
    }

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

    .certification-marquee {
        display: block;
    }

    .certification-grid-fallback {
        display: none;
    }

    .certification-track {
        animation: certification-scroll 42s linear infinite;
    }

    .certification-badge {
        font-size: 0.78rem;
        width: 14rem;
    }

    .hero-title-logo {
        filter:
            drop-shadow(0 0 8px rgba(255, 255, 255, 0.05))
            drop-shadow(0 0 18px rgba(96, 165, 250, 0.1))
            drop-shadow(0 0 30px rgba(255, 82, 42, 0.05));
    }

    .social-icon,
    .card-icon,
    .faq-question .faq-icon,
    .cta-scarcity .icon {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.02) inset,
            0 8px 18px rgba(0, 0, 0, 0.18);
    }

    .card-icon .icon,
    .social-icon .icon,
    .image-placeholder .icon,
    .section-title-mark {
        filter: none;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-title.text-left {
        text-align: center;
    }

    .section-title-inline {
        justify-content: center;
    }
    
    .image-placeholder {
        display: none;
    }

    .filmstrip-track {
        gap: 1.35rem;
        animation-duration: 46s;
    }

    .filmstrip-frame {
        width: 3.75rem;
    }

    .filmstrip-frame img {
        opacity: 0.32;
        border-radius: 0.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero-title-logo,
    .hero-logo-fallback {
        opacity: 1;
        transform: none;
        animation: none;
        will-change: auto;
        filter: none;
    }

    .hero-cta,
    .social-icon,
    .card {
        transition: none;
    }

    .filmstrip-track,
    .certification-track {
        animation: none !important;
        transform: none;
    }

    .certification-marquee {
        display: none !important;
    }

    .certification-grid-fallback {
        display: grid !important;
    }
}
