/* LisFilms 1.8 — Website oficial da PAP */

:root {
    --bg: #121212;
    --bg-deep: #0a0a0a;
    --surface: #1e1e1e;
    --surface-alt: #181818;
    --surface-soft: #242424;
    --text: #ffffff;
    --text-soft: #b5b5b5;
    --text-muted: #777777;
    --accent: #1ed760;
    --accent-hover: #24e66a;
    --accent-dark: #0d7f37;
    --accent-soft: rgba(30, 215, 96, 0.11);
    --border: #2f2f2f;
    --border-light: rgba(255, 255, 255, 0.11);
    --shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
    --container: 1180px;
    --header-height: 78px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 15% -4%, rgba(30, 215, 96, 0.08), transparent 32rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

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

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

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

::selection {
    background: var(--accent);
    color: #07130b;
}

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

.section {
    position: relative;
    padding: 118px 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 11px 15px;
    transform: translateY(-160%);
    border-radius: 10px;
    background: var(--accent);
    color: #06110a;
    font-weight: 850;
}

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

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.kicker::before {
    width: 23px;
    height: 1px;
    background: currentColor;
    content: "";
}

.section-heading h2,
.section-top h2,
.language-card h2,
.download-card h2 {
    margin: 0;
    font-size: clamp(2.35rem, 5.2vw, 4.65rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.section-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.52fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 58px;
}

.section-top > p {
    margin: 0 0 6px;
    color: var(--text-soft);
    font-size: 1rem;
}

/* Header */

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition:
        background var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);
}

.site-header.scrolled {
    border-color: rgba(255, 255, 255, 0.07);
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

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

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand span {
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand .lis { color: #ffffff; }
.brand .films { color: var(--accent); }

.navigation {
    display: flex;
    align-items: center;
    gap: 29px;
}

.navigation > a {
    position: relative;
    color: var(--text-soft);
    font-size: 0.87rem;
    font-weight: 680;
    transition: color var(--transition);
}

.navigation > a:not(.nav-download)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    border-radius: 2px;
    background: var(--accent);
    content: "";
    transition: transform var(--transition);
}

.navigation > a:hover,
.navigation > a.active {
    color: var(--text);
}

.navigation > a:hover::after,
.navigation > a.active::after {
    transform: scaleX(1);
}

.navigation .nav-download {
    padding: 10px 17px;
    border: 1px solid rgba(30, 215, 96, 0.28);
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
}

.navigation .nav-download:hover {
    border-color: rgba(30, 215, 96, 0.5);
    background: rgba(30, 215, 96, 0.17);
}

.navigation {
    margin-left: auto;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 22px;
}

.lang-switch {
    display: inline-flex;
    padding: 3px;
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
}

.lang-switch button {
    padding: 6px 9px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-soft);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.lang-switch button:hover {
    color: var(--text);
}

.lang-switch button.active {
    background: var(--accent);
    color: #07120b;
}

.menu-button {
    display: none;
    width: 45px;
    height: 45px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
    position: relative;
    display: flex;
    min-height: 850px;
    padding-top: calc(var(--header-height) + 76px);
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.87fr) minmax(530px, 1.13fr);
    align-items: center;
    gap: 78px;
}

.eyebrow {
    display: inline-flex;
    padding: 8px 12px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(30, 215, 96, 0.24);
    border-radius: 999px;
    background: rgba(30, 215, 96, 0.07);
    color: #baf6cf;
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.035em;
}

.eyebrow > span:first-child {
    width: 7px;
    height: 7px;
    flex: none;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(30, 215, 96, 0.12);
}

.hero h1 {
    margin: 26px 0 24px;
    font-size: clamp(3.45rem, 7vw, 6.75rem);
    line-height: 0.92;
    letter-spacing: -0.078em;
}

.hero h1 em {
    color: var(--accent);
    font-style: normal;
}

.hero-content > p {
    max-width: 625px;
    margin: 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.65vw, 1.13rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 53px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 0.9rem;
    font-weight: 850;
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

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

.button svg {
    width: 18px;
}

.button-primary {
    background: var(--accent);
    color: #06120a;
    box-shadow: 0 16px 36px rgba(30, 215, 96, 0.19);
}

.button-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 20px 42px rgba(30, 215, 96, 0.27);
}

.button-secondary {
    border-color: var(--border-light);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.055);
}

.button-large {
    min-height: 58px;
    padding-inline: 26px;
}

.hero-meta {
    display: flex;
    gap: 33px;
    margin-top: 43px;
}

.hero-meta > div {
    display: grid;
}

.hero-meta strong {
    font-size: 1.25rem;
    line-height: 1;
}

.hero-meta span {
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 0.69rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.hero-visual {
    position: relative;
    perspective: 1300px;
}

.visual-glow {
    position: absolute;
    inset: -15% -12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 215, 96, 0.12), transparent 65%);
    filter: blur(12px);
}

.app-frame,
.showcase-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 23px;
    background: #0b0b0b;
    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.52),
        inset 0 1px rgba(255, 255, 255, 0.05);
}

.app-frame {
    transform: rotateY(-3deg) rotateX(1deg);
}

.app-frame-bar,
.showcase-bar {
    display: grid;
    height: 46px;
    padding: 0 15px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: #181818;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #424242;
}

.window-dots i:first-child { background: #e45c5c; }
.window-dots i:nth-child(2) { background: #d5af40; }
.window-dots i:last-child { background: var(--accent); }

.app-frame-bar > span,
.showcase-bar > span {
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 750;
}

.app-frame-bar > b,
.showcase-bar > b {
    justify-self: end;
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 850;
}

.app-frame > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.floating-note {
    position: absolute;
    z-index: 4;
    display: flex;
    padding: 12px 14px;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    background: rgba(24, 24, 24, 0.88);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
}

.note-social {
    top: 36px;
    right: -35px;
}

.note-media {
    bottom: 34px;
    left: -42px;
}

.note-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 9px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 900;
}

.floating-note > div {
    display: grid;
}

.floating-note small {
    color: var(--text-muted);
    font-size: 0.54rem;
}

.floating-note strong {
    font-size: 0.64rem;
}

.hero-gradient {
    position: absolute;
    right: -280px;
    bottom: -290px;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(30, 215, 96, 0.07);
    border-radius: 50%;
}

.hero-gradient::before,
.hero-gradient::after {
    position: absolute;
    border: 1px solid rgba(30, 215, 96, 0.05);
    border-radius: inherit;
    content: "";
}

.hero-gradient::before { inset: 95px; }
.hero-gradient::after { inset: 195px; }

/* Platform strip */

.platform-strip {
    border-block: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.012);
}

.platform-list {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.platform-list i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.65;
}

/* Intro */

.intro-section {
    background:
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012)),
        var(--bg);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 105px;
}

.intro-copy {
    padding-top: 40px;
}

.intro-copy > p {
    margin: 0 0 22px;
    color: var(--text-soft);
    font-size: 1.03rem;
}

.intro-highlight {
    display: grid;
    margin-top: 34px;
    padding: 20px;
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 14px;
    border: 1px solid rgba(30, 215, 96, 0.25);
    border-radius: 16px;
    background: var(--accent-soft);
}

.intro-highlight span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(30, 215, 96, 0.24);
    border-radius: 11px;
    color: var(--accent);
    font-size: 0.67rem;
    font-weight: 850;
}

.intro-highlight p {
    margin: 0;
    color: #d1d8d3;
    font-size: 0.88rem;
}

/* Features */

.features-section {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(circle at 82% 18%, rgba(30, 215, 96, 0.055), transparent 25rem),
        var(--bg-deep);
}

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

.feature-card {
    position: relative;
    min-height: 292px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent),
        var(--surface-alt);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 215, 96, 0.28);
    background:
        linear-gradient(145deg, rgba(30, 215, 96, 0.045), transparent),
        var(--surface);
}

.feature-card-wide {
    display: grid;
    min-height: 340px;
    grid-column: span 2;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.9fr);
    gap: 28px;
}

.feature-icon {
    display: grid;
    width: 49px;
    height: 49px;
    margin-bottom: 44px;
    place-items: center;
    border: 1px solid rgba(30, 215, 96, 0.25);
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
}

.feature-icon svg {
    width: 22px;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 1.22rem;
    letter-spacing: -0.03em;
}

.feature-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.feature-index {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #4b4b4b;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.feature-copy > span {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--accent);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-feed {
    display: grid;
    align-self: end;
    gap: 9px;
}

.mini-feed > div {
    display: grid;
    padding: 14px;
    grid-template-columns: 32px 1fr;
    column-gap: 10px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(0, 0, 0, 0.17);
}

.mini-feed b {
    display: grid;
    width: 32px;
    height: 32px;
    grid-row: span 2;
    place-items: center;
    border-radius: 9px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.58rem;
}

.mini-feed p {
    color: var(--text);
    font-size: 0.66rem;
}

.mini-feed p strong {
    color: var(--accent);
}

.mini-feed span {
    color: var(--text-muted);
    font-size: 0.55rem;
}

/* Showcase */

.showcase-section {
    background:
        linear-gradient(90deg, rgba(30, 215, 96, 0.025), transparent 42%),
        var(--bg);
}

.showcase-tabs {
    display: flex;
    margin-bottom: 17px;
    padding: 5px;
    gap: 4px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-alt);
    scrollbar-width: none;
}

.showcase-tabs::-webkit-scrollbar {
    display: none;
}

.showcase-tab {
    flex: 1 0 auto;
    min-width: 120px;
    padding: 11px 15px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--text-soft);
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.showcase-tab:hover {
    color: var(--text);
}

.showcase-tab.active {
    background: var(--accent);
    color: #06120a;
}

.showcase-window {
    cursor: zoom-in;
}

.showcase-image-wrap {
    position: relative;
    overflow: hidden;
    background: #0b0b0b;
}

.showcase-image-wrap::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    content: "";
}

.showcase-image-wrap img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: opacity 180ms ease, transform 420ms ease;
}

.showcase-window:hover img {
    transform: scale(1.01);
}

.showcase-image-wrap img.changing {
    opacity: 0;
}

.showcase-details {
    display: grid;
    margin-top: 17px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.showcase-details article {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface-alt);
}

.showcase-details span {
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-details h3 {
    margin: 8px 0 7px;
    font-size: 1rem;
}

.showcase-details p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.76rem;
}

/* Language */

.language-section {
    padding-top: 25px;
    background: var(--bg);
}

.language-card {
    position: relative;
    display: grid;
    min-height: 390px;
    padding: 58px;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: 70px;
    border: 1px solid rgba(30, 215, 96, 0.25);
    border-radius: 30px;
    background:
        radial-gradient(circle at 85% 20%, rgba(30, 215, 96, 0.11), transparent 20rem),
        linear-gradient(145deg, rgba(30, 215, 96, 0.08), transparent 55%),
        var(--surface-alt);
    box-shadow: var(--shadow);
}

.language-card > div {
    position: relative;
    z-index: 2;
}

.language-card p {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--text-soft);
}

.language-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.language-list > div {
    display: flex;
    min-height: 76px;
    padding: 15px;
    align-items: center;
    gap: 13px;
    border: 1px solid var(--border-light);
    border-radius: 15px;
    background: rgba(9, 9, 9, 0.33);
    backdrop-filter: blur(8px);
}

.language-list span {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid rgba(30, 215, 96, 0.25);
    border-radius: 11px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.67rem;
    font-weight: 900;
}

.language-list strong {
    font-size: 0.8rem;
}

/* Technology */

.technology-section {
    border-block: 1px solid rgba(255, 255, 255, 0.07);
    background: var(--bg-deep);
}

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

.technology-card {
    min-height: 230px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.018);
    transition: transform var(--transition), border-color var(--transition);
}

.technology-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 215, 96, 0.28);
}

.tech-code {
    display: grid;
    width: 51px;
    height: 51px;
    margin-bottom: 39px;
    place-items: center;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--surface);
    color: var(--accent);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.76rem;
    font-weight: 900;
}

.technology-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.technology-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.8rem;
}

.security-banner {
    display: grid;
    margin-top: 17px;
    padding: 25px;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 19px;
    border: 1px solid rgba(30, 215, 96, 0.24);
    border-radius: 18px;
    background: var(--accent-soft);
}

.security-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 16px;
    background: rgba(30, 215, 96, 0.12);
    color: var(--accent);
}

.security-icon svg {
    width: 27px;
}

.security-banner span {
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.security-banner h3 {
    margin: 4px 0;
    font-size: 1.05rem;
}

.security-banner p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.79rem;
}

/* Team */

.team-section {
    background:
        radial-gradient(circle at 10% 44%, rgba(30, 215, 96, 0.055), transparent 24rem),
        var(--bg);
}

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

.team-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface-alt);
    transition: transform var(--transition), border-color var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 215, 96, 0.28);
}

.team-photo {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: #0c0c0c;
}

.team-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.78), transparent 45%);
    content: "";
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
    transition: transform 500ms ease, filter 500ms ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.025);
    filter: saturate(1);
}

.team-photo > span {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 16px;
    padding: 7px 10px;
    border-radius: 8px;
    background: var(--accent);
    color: #06120a;
    font-size: 0.59rem;
    font-weight: 900;
    text-transform: uppercase;
}

.team-content {
    padding: 23px;
}

.team-content small {
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-content h3 {
    margin: 7px 0 8px;
    font-size: 1.24rem;
}

.team-content p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.8rem;
}

/* Download */

.download-section {
    padding-top: 30px;
}

.download-card {
    position: relative;
    display: grid;
    min-height: 430px;
    padding: 64px;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr) minmax(285px, 0.42fr);
    align-items: end;
    gap: 60px;
    border: 1px solid rgba(30, 215, 96, 0.25);
    border-radius: 32px;
    background:
        linear-gradient(120deg, rgba(30, 215, 96, 0.1), transparent 56%),
        var(--surface-alt);
    box-shadow: var(--shadow);
}

.download-card > div:not(.download-decoration) {
    position: relative;
    z-index: 2;
}

.download-card p {
    max-width: 670px;
    margin: 22px 0 0;
    color: var(--text-soft);
}

.download-notes {
    display: flex;
    margin-top: 29px;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.download-notes i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

.download-actions {
    display: grid;
    gap: 14px;
}

.download-actions small {
    color: var(--text-muted);
    font-size: 0.68rem;
    line-height: 1.5;
    text-align: center;
}

.download-decoration {
    position: absolute;
    top: -155px;
    right: -95px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(30, 215, 96, 0.1);
    border-radius: 50%;
}

.download-decoration::before,
.download-decoration::after {
    position: absolute;
    border: 1px solid rgba(30, 215, 96, 0.07);
    border-radius: 50%;
    content: "";
}

.download-decoration::before { inset: 55px; }
.download-decoration::after { inset: 115px; }

/* Footer */

.site-footer {
    padding: 46px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.footer-main > p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.73rem;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: var(--text-soft);
    font-size: 0.73rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    margin-top: 25px;
    padding-top: 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom small {
    color: #5f5f5f;
    font-size: 0.66rem;
}

/* Lightbox */

.lightbox {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    padding: 40px;
    place-items: center;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    backdrop-filter: blur(12px);
    transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.open {
    visibility: visible;
    opacity: 1;
}

.lightbox img {
    max-width: min(1400px, 94vw);
    max-height: 88vh;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 25px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1),
        transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(30, 215, 96, 0.55);
    outline-offset: 4px;
}

/* Responsive */

@media (max-width: 1080px) {
    .navigation {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
        gap: 46px;
    }

    .note-social { right: -8px; }
    .note-media { left: -8px; }

    .team-photo {
        height: 315px;
    }
}

@media (max-width: 920px) {
    :root {
        --header-height: 72px;
    }

    .section {
        padding: 94px 0;
    }

    .menu-button {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: var(--header-height);
        right: 20px;
        left: 20px;
        display: grid;
        padding: 17px;
        gap: 5px;
        transform: translateY(-12px) scale(0.98);
        visibility: hidden;
        border: 1px solid var(--border-light);
        border-radius: 18px;
        background: rgba(24, 24, 24, 0.98);
        box-shadow: var(--shadow);
        opacity: 0;
        backdrop-filter: blur(18px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .navigation.open {
        transform: translateY(0) scale(1);
        visibility: visible;
        opacity: 1;
    }

    .navigation > a {
        padding: 12px;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .navigation > a::after {
        display: none;
    }

    .navigation > a:hover {
        background: rgba(255, 255, 255, 0.035);
    }

    .navigation .nav-download {
        margin-top: 5px;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 75px);
        padding-bottom: 95px;
    }

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

    .hero-content {
        max-width: 760px;
        text-align: center;
        justify-self: center;
    }

    .hero-content > p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-meta {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 730px);
        margin-inline: auto;
    }

    .app-frame {
        transform: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .intro-copy {
        max-width: 720px;
        padding-top: 0;
    }

    .section-top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .section-top > p {
        max-width: 690px;
    }

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

    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
    }

    .download-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-actions {
        justify-items: start;
    }

    .download-actions small {
        max-width: 370px;
        text-align: left;
    }

    .footer-main {
        grid-template-columns: auto 1fr;
    }

    .footer-links {
        justify-self: end;
    }

    .footer-main > p {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 77px 0;
    }

    .section-heading h2,
    .section-top h2,
    .language-card h2,
    .download-card h2 {
        font-size: clamp(2.25rem, 10vw, 3.25rem);
    }

    .hero {
        padding-top: calc(var(--header-height) + 54px);
        padding-bottom: 75px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .eyebrow {
        font-size: 0.62rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-meta {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 9px;
    }

    .hero-meta > div {
        padding: 12px 7px;
        border: 1px solid var(--border);
        border-radius: 11px;
        background: rgba(255, 255, 255, 0.018);
    }

    .hero-meta span {
        font-size: 0.56rem;
    }

    .app-frame,
    .showcase-window {
        border-radius: 16px;
    }

    .app-frame-bar,
    .showcase-bar {
        height: 40px;
    }

    .floating-note {
        display: none;
    }

    .platform-list {
        min-height: auto;
        padding: 23px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
        font-size: 0.6rem;
    }

    .platform-list i {
        display: none;
    }

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

    .feature-card,
    .feature-card-wide {
        min-height: 268px;
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .mini-feed {
        display: none;
    }

    .showcase-details {
        grid-template-columns: 1fr;
    }

    .language-card {
        min-height: auto;
        padding: 37px 24px;
        border-radius: 23px;
    }

    .language-list {
        grid-template-columns: 1fr;
    }

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

    .security-banner {
        grid-template-columns: 1fr;
    }

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

    .team-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .team-photo {
        height: 390px;
    }

    .download-card {
        min-height: 520px;
        padding: 38px 25px;
        border-radius: 24px;
    }

    .download-actions .button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-self: start;
        flex-wrap: wrap;
    }

    .lightbox {
        padding: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =======================================================
   LisFilms 2.5 — camada de animações e polish
   ======================================================= */

/* barra de progresso de leitura */
.scroll-progress {
    position: fixed;
    z-index: 2000;
    inset: 0 0 auto 0;
    height: 3px;
    transform: scaleX(var(--progress, 0));
    transform-origin: 0 50%;
    background: linear-gradient(90deg, var(--accent), #8af2b3);
    box-shadow: 0 0 14px rgba(30, 215, 96, 0.5);
    pointer-events: none;
    will-change: transform;
}

/* aurora animada por trás do hero */
.hero-aurora {
    position: absolute;
    z-index: 0;
    inset: -25% -12% auto -12%;
    height: 130%;
    pointer-events: none;
    background:
        radial-gradient(38% 48% at 18% 28%, rgba(30, 215, 96, 0.18), transparent 62%),
        radial-gradient(34% 44% at 82% 18%, rgba(36, 230, 106, 0.13), transparent 62%),
        radial-gradient(46% 56% at 62% 82%, rgba(13, 127, 55, 0.16), transparent 62%);
    filter: blur(34px);
    animation: auroraShift 20s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0%   { transform: translate3d(-2%, -1%, 0) scale(1); }
    50%  { transform: translate3d(3%, 2%, 0) scale(1.09); }
    100% { transform: translate3d(-1%, 3%, 0) scale(1.05); }
}

/* dot do eyebrow a pulsar */
.eyebrow > span:first-child {
    animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(30, 215, 96, 0.14); }
    50%      { box-shadow: 0 0 0 9px rgba(30, 215, 96, 0.04); }
}

/* destaque do título com brilho em movimento */
.hero h1 em {
    background: linear-gradient(100deg, var(--accent), #9bf3bd 52%, var(--accent));
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shineText 7s linear infinite;
}

@keyframes shineText {
    to { background-position: 220% center; }
}

/* notas e janela a flutuar suavemente */
.floating-note { animation: floatY 6s ease-in-out infinite; }
.note-media { animation-delay: -3s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.hero-visual .app-frame { animation: floatFrame 9s ease-in-out infinite; }

@keyframes floatFrame {
    0%, 100% { transform: rotateY(-3deg) rotateX(1deg) translateY(0); }
    50%      { transform: rotateY(-3deg) rotateX(1deg) translateY(-12px); }
}

/* brilho que varre o botão principal */
.button-primary { position: relative; overflow: hidden; }

.button-primary::after {
    position: absolute;
    inset: 0;
    transform: translateX(-135%) skewX(-20deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    content: "";
    transition: transform 750ms ease;
}

.button-primary:hover::after { transform: translateX(135%) skewX(-20deg); }

/* glow verde nos cartões ao passar o rato */
.feature-card:hover,
.technology-card:hover,
.team-card:hover {
    box-shadow: 0 26px 60px rgba(30, 215, 96, 0.10);
}

.showcase-details article {
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.showcase-details article:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 215, 96, 0.28);
    box-shadow: 0 20px 50px rgba(30, 215, 96, 0.09);
}

/* reveal escalonado (delay definido via JS na variável --d) */
.reveal { transition-delay: var(--d, 0ms); }

/* micro-interações */
.kicker::before { transition: width var(--transition); }
.section-top:hover .kicker::before { width: 36px; }

.lang-switch button { transition: background var(--transition), color var(--transition), transform var(--transition); }
.lang-switch button:active { transform: scale(0.9); }

.navigation .nav-download { transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.navigation .nav-download:hover { transform: translateY(-1px); }

.platform-list span { transition: color var(--transition); }
.platform-list span:hover { color: var(--accent); }

.language-list > div { transition: transform var(--transition), border-color var(--transition); }
.language-list > div:hover { transform: translateY(-3px); border-color: rgba(30, 215, 96, 0.3); }

@media (prefers-reduced-motion: reduce) {
    .hero-aurora,
    .eyebrow > span:first-child,
    .floating-note,
    .hero-visual .app-frame,
    .hero h1 em { animation: none; }
}
