/* =============================================================
   AmorimWS — Landing Page
   Paleta: navy escuro + verde esmeralda
   Inspirado em lumina-video, com efeito "falling beams"
   ============================================================= */

:root {
    --navy-950: #050b1a;
    --navy-900: #0a1428;
    --navy-800: #0f1e3d;
    --navy-700: #142a52;
    --navy-600: #1e3a8a;
    --navy-500: #2451c4;
    --green-400: #34d399;
    --green-500: #10b981;
    --green-600: #059669;
    --green-700: #047857;
    --gold-400: #fbbf24;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-navy: linear-gradient(180deg, #0a1428 0%, #050b1a 100%);
    --shadow-glow: 0 0 60px rgba(16, 185, 129, 0.25);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--navy-950);
    color: var(--white-90);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ----- Background layers -------------------------------------- */
.landing_bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(36, 81, 196, 0.12), transparent),
        radial-gradient(ellipse 60% 50% at 20% 70%, rgba(16, 185, 129, 0.08), transparent),
        var(--navy-950);
}

.landing_bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--white-05) 1px, transparent 1px),
        linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 70%);
    opacity: 0.4;
}

/* ----- Falling beams (efeito chuva) --------------------------- */
.landing_beams {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
    opacity: 0.7;
}
.landing_beams_col {
    flex: 1;
    border-left: 1px solid var(--white-05);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.landing_beams_col:last-child { border-right: 1px solid var(--white-05); }

.landing_beam {
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--green-500), transparent);
    pointer-events: none;
    will-change: transform, opacity;
}
.landing_beam.beam-1 { height: 16rem;  background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.6), transparent); animation: beam-fall 6s linear infinite; animation-delay: 0s;   }
.landing_beam.beam-2 { height: 24rem;  background: linear-gradient(to bottom, transparent, rgba(52, 211, 153, 0.85), transparent); animation: beam-fall 8s linear infinite; animation-delay: 2s;   }
.landing_beam.beam-3 { height: 12rem;  background: linear-gradient(to bottom, transparent, rgba(36, 81, 196, 0.6), transparent);  animation: beam-fall 7s linear infinite; animation-delay: 4s;   }
.landing_beam.beam-4 { height: 20rem;  background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.7), transparent); animation: beam-fall 9s linear infinite; animation-delay: 1.5s; }
.landing_beam.beam-5 { height: 14rem;  background: linear-gradient(to bottom, transparent, rgba(52, 211, 153, 0.5), transparent); animation: beam-fall 10s linear infinite; animation-delay: 3s;  }
.landing_beam.beam-center {
    left: 50%;
    transform: translateX(-50%);
    height: 18rem;
    background: linear-gradient(to bottom, transparent, var(--green-400), transparent);
    animation: beam-fall 7.5s linear infinite;
    animation-delay: 2.8s;
}

@keyframes beam-fall {
    0%   { transform: translateY(-100%); opacity: 0; }
    5%   { opacity: 0.5; }
    50%  { opacity: 1; }
    95%  { opacity: 0.5; }
    100% { transform: translateY(120vh); opacity: 0; }
}

/* ----- Reveal on scroll --------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--rev-delay, 0ms),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--rev-delay, 0ms);
    will-change: opacity, transform;
}
.reveal.from-left  { transform: translate(-40px, 20px); }
.reveal.from-right { transform: translate(40px, 20px); }
.reveal.zoom       { transform: scale(0.92); transform-origin: center bottom; }
.reveal.tilt       { transform: translateY(40px) rotate(-1.5deg); }

.reveal.is-visible,
.reveal.from-left.is-visible,
.reveal.from-right.is-visible,
.reveal.zoom.is-visible,
.reveal.tilt.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0);
}

/* Parallax-light: itens com data-parallax="0.15" se movem suavemente
   na vertical conforme scroll. Aplicado via JS — apenas efeito visual,
   degrada graciosamente quando JS está off. */
[data-parallax] { will-change: transform; }

/* ----- Layout container --------------------------------------- */
.landing_main {
    position: relative;
    z-index: 10;
}
.lcontainer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- Navbar ------------------------------------------------- */
.landing_nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(5, 11, 26, 0.6);
    border-bottom: 1px solid var(--white-05);
}
.landing_logo_img { height: 32px; width: auto; display: block; }
.landing_nav_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.landing_logo {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.landing_logo_dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green-500);
    box-shadow: 0 0 14px var(--green-500);
}
.landing_nav_links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.landing_nav_links a {
    font-size: 14px;
    color: var(--white-70);
    transition: color 0.2s ease;
}
.landing_nav_links a:hover { color: var(--white); }
.landing_nav_cta {
    background: var(--gradient-green);
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.landing_nav_cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
}
.landing_nav_burger { display: none; cursor: pointer; color: var(--white-70); }
@media (max-width: 880px) {
    .landing_nav_links { display: none; }
    .landing_nav_burger { display: block; }
    .landing_nav_links.is-open {
        display: flex;
        position: absolute;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--navy-900);
        padding: 16px 24px;
        border-bottom: 1px solid var(--white-10);
    }
    .landing_nav_links.is-open a { padding: 12px 0; border-bottom: 1px solid var(--white-05); }
    .landing_nav_links.is-open .landing_nav_cta { margin-top: 8px; text-align: center; }
}

/* ----- Hero --------------------------------------------------- */
.landing_hero {
    padding: 96px 0 120px;
    text-align: center;
    position: relative;
}
.landing_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--green-400);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
}
.landing_hero_h1 {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-weight: 400;
    font-size: clamp(40px, 7vw, 88px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 24px 0 16px;
    color: var(--white);
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}
.landing_hero_h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--green-400), var(--green-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.landing_hero_sub {
    color: var(--white-60);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 36px;
}
.landing_hero_ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn_primary, .btn_secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn_primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
}
.btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}
.btn_secondary {
    background: var(--white-05);
    color: var(--white);
    border-color: var(--white-10);
}
.btn_secondary:hover {
    background: var(--white-10);
    border-color: var(--white-40);
}

/* ----- Section base ------------------------------------------- */
.landing_section { padding: 96px 0; position: relative; }
.landing_section_head { text-align: center; margin-bottom: 56px; }
.landing_section_h2 {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 18px 0 14px;
}
.landing_section_h2 em {
    font-style: italic;
    color: var(--green-400);
}
.landing_section_sub {
    color: var(--white-60);
    font-size: 16px;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* =============================================================
   Systems carousel (compact horizontal cards)
   =============================================================
   Dobra "Sistemas" com cards compactos rolando horizontalmente.
   Background mais claro que o navy padrão pra dar lift visual.
   Substitui o zigzag-showcase antigo, que ocupava espaço demais
   pra muitos sistemas em série.
   ============================================================= */

/* Section com bg mais claro que destaca da escuridão geral */
.systems_section_lighter {
    background:
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025) 12%, rgba(255, 255, 255, 0.025) 88%, transparent),
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(16, 185, 129, 0.06), transparent 60%);
    position: relative;
}
.systems_section_lighter::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.systems_section_lighter::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Grid 3 colunas no desktop, 2 no tablet, 1 no mobile.
   Cresce/encolhe sozinho conforme o admin adiciona/remove sistemas. */
.systems_grid_3col {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
}
@media (max-width: 980px) {
    .systems_grid_3col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 620px) {
    .systems_grid_3col { grid-template-columns: 1fr; gap: 16px; }
}

/* Card compacto (referência: imagem do Domestika/Skool) */
.system_compact_card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--white-10);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* min-width:0 é crítico em grid: sem isso, conteúdo grande
       (como uma <img> em natural size) "vaza" e estoura a coluna. */
    min-width: 0;
    width: 100%;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.system_compact_card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 20px 50px -20px rgba(16, 185, 129, 0.25);
}

/* Visual (imagem grande no topo).
   Usa padding-bottom HACK pra forçar aspect-ratio 16:11 em qualquer
   browser. aspect-ratio CSS prop tem suporte ~93% mas ainda falha
   em alguns engines (e algumas vezes não é respeitado quando o filho
   tem natural size enorme). padding-bottom é universal. */
.system_compact_visual {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 68.75%; /* 11 / 16 = 0.6875 */
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(16, 185, 129, 0.18), transparent 60%),
        linear-gradient(180deg, #0f1e3d, #0a1428);
}
.system_compact_visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.system_compact_card:hover .system_compact_visual img { transform: scale(1.04); }
.system_compact_placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(16, 185, 129, 0.6);
}
.system_compact_placeholder svg { width: 72px; height: 72px; stroke-width: 1.2; }

/* Chip no canto da imagem (estilo "27 aulas" do exemplo) */
.system_compact_chip {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(10, 20, 40, 0.88);
    color: var(--white);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 5px 11px;
    border-radius: 999px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Corpo abaixo da imagem */
.system_compact_body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Tag colorida (categoria, no estilo Design/Negócios do exemplo) */
.system_compact_tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 11px;
    border-radius: 999px;
    margin-bottom: 12px;
    align-self: flex-start;
    /* cor de fundo + texto vem inline no PHP (rotativa) */
}

.system_compact_title {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 10px;
}
.system_compact_title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}
.system_compact_title a:hover { color: var(--green-400); }

.system_compact_desc {
    color: var(--white-60);
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
}

.system_compact_foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid var(--white-05);
    padding-top: 12px;
    margin-top: auto;
}
.system_compact_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-400);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: gap .2s ease;
}
.system_compact_link:hover { gap: 10px; color: var(--green-500); }


/* ----- Systems showcase (zigzag premium layout) -------------- */
.systems_showcase {
    display: flex;
    flex-direction: column;
    gap: 96px;
    margin-top: 32px;
}
.showcase_item {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}
.showcase_item:nth-child(even) .showcase_visual { order: 2; }
@media (max-width: 880px) {
    .systems_showcase { gap: 72px; }
    .showcase_item { grid-template-columns: 1fr; gap: 32px; }
    .showcase_item:nth-child(even) .showcase_visual { order: 0; }
}

/* Device frame (mockup de browser/tablet) ------------------- */
.device_frame {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--white-10);
    border-radius: 18px;
    padding: 14px 16px 16px;
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(16, 185, 129, 0.06);
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s ease;
}
.showcase_item:hover .device_frame {
    transform: translateY(-6px);
    box-shadow: 0 50px 120px -30px rgba(16, 185, 129, 0.35),
                0 0 0 1px rgba(16, 185, 129, 0.18);
}
.device_chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 4px 12px;
}
.device_chrome::before {
    content: "";
    width: 11px; height: 11px;
    border-radius: 999px;
    background: rgba(255, 95, 86, 0.7);
    box-shadow:
        18px 0 0 rgba(255, 189, 46, 0.7),
        36px 0 0 rgba(39, 201, 63, 0.7);
}
.device_chrome_url {
    margin-left: 56px;
    flex: 1;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--white-05);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11.5px;
    color: var(--white-40);
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.device_screen {
    background:
        radial-gradient(ellipse at top right, rgba(16, 185, 129, 0.12), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(36, 81, 196, 0.1), transparent 60%),
        linear-gradient(180deg, #0d1929, #050b1a);
    border-radius: 10px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.device_screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.device_screen_placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.device_screen_placeholder svg {
    width: 64px; height: 64px;
    color: rgba(16, 185, 129, 0.5);
    stroke-width: 1.2;
}
.device_screen_placeholder_label {
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--white-40);
    text-transform: uppercase;
    font-weight: 600;
}

/* Showcase text side ---------------------------------------- */
.showcase_text { padding: 8px 0; }
.showcase_tagline {
    display: inline-block;
    color: var(--green-400);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.showcase_title {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0 0 18px;
}
.showcase_desc {
    color: var(--white-70);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 46ch;
}
.showcase_cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--white-10);
    color: var(--white);
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background .2s ease, border-color .2s ease, gap .2s ease;
}
.showcase_cta:hover {
    background: var(--gradient-green);
    border-color: transparent;
    gap: 14px;
}
.showcase_cta svg {
    width: 16px; height: 16px;
    transition: transform .2s ease;
}
.showcase_cta:hover svg { transform: translateX(2px); }

/* Compatibilidade: legacy .systems_grid permanece (caso outras
   landings ainda usem). Oculta apenas se em conjunção com items
   que migram para showcase. */
.systems_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.system_card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--white-10);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.system_card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.system_card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 24px 60px -20px rgba(16, 185, 129, 0.2);
}
.system_card:hover::before { opacity: 1; }
.system_card_icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(36, 81, 196, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-400);
    margin-bottom: 18px;
}
.system_card_icon svg { width: 24px; height: 24px; stroke-width: 1.6; }
.system_card_title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 8px;
}
.system_card_desc {
    font-size: 14px;
    color: var(--white-60);
    line-height: 1.6;
    margin: 0 0 16px;
}
.system_card_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-400);
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.2s ease;
}
.system_card_link:hover { gap: 10px; }

/* ----- Plan box (Finanças Pessoais) --------------------------- */
.plan_box {
    background:
        radial-gradient(ellipse 60% 80% at 0% 0%, rgba(16, 185, 129, 0.18), transparent),
        radial-gradient(ellipse 60% 80% at 100% 100%, rgba(36, 81, 196, 0.18), transparent),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 28px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.plan_box_left h3 {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--white);
    margin: 16px 0 12px;
}
.plan_box_sub {
    color: var(--white-70);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.plan_features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 10px;
}
.plan_features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white-90);
    font-size: 14.5px;
}
.plan_features li::before {
    content: "✓";
    width: 22px; height: 22px;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--green-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}
.plan_box_right {
    background: rgba(5, 11, 26, 0.5);
    border: 1px solid var(--white-10);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(8px);
}
.plan_price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
}
.plan_price_currency {
    font-size: 22px;
    color: var(--white-70);
    font-weight: 600;
}
.plan_price_value {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 1;
    color: var(--white);
}
.plan_price_suffix {
    font-size: 16px;
    color: var(--white-60);
}
.plan_price_disclaimer {
    color: var(--white-60);
    font-size: 13px;
    margin: 12px 0 24px;
}
.plan_box_right .btn_primary { width: 100%; justify-content: center; }
@media (max-width: 880px) {
    .plan_box { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
}

/* ----- About / Stats ------------------------------------------ */
.about_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 880px) {
    .about_block { grid-template-columns: 1fr; gap: 40px; }
}
.about_block_text p {
    color: var(--white-70);
    font-size: 16px;
    line-height: 1.7;
}
.about_stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.stat_card {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat_card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}
.stat_value {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-size: 44px;
    line-height: 1;
    color: var(--green-400);
    margin-bottom: 8px;
}
.stat_label {
    font-size: 13px;
    color: var(--white-60);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ----- Services (3 cards lado a lado) ------------------------- */
.services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.service_card {
    background: linear-gradient(180deg, rgba(36, 81, 196, 0.08), rgba(36, 81, 196, 0.02));
    border: 1px solid var(--white-10);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.service_card:hover {
    transform: translateY(-4px);
    border-color: rgba(36, 81, 196, 0.5);
}
.service_card .system_card_icon {
    background: linear-gradient(135deg, rgba(36, 81, 196, 0.2), rgba(16, 185, 129, 0.12));
    color: #93c5fd;
}
.service_card_title {
    font-size: 19px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 8px;
}
.service_card_desc {
    font-size: 14.5px;
    color: var(--white-70);
    line-height: 1.65;
    margin: 0;
}

/* =============================================================
   Método / Como funciona — 4 passos numerados com conector
   ============================================================= */
.method_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 8px;
}
@media (max-width: 980px) { .method_grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } }
@media (max-width: 560px) { .method_grid { grid-template-columns: 1fr; } }

.method_step {
    position: relative;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.015));
    border: 1px solid var(--white-10);
    border-radius: 20px;
    padding: 30px 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.method_step:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.45);
}
/* Conector horizontal entre os passos (só desktop) */
.method_step_line {
    display: none;
    position: absolute;
    top: 54px; right: -11px;
    width: 22px; height: 2px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.5), transparent);
}
@media (min-width: 981px) {
    .method_step_line { display: block; }
    .method_grid .method_step:last-child .method_step_line { display: none; }
}
.method_step_icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(52, 211, 153, 0.1));
    color: var(--green-400);
    margin-bottom: 16px;
}
.method_step_icon svg { width: 26px; height: 26px; }
.method_step_title {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 8px;
}
.method_step_desc {
    font-size: 14px;
    color: var(--white-70);
    line-height: 1.65;
    margin: 0;
}
.method_cta { text-align: center; margin-top: 44px; }

/* =============================================================
   Cases e resultados — cards de depoimento com métrica
   ============================================================= */
.cases_section {
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(36, 81, 196, 0.08), transparent 60%);
}
.cases_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
    margin-top: 8px;
}
.case_card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--white-10);
    border-radius: 22px;
    padding: 34px 30px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}
.case_card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
}
.case_card_quoteicon {
    position: absolute;
    top: 18px; right: 20px;
    color: rgba(16, 185, 129, 0.18);
}
.case_card_quoteicon svg { width: 40px; height: 40px; }
.case_metric {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.case_metric_value {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-size: clamp(38px, 5vw, 52px);
    line-height: 1;
    color: var(--green-400);
    letter-spacing: -0.02em;
}
.case_metric_label {
    font-size: 13px;
    color: var(--white-60);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 6px;
}
.case_quote {
    font-size: 15px;
    color: var(--white-90);
    line-height: 1.7;
    margin: 0 0 22px;
}
.case_author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--white-10);
    padding-top: 16px;
}
.case_author_name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--white);
}
.case_author_role {
    font-size: 13px;
    color: var(--white-60);
    margin-top: 2px;
}

/* ----- Contact ------------------------------------------------ */
.contact_block {
    background:
        radial-gradient(ellipse at top right, rgba(16, 185, 129, 0.15), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(36, 81, 196, 0.12), transparent 60%);
    border: 1px solid var(--white-10);
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
}
.contact_links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin: 32px 0 24px;
}
.contact_link {
    color: var(--white);
    font-family: 'Instrument Serif', 'Inter', serif;
    font-size: clamp(20px, 2.6vw, 32px);
    transition: color 0.2s ease;
    border-bottom: 1px solid var(--white-10);
    padding-bottom: 4px;
}
.contact_link:hover { color: var(--green-400); border-bottom-color: var(--green-400); }
.contact_address { color: var(--white-60); font-size: 14px; margin-top: 8px; }

/* ----- Footer ------------------------------------------------- */
.landing_footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--white-05);
    margin-top: 80px;
    position: relative;
    z-index: 10;
}
.landing_footer_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
@media (max-width: 880px) { .landing_footer_grid { grid-template-columns: 1fr; gap: 32px; } }
.landing_footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white-60); margin: 0 0 14px; }
.landing_footer p { color: var(--white-60); font-size: 14px; line-height: 1.7; max-width: 38ch; }
.landing_footer ul { list-style: none; padding: 0; margin: 0; }
.landing_footer ul li { margin-bottom: 8px; }
.landing_footer a { color: var(--white-70); font-size: 14px; transition: color 0.2s ease; }
.landing_footer a:hover { color: var(--green-400); }
.landing_footer_brand {
    text-align: center;
    font-family: 'Instrument Serif', 'Inter', serif;
    font-size: clamp(96px, 17vw, 220px);
    line-height: 0.9;
    color: var(--white);
    opacity: 0.06;
    margin: 32px 0 16px;
    letter-spacing: -0.04em;
    user-select: none;
}
.landing_footer_copy {
    text-align: center;
    font-size: 12.5px;
    color: var(--white-40);
    padding-top: 16px;
    border-top: 1px solid var(--white-05);
}
.landing_social {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}
.landing_social a {
    width: 36px; height: 36px;
    border-radius: 999px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.landing_social a:hover { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.5); }
.landing_social svg { width: 16px; height: 16px; }

/* ----- Pains grid (finance landing) -------------------------- */
.pains_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
}
.pain_card {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 18px;
    padding: 24px;
    transition: transform .3s ease, border-color .3s ease;
}
.pain_card:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.5);
}
.pain_card .system_card_icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.18), rgba(251, 191, 36, 0.12));
    color: #fca5a5;
    margin-bottom: 14px;
}
.pain_card_title {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-size: 22px;
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 10px;
}
.pain_card_desc {
    font-size: 14.5px;
    color: var(--white-70);
    line-height: 1.65;
    margin: 0;
}

/* ----- How it works (3 steps numbered) ------------------------ */
.how_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    counter-reset: step;
}
.how_step {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
    counter-increment: step;
}
.how_step::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--gradient-green);
    color: white;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}
.how_step h3 {
    margin: 14px 0 8px;
    font-size: 19px;
    color: var(--white);
}
.how_step p { color: var(--white-70); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ----- Pricing (single highlighted card) ---------------------- */
.pricing_box {
    max-width: 580px;
    margin: 0 auto;
    background:
        radial-gradient(ellipse at top, rgba(16, 185, 129, 0.2), transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 28px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 30px 80px -30px rgba(16, 185, 129, 0.4);
}
.pricing_trial {
    display: inline-block;
    background: rgba(52, 211, 153, 0.18);
    color: var(--green-400);
    border: 1px solid rgba(52, 211, 153, 0.4);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 18px;
}
.pricing_features {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    text-align: left;
    display: grid;
    gap: 10px;
}
.pricing_features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white-90);
    font-size: 14.5px;
}
.pricing_features li::before {
    content: "✓";
    width: 22px; height: 22px;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--green-400);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px;
}
.pricing_box .btn_primary { width: 100%; justify-content: center; padding: 16px 24px; font-size: 16px; }
.pricing_disclaimer { color: var(--white-60); font-size: 12.5px; margin: 14px 0 0; }

/* ----- Pricing grid (2 cards lado a lado) -------------------- */
.plans_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    max-width: 880px;
    margin: 0 auto;
}
.plan_card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--white-10);
    border-radius: 22px;
    padding: 28px 26px 32px;
    text-align: left;
    position: relative;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.plan_card:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.3);
}
.plan_card.is-highlighted {
    background:
        radial-gradient(ellipse at top, rgba(16, 185, 129, 0.18), transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 30px 80px -30px rgba(16, 185, 129, 0.4);
}
.plan_card_badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 18px -4px rgba(16, 185, 129, 0.5);
}
.plan_card_name {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1;
    color: var(--white);
    margin: 4px 0 6px;
}
.plan_card_desc {
    color: var(--white-60);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0 0 18px;
}
.plan_card_price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 0 0 20px;
}
.plan_card .pricing_features {
    margin: 0 0 24px;
    text-align: left;
}
.plan_card_cta {
    width: 100%;
    justify-content: center;
}

/* ----- FAQ accordion ----------------------------------------- */
.faq_list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq_item {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s ease;
}
.faq_item[open] { border-color: rgba(16, 185, 129, 0.4); }
.faq_item summary {
    cursor: pointer;
    padding: 18px 22px;
    list-style: none;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq_item summary::after {
    content: "+";
    font-size: 22px;
    line-height: 1;
    color: var(--green-400);
    transition: transform .2s ease;
}
.faq_item[open] summary::after { content: "−"; }
.faq_item summary::-webkit-details-marker { display: none; }
.faq_item p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--white-70);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ----- CTA final stripe -------------------------------------- */
.cta_final {
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(16, 185, 129, 0.18), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(36, 81, 196, 0.12), transparent 60%);
    border: 1px solid var(--white-10);
    border-radius: 28px;
    padding: 64px 32px;
}
.cta_final h2 {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-weight: 400;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 16px;
}
.cta_final p { color: var(--white-70); font-size: 16px; margin: 0 0 28px; }
.cta_final_btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----- Auth pages (login, register, forget, reset) ------------ */
.auth_wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 40px;
    position: relative;
    z-index: 10;
}
.auth_card {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--white-10);
    border-radius: 22px;
    padding: 36px 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 30px 80px -30px rgba(16, 185, 129, 0.25);
}
.auth_card h1 {
    font-family: 'Instrument Serif', 'Inter', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 6px;
}
.auth_card_sub {
    color: var(--white-60);
    font-size: 14.5px;
    margin: 0 0 24px;
}
.auth_card_sub a { color: var(--green-400); }
.auth_card_sub a:hover { text-decoration: underline; }

.auth_form { display: flex; flex-direction: column; gap: 14px; }
.auth_form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--white-70);
}
.auth_form label span { font-weight: 600; letter-spacing: 0.01em; }
.auth_form input {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--white-10);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s, background .2s;
}
.auth_form input:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.6);
    background: rgba(0, 0, 0, 0.35);
}
.auth_form input::placeholder { color: var(--white-40); }

.auth_form button[type="submit"], .auth_btn_primary {
    background: var(--gradient-green);
    color: white;
    border: 0;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-top: 6px;
    transition: transform .15s, box-shadow .15s;
}
.auth_form button[type="submit"]:hover, .auth_btn_primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.auth_links {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
}
.auth_links a { color: var(--white-60); }
.auth_links a:hover { color: var(--green-400); }

.auth_logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 22px;
}
.auth_logo .landing_logo_dot {
    width: 8px;
    height: 8px;
}

.auth_message_holder { margin-bottom: 14px; }
.auth_message_holder .message,
.auth_message_holder .alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13.5px;
}
.auth_message_holder .message.success { background: rgba(16, 185, 129, 0.12); border-color: rgba(16, 185, 129, 0.4); color: var(--green-400); }
.auth_message_holder .message.info    { background: rgba(36, 81, 196, 0.12); border-color: rgba(36, 81, 196, 0.5); color: #93c5fd; }
.auth_message_holder .message.warning { background: rgba(251, 191, 36, 0.12); border-color: rgba(251, 191, 36, 0.5); color: #fde68a; }

/* ----- WhatsApp floating ------------------------------------- */
.wa_float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease;
}
.wa_float:hover { transform: scale(1.08); }
.wa_float svg { width: 28px; height: 28px; }

/* Hover-lift sutil em cards (combina com o reveal para sensação de "vivo") */
.system_card, .service_card, .stat_card { will-change: transform; }

/* ----- Reduce motion ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .landing_beam { animation: none !important; opacity: 0.3; }
    .reveal { opacity: 1; transform: none !important; transition: none !important; }
    [data-parallax] { transform: none !important; }
}
