:root {
    --bg: #f5f2fb;
    --surface: #ffffff;
    --surface-2: #f8f6fd;
    --surface-3: #eee8f8;
    --text: #1a0b2e;
    --text2: #4a3c6b;
    --line: #dfd6ea;
    --primary: #5c2d91;
    --secondary: #9c27b0;
    --accent: #8a2be2;
    --success: #187a5f;
    --font-body: "Manrope", "Segoe UI", Tahoma, sans-serif;
    --font-display: "Sora", "Manrope", "Segoe UI", sans-serif;
    --font-mono: "IBM Plex Mono", Consolas, "Courier New", monospace;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    text-rendering: geometricPrecision;
}

#app {
    min-height: 100vh;
}

.loading-progress {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 4.75rem;
    height: 4.75rem;
    margin: -2.375rem 0 0 -2.375rem;
}

.loading-progress circle {
    fill: none;
    stroke: #d7e0ef;
    stroke-width: 0.5rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: #2d63c8;
    stroke-dasharray: 289px;
    stroke-dashoffset: 74px;
    animation: asx-loader-rotate 1.2s linear infinite;
}

.loading-progress-text {
    position: fixed;
    top: calc(50% + 3.35rem);
    left: 50%;
    transform: translateX(-50%);
    color: #51627c;
    font-size: 0.9rem;
    font-weight: 700;
}

@keyframes asx-loader-rotate {
    0% {
        transform: rotate(-90deg);
    }

    100% {
        transform: rotate(270deg);
    }
}

.asx-theme-light {
    --bg: #f5f2fb;
    --surface: #ffffff;
    --surface-2: #f8f6fd;
    --surface-3: #eee8f8;
    --text: #1a0b2e;
    --text2: #4a3c6b;
    --line: #dfd6ea;
    --primary: #5c2d91;
    --secondary: #9c27b0;
    --accent: #8a2be2;
    --success: #187a5f;

    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(880px 520px at 100% -8%, rgba(92, 45, 145, 0.14), transparent 62%),
        radial-gradient(640px 420px at -5% 8%, rgba(156, 39, 176, 0.13), transparent 58%),
        radial-gradient(580px 300px at 75% 100%, rgba(138, 43, 226, 0.06), transparent 66%),
        linear-gradient(180deg, #fcfafc, #f5f2fb 46%, #e8e1f5);
    position: relative;
    overflow-x: clip;
}

.asx-theme-dark {
    --bg: #0b0719;
    --surface: #130f28;
    --surface-2: #1b1333;
    --surface-3: #221a40;
    --text: #eef2ff;
    --text2: #c4caeb;
    --line: #2a2654;
    --primary: #9b51e0;
    --secondary: #ff57a9;
    --accent: #b388ff;
    --success: #5ccf9d;

    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(900px 580px at 100% -14%, rgba(155, 81, 224, 0.24), transparent 65%),
        radial-gradient(680px 440px at -4% 6%, rgba(255, 87, 169, 0.16), transparent 62%),
        radial-gradient(650px 320px at 82% 96%, rgba(179, 136, 255, 0.12), transparent 66%),
        linear-gradient(180deg, #110824, #0b0719 45%, #080516);
    position: relative;
    overflow-x: clip;
}

.asx-theme-light::before,
.asx-theme-dark::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 0.8px, transparent 0.8px);
    background-size: 3px 3px;
    opacity: 0.25;
    z-index: 0;
}

.asx-theme-light .mud-main-content,
.asx-theme-dark .mud-main-content {
    min-height: calc(100vh - 64px);
    background: transparent;
    position: relative;
    z-index: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

.mud-typography-h1,
.mud-typography-h2,
.mud-typography-h3,
.mud-typography-h4,
.mud-typography-h5,
.mud-typography-h6 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.asx-appbar {
    border-bottom: 1px solid var(--line);
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    backdrop-filter: blur(14px);
}

.asx-theme-light .asx-appbar {
    background: rgba(255, 255, 255, 0.72) !important;
    box-shadow: 0 14px 38px rgba(23, 42, 79, 0.08);
}

.asx-theme-dark .asx-appbar {
    background: rgba(7, 13, 25, 0.72) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.asx-brand-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
}

.asx-brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.14);
}

.asx-brand {
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    line-height: 1.1;
}

.asx-brand-sub {
    color: var(--text2);
    letter-spacing: 0.02em;
}

.asx-nav-desktop {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-right: 0.35rem;
}

.asx-theme-toggle {
    margin-left: 0.2rem;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.asx-mobile-menu {
    margin-left: 0.3rem;
}

.asx-home-shell {
    position: relative;
    z-index: 1;
}

.asx-section {
    padding: 58px 0;
}

.asx-hero {
    padding-top: 26px;
}

.asx-home-hero {
    padding-top: 18px;
}

.asx-home-hero-shell {
    border-radius: 20px;
}

.asx-home-command-card {
    position: relative;
    overflow: hidden;
}

.asx-home-command-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.22), transparent 70%);
    pointer-events: none;
}

.asx-home-hero-grid {
    align-items: center;
}

.asx-home-copy {
    justify-content: center;
}

.asx-home-banner-clean {
    height: 100%;
    min-height: 320px;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(155deg, #130a26, #1f0d45);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.asx-home-banner-clean-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.asx-home-eyebrow {
    color: var(--secondary);
    letter-spacing: 0.12em;
    font-weight: 800;
}

.asx-home-title {
    color: var(--text);
    max-width: 100%;
    line-height: 1.06;
}

.asx-home-lead {
    color: var(--text2);
    max-width: 68ch;
}

.asx-home-actions {
    margin-top: 0.65rem;
    display: flex;
    flex-wrap: wrap;
}

.asx-home-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.asx-home-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    color: var(--text2);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.4rem 0.8rem;
}

.asx-theme-dark .asx-home-badge {
    border-color: rgba(127, 179, 255, 0.34);
    background: rgba(15, 23, 40, 0.72);
    color: #d2e1ff;
}

.asx-home-kpi {
    padding-top: 18px;
}

.asx-home-kpi-card {
    position: relative;
    overflow: hidden;
}

.asx-home-kpi-card::after {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(156, 39, 176, 0.65), rgba(92, 45, 145, 0.9));
}

.asx-home-kpi-label {
    color: var(--text2);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.asx-home-kpi-value {
    color: var(--primary);
    margin: 0.2rem 0;
}

.asx-section-kicker {
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 0.1em;
}

.asx-section-title {
    max-width: 26ch;
}

.asx-home-section-title {
    max-width: 100%;
}

.asx-product-section-title {
    max-width: 100%;
}

.asx-about-section-title {
    max-width: 100%;
}

.asx-section-lead {
    color: var(--text2);
    max-width: 86ch;
}

.asx-home-commit-card {
    position: relative;
    border-left-width: 3px;
}

.asx-home-commit-step {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.asx-home-contact-actions .mud-button-root {
    width: 100%;
}

.asx-about-shell,
.asx-product-shell {
    position: relative;
    z-index: 1;
}

.asx-about-hero-grid {
    align-items: center;
}

.asx-about-facts {
    border-style: dashed;
}

.asx-about-facts-kicker {
    color: var(--secondary);
    letter-spacing: 0.08em;
    font-weight: 800;
}

.asx-about-fact {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    background: rgba(255, 255, 255, 0.44);
}

.asx-theme-dark .asx-about-fact {
    background: rgba(19, 31, 51, 0.58);
}

.asx-about-fact-value {
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.asx-about-principle {
    position: relative;
}

.asx-about-principle-index {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.asx-product-intro {
    padding-bottom: 30px;
}

.asx-product-intro-card {
    position: relative;
    overflow: hidden;
}

.asx-product-intro-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(156, 39, 176, 0.24), transparent 70%);
    pointer-events: none;
}

.asx-product-jump-card .mud-button-root {
    justify-content: flex-start;
    padding-left: 0.3rem;
}

.asx-product-mini-grid .mud-paper {
    height: 100%;
}

.asx-product-mini-card,
.asx-product-detail-card,
.asx-pricing-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.asx-product-mini-card:hover,
.asx-product-detail-card:hover,
.asx-pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 33, 67, 0.18);
}

.asx-theme-dark .asx-product-mini-card:hover,
.asx-theme-dark .asx-product-detail-card:hover,
.asx-theme-dark .asx-pricing-card:hover {
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

.asx-product-proof-strip {
    padding-top: 28px;
}

.asx-product-proof-card {
    border-left-width: 3px;
}

.asx-product-footer {
    padding-top: 24px;
}

.asx-product-footer-actions .mud-button-root {
    justify-content: flex-start;
}

.asx-pricing-note {
    color: var(--text2);
    padding-top: 0.35rem;
}

.asx-table-refined th {
    color: var(--text);
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.asx-table-refined td {
    color: var(--text2);
    border-bottom: 1px solid rgba(128, 148, 183, 0.24);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.asx-cta-step-card {
    text-align: center;
}

.asx-cta-main-button {
    min-width: 220px;
}

.asx-cta-card .asx-section-title,
.asx-cta-card .asx-section-lead {
    margin-left: auto;
    margin-right: auto;
}

.asx-reveal {
    opacity: 0;
    animation: asx-reveal-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.asx-delay-1 {
    animation-delay: 90ms;
}

.asx-delay-2 {
    animation-delay: 210ms;
}

.asx-delay-3 {
    animation-delay: 330ms;
}

.asx-delay-4 {
    animation-delay: 460ms;
}

.asx-delay-5 {
    animation-delay: 590ms;
}

@keyframes asx-reveal-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.asx-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
        linear-gradient(180deg, var(--surface), var(--surface-2));
    box-shadow: 0 12px 34px rgba(17, 39, 80, 0.09);
}

.asx-theme-dark .asx-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(180deg, var(--surface), var(--surface-2));
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.asx-hero-grid {
    align-items: center;
}

.asx-media-card {
    margin-top: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 14px 30px rgba(16, 33, 66, 0.14);
}

.asx-theme-dark .asx-media-card {
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.asx-media-card-hero {
    margin-top: 0;
}

.asx-media-img {
    display: block;
    width: 100%;
    height: auto;
}

.asx-media-cover {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.asx-media-wide {
    aspect-ratio: 21 / 9;
}

.asx-media-hero {
    aspect-ratio: 4 / 3;
}

.asx-theme-light .asx-hero-card {
    background:
        linear-gradient(150deg, rgba(92, 45, 145, 0.11), rgba(156, 39, 176, 0.07) 40%, rgba(255, 255, 255, 0.95) 82%),
        var(--surface);
}

.asx-theme-dark .asx-hero-card {
    background:
        linear-gradient(150deg, rgba(155, 81, 224, 0.18), rgba(255, 87, 169, 0.1) 42%, rgba(19, 15, 40, 0.95) 84%),
        var(--surface);
}

.asx-theme-light .asx-cta-card {
    background:
        linear-gradient(150deg, rgba(156, 39, 176, 0.1), rgba(92, 45, 145, 0.08) 44%, rgba(255, 255, 255, 0.95) 85%),
        var(--surface);
}

.asx-theme-dark .asx-cta-card {
    background:
        linear-gradient(150deg, rgba(255, 87, 169, 0.12), rgba(155, 81, 224, 0.1) 44%, rgba(19, 15, 40, 0.95) 84%),
        var(--surface);
}

.asx-card-highlight {
    border-color: rgba(92, 45, 145, 0.42);
}

.asx-theme-dark .asx-card-highlight {
    border-color: rgba(155, 81, 224, 0.45);
}

.asx-eyebrow {
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 0.09em;
}

.asx-lead {
    color: var(--text2);
    max-width: 82ch;
}

.asx-hero-actions {
    display: flex;
    flex-wrap: wrap;
}

.asx-code {
    font-family: var(--font-mono);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    overflow-x: auto;
}

.asx-theme-light .asx-code {
    background: #f7faff;
    color: #0f223d;
}

.asx-theme-dark .asx-code {
    background: #0b1628;
    color: #dce9ff;
}

.asx-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--text2);
}

.asx-theme-light .asx-badge {
    background: rgba(255, 255, 255, 0.72);
}

.asx-theme-dark .asx-badge {
    background: rgba(15, 23, 40, 0.68);
}

.asx-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text2);
}

.asx-list li {
    margin: 0.34rem 0;
}

.asx-whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(155deg, #2ddf79, #20be67);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.asx-whatsapp-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

.asx-whatsapp-icon {
    width: 28px;
    height: 28px;
    display: block;
    fill: currentColor;
}

.asx-theme-light .mud-button-root,
.asx-theme-dark .mud-button-root {
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.asx-theme-dark .mud-button-filled-primary:hover,
.asx-theme-light .mud-button-filled-primary:hover {
    transform: translateY(-2px);
}

.asx-theme-dark .mud-button-filled-primary {
    box-shadow: 0 10px 24px rgba(155, 81, 224, 0.3);
}
.asx-theme-dark .mud-button-filled-primary:hover {
    box-shadow: 0 14px 28px rgba(155, 81, 224, 0.45);
}

.asx-theme-light .mud-button-filled-primary {
    box-shadow: 0 10px 22px rgba(92, 45, 145, 0.22);
}
.asx-theme-light .mud-button-filled-primary:hover {
    box-shadow: 0 14px 26px rgba(92, 45, 145, 0.35);
}

@media (max-width: 1120px) {
    .asx-brand-sub {
        display: none;
    }
}

@media (max-width: 960px) {
    .asx-section {
        padding: 46px 0;
    }

    .asx-product-intro {
        padding-bottom: 16px;
    }

    .asx-home-banner-clean {
        min-height: 300px;
    }

    .asx-media-wide {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 600px) {
    .asx-section {
        padding: 34px 0;
    }

    .asx-section-title {
        max-width: 100%;
    }

    .asx-home-hero {
        padding-top: 8px;
    }

    .asx-home-title {
        font-size: clamp(1.65rem, 8vw, 2.3rem) !important;
    }

    .asx-home-banner-clean {
        min-height: 215px;
    }

    .asx-home-contact-actions .mud-button-root {
        width: 100%;
    }

    .asx-product-footer-actions .mud-button-root {
        justify-content: center;
    }

    .asx-whatsapp-fab {
        right: 14px;
        bottom: 14px;
    }
}

/* ── Banner Carrossel ─────────────────────────────────────────────────────── */
.asx-banner-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    background: #090618;
}

.asx-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.75s ease;
    pointer-events: none;
}

.asx-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.asx-carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Botões prev / next ─────────────────────────────────────────────────── */
.asx-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    background: rgba(11, 7, 25, 0.58);
    backdrop-filter: blur(8px);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.32);
}

.asx-carousel-btn svg {
    width: 20px;
    height: 20px;
}

.asx-carousel-btn:hover {
    background: rgba(92, 45, 145, 0.82);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 24px rgba(92, 45, 145, 0.4);
}

.asx-theme-dark .asx-carousel-btn {
    background: rgba(155, 81, 224, 0.28);
}

.asx-theme-dark .asx-carousel-btn:hover {
    background: rgba(155, 81, 224, 0.72);
}

.asx-carousel-prev {
    left: 14px;
}

.asx-carousel-next {
    right: 14px;
}

/* ── Dots ─────────────────────────────────────────────────────────────────── */
.asx-carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.asx-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.42);
    transition: background 0.25s ease, width 0.25s ease;
    padding: 0;
}

.asx-carousel-dot.active {
    background: #ffffff;
    width: 24px;
}

.asx-carousel-audio-toggle {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(9, 6, 24, 0.74);
    color: #ffffff;
    font: 600 0.75rem/1 var(--font-body);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.asx-carousel-audio-toggle:hover {
    background: rgba(92, 45, 145, 0.86);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .asx-banner-carousel {
        aspect-ratio: 16 / 9;
        min-height: 200px;
        border-radius: 12px;
    }

    .asx-carousel-btn {
        width: 36px;
        height: 36px;
    }

    .asx-carousel-btn svg {
        width: 16px;
        height: 16px;
    }
}
