:root {
    --navy: #0D1B35;
    --navy-deep: #0A1428;
    --blue-pri: #0064FF;
    --blue-dark: #0049B2;
    --cyan: #49D7FF;
    --cyan-light: #EBFBFF;
    --white: #FFFFFF;
    --gray-400: #7A94C7;
    --gray-600: #3D5A9A;
    --text-on-dark: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.45);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-blue: rgba(0, 100, 255, 0.25);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--navy-deep);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-dark);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-pri);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(8px);
    }

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

@keyframes float {

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

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

@keyframes pulse-ring {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 100, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(0, 100, 255, 0);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes shimmer {
    from {
        transform: translateX(-100%) skewX(-15deg);
    }

    to {
        transform: translateX(250%) skewX(-15deg);
    }
}

@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;
    }
}

@keyframes spin-conic {
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientBorder {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.animate-up {
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.d1 {
    animation-delay: 0.1s;
}

.d2 {
    animation-delay: 0.25s;
}

.d3 {
    animation-delay: 0.4s;
}

.d4 {
    animation-delay: 0.55s;
}

.d5 {
    animation-delay: 0.7s;
}

.float {
    animation: float 7s ease-in-out infinite;
}

.float2 {
    animation: float 9s ease-in-out infinite;
    animation-delay: 1.5s;
}

.animate-beam-1 {
    animation: beam-fall 6s linear infinite;
}

.animate-beam-2 {
    animation: beam-fall 8s linear infinite;
    animation-delay: 2s;
}

.animate-beam-3 {
    animation: beam-fall 7s linear infinite;
    animation-delay: 4s;
}

.animate-beam-4 {
    animation: beam-fall 9s linear infinite;
    animation-delay: 1s;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ──────────── NAV ──────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(10, 20, 40, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    padding: 0 3rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

nav.scrolled {
    background: rgba(10, 20, 40, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.nav-tel {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.99rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-tel:hover {
    color: var(--cyan);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    background: var(--blue-pri);
    color: white;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.btn-nav:hover {
    background: #0055DD;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 100, 255, 0.4);
}

/* ──────────── HERO WRAPPER ──────────── */
/* Hero = full viewport, uses flex-column so marquee snaps to the bottom */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* background layers */
/* .hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('https://tentechbrasil.com.br/wp-content/uploads/2025/03/hero-bg4.jpg') center/cover no-repeat;
    opacity: 0.10;
    filter: blur(3px);
} */
.hero-bg-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    /* removido: opacity, filter e background-image */
}
.hero-bg-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.10;
    filter: blur(3px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 100, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 100, 255, 0.055) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 900px;
    height: 900px;
    opacity: 0.18;
    background: radial-gradient(circle, #0064FF 0%, transparent 65%);
    top: -30%;
    right: -22%;
}

.hero-orb-2 {
    width: 600px;
    height: 600px;
    opacity: 0.14;
    background: radial-gradient(circle, #49D7FF 0%, transparent 65%);
    bottom: -20%;
    left: -12%;
}

/* vertical beam columns */
.vert-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    overflow: hidden;
}

.vert-col {
    flex: 1;
    border-left: 1px solid rgba(0, 100, 255, 0.07);
    position: relative;
    overflow: hidden;
}

.vert-col:last-child {
    border-right: 1px solid rgba(0, 100, 255, 0.07);
}

.vert-beam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(73, 215, 255, 0.9) 50%, transparent 100%);
}

/* ──────────── HERO CONTENT (grows to fill space above marquee) ──────────── */
.hero-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + 4rem) 3rem 5rem;
    /* 80px = nav height, 5rem covers absolute ticker */
    position: relative;
    z-index: 10;
}

.hero-inner {
    max-width: 1340px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* LEFT: copy */
.hero-copy {}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(0, 100, 255, 0.12);
    border: 1px solid rgba(0, 100, 255, 0.32);
    color: var(--cyan);
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
    animation: pulse-ring 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.7rem, 4.5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 1.4rem;
}

.hero-title .accent {
    background: linear-gradient(130deg, var(--blue-pri) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 2.75rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-pri);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.95rem 2.1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.btn-primary:hover {
    background: #0055DD;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 100, 255, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.95rem 2.1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(73, 215, 255, 0.35);
}

/* trust micro-row */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.52);
}

.hero-trust-item iconify-icon {
    font-size: 1rem;
}

/* RIGHT: mockup image */
.hero-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-glow {
    position: absolute;
    inset: -60px;
    background: radial-gradient(ellipse at 55% 50%, rgba(0, 100, 255, 0.28) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-mockup {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 18px;
    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 0 80px rgba(0, 100, 255, 0.18);
    animation: float 7s ease-in-out infinite;
    display: block;
}

/* ──────────── MARQUEE TICKER (anchored at hero bottom) ──────────── */
.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    border-top: 1px solid rgba(0, 100, 255, 0.2);
    background: rgba(0, 20, 55, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 0.9rem 0;
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    padding: 0 2.5rem;
    border-right: 1px solid rgba(0, 100, 255, 0.18);
}

.marquee-item .mi-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue-pri);
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.marquee-item .mi-hi {
    color: var(--cyan);
}

/* ──────────── SECTIONS ──────────── */
section {
    padding: 6rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
}

.max-w {
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-pri);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--blue-pri);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray-400);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.75;
}

.divider {
    width: 32px;
    height: 2px;
    background: var(--blue-pri);
    margin: 1rem 0 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

/* ──────────── FEATURE CARDS (section 2) ──────────── */
.feat-card {
    background: rgba(0, 73, 178, 0.08);
    border: 1px solid rgba(0, 100, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-pri), var(--cyan));
    opacity: 0;
    transition: opacity 0.3s;
}

.feat-card:hover {
    border-color: rgba(0, 100, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feat-card:hover::before {
    opacity: 1;
}

.feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 100, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.feat-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feat-desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.65;
}

/* ──────────── HOW IT WORKS (section 3) ──────────── */
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    background: rgba(0, 73, 178, 0.06);
    border: 1px solid rgba(0, 100, 255, 0.12);
    transition: all 0.3s;
}

.step-item:hover {
    border-color: rgba(0, 100, 255, 0.3);
    background: rgba(0, 73, 178, 0.12);
}

.step-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--blue-pri);
    font-weight: 700;
    min-width: 28px;
}

.step-text {
    font-size: 0.98rem;
    color: var(--text-on-dark);
    line-height: 1.5;
}

.how-feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.how-feat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.how-feat:hover {
    border-color: rgba(73, 215, 255, 0.2);
    background: rgba(0, 100, 255, 0.05);
}

.how-feat-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--cyan);
}

.how-feat-desc {
    font-size: 0.78rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.mobile-img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    filter: drop-shadow(0 40px 80px rgba(0, 100, 255, 0.45));
    margin: 0 auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.mobile-img:hover {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 50px 100px rgba(0, 100, 255, 0.55));
}

/* ── Premium wrapper for Como Funciona image ── */
.mobile-img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

/* Radial glow behind image */
.mobile-img-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at 50% 45%, rgba(0, 100, 255, 0.30) 0%, rgba(73, 215, 255, 0.10) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Pulsating ring */
.mobile-img-ring {
    position: absolute;
    inset: -20px;
    border-radius: 24px;
    border: 2px solid rgba(0, 100, 255, 0.25);
    animation: mobile-ring-pulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes mobile-ring-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        border-color: rgba(73, 215, 255, 0.5);
        transform: scale(1.03);
    }
}

/* Subtle reflection below */
.mobile-img-reflection {
    position: absolute;
    bottom: -30px;
    left: 10%;
    right: 10%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 100, 255, 0.12), transparent);
    border-radius: 50%;
    filter: blur(16px);
    pointer-events: none;
    z-index: 0;
}

/* ──────────── EXAMPLES (section 4) ──────────── */
.examples-section {
    background: rgba(0, 0, 0, 0.15);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.area-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: default;
}

.area-card:hover {
    border-color: rgba(0, 100, 255, 0.35);
    background: rgba(0, 100, 255, 0.07);
    transform: translateY(-3px);
}

.area-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: block;
}

.area-name {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.area-desc {
    font-size: 0.90rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ──────────── CASE (section 5) ──────────── */
.case-section {
    background: linear-gradient(135deg, rgba(0, 73, 178, 0.12) 0%, rgba(0, 100, 255, 0.05) 100%);
}

.case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(73, 215, 255, 0.15);
    border-radius: 20px;
    min-height: 500px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 2rem;
    font-size: 10rem;
    color: rgba(0, 100, 255, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.case-quote {
    font-size: 1.1rem;
    color: var(--text-on-dark);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 2rem;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-card {
    background: rgba(0, 73, 178, 0.15);
    border: 1px solid rgba(0, 100, 255, 0.2);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-pri), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* ──────────── ABOUT (section 6) ──────────── */
.oracle-logo {
    width: 180px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-text {
    font-size: 0.92rem;
    color: var(--text-on-dark);
    line-height: 1.8;
}

/* ──────────── COMPLIANCE (section 7) ──────────── */
.compliance-section {
    background: rgba(0, 0, 0, 0.1);
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-on-dark);
    line-height: 1.6;
}

.check-item iconify-icon {
    font-size: 1rem;
    color: #4ADE80;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.cert-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.3s;
}

.cert-card:hover {
    border-color: rgba(0, 100, 255, 0.3);
}

.cert-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cert-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-on-dark);
    line-height: 1.3;
}

.cert-org {
    font-size: 0.65rem;
    color: var(--gray-400);
}

.ethics-box {
    background: rgba(0, 100, 255, 0.08);
    border: 1px solid rgba(0, 100, 255, 0.2);
    border-radius: 14px;
    padding: 1.75rem;
    margin-top: 2rem;
}

.ethics-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-pri);
    margin-bottom: 0.75rem;
}

.ethics-text {
    font-size: 0.82rem;
    color: var(--text-on-dark);
    line-height: 1.7;
}

.ethics-text a {
    color: var(--cyan);
    text-decoration: none;
}

.ethics-text a:hover {
    text-decoration: underline;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(73, 215, 255, 0.35);
    color: var(--cyan);
    background: transparent;
    text-decoration: none;
    transition: all 0.25s;
    margin-top: 1.25rem;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-outline:hover {
    background: rgba(73, 215, 255, 0.1);
}

/* ──────────── CTA FOOTER ──────────── */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.1), rgba(73, 215, 255, 0.05));
    text-align: center;
    padding: 7rem 2rem;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1rem;
    color: var(--gray-400);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-contact {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    max-width: 860px;
    margin: 3rem auto 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: left;
    transition: border-color 0.3s;
}

.contact-card:hover {
    border-color: rgba(0, 100, 255, 0.3);
}

.contact-card-icon {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    display: block;
    color: var(--cyan);
}

.contact-card-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.35rem;
}

.contact-card-val {
    font-size: 0.88rem;
    font-weight: 600;
    color: white;
}

/* ──────────── FOOTER ──────────── */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.25s;
}

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

.footer-meta {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

/* ──────────── GLASS BUTTON ──────────── */
.btn-glass {
    display: inline-flex;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.05));
    border-radius: 9999px;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 100, 255, 0.3), 0 8px 40px rgba(0, 100, 255, 0.15);
    text-decoration: none;
}

.btn-glass:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px 10px rgba(0, 100, 255, 0.45);
}

.btn-glass .spin-ring {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 9999px;
}

.btn-glass .spin-ring::before {
    content: '';
    position: absolute;
    inset: -100%;
    width: 300%;
    height: 300%;
    left: -100%;
    top: -100%;
    animation: spin-conic 3s linear infinite;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 80deg, rgba(73, 215, 255, 0.9) 180deg, transparent 280deg, transparent 360deg);
}

@keyframes spin-conic {
    to {
        transform: rotate(360deg);
    }
}

.btn-glass .glass-bg {
    position: absolute;
    inset: 1px;
    border-radius: 9999px;
    backdrop-filter: blur(12px);
    background: rgba(10, 20, 40, 0.92);
    z-index: 0;
}

.btn-glass .glass-content {
    z-index: 10;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.7rem 1.4rem 0.7rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    position: relative;
    border-radius: 9999px;
}

.btn-glass .glass-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(to bottom, var(--blue-pri), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 100, 255, 0.4);
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.btn-glass:hover .glass-icon {
    transform: scale(1.1);
}

.btn-glass .glass-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 2px;
    transition: transform 0.3s;
    font-size: 0.75rem;
}

.btn-glass:hover .glass-arrow {
    transform: translateX(2px);
}

@media(max-width:960px) {
    .hero-body {
        padding: calc(80px + 2rem) 1.5rem 2rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-img-wrap {
        order: -1;
        max-width: 460px;
        margin: 0 auto;
    }

    .how-grid,
    .grid-2,
    .about-cols,
    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .cta-contact {
        grid-template-columns: 1fr;
    }

    .case-stats {
        grid-template-columns: 1fr;
    }

    nav .nav-links {
        display: none;
    }

    nav .nav-tel {
        display: none;
    }
}

/* ── hero-ticker responsive ── */
@media (max-width: 768px) {
    .hero-ticker {
        padding: 0.65rem 0;
    }

    .marquee-item {
        font-size: 0.65rem;
        letter-spacing: 0.14em;
        padding: 0 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-ticker {
        padding: 0.5rem 0;
    }

    .marquee-item {
        font-size: 0.58rem;
        letter-spacing: 0.10em;
        padding: 0 1.2rem;
    }
}

/* ── Case video embed ── */
.case-video-wrap {
    margin-top: 1rem;
}

.case-video-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.case-video-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--cyan);
}

.case-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(73, 215, 255, 0.25);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 100, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    background: #000;
}

.case-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}



/* ═══════════════════════════════════════════════════════
   APRESENTAÇÃO  — GSAP / ScrollTrigger / Splitting
═══════════════════════════════════════════════════════ */

#apresentacao {
    padding: 0;
    border-bottom: none;
    background: var(--navy-deep);
    overflow: hidden;
    position: relative;
}

/* ── Intro: full-viewport pin headline ── */
.ap-pin-wrap {
    position: relative;
    will-change: transform;
}

.ap-intro {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 8rem;
    position: relative;
    overflow: hidden;
}

.ap-intro-mockup {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 auto 3rem;
    z-index: 2;
}

/* ambient orbs */
.ap-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
}

.ap-orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.2) 0%, transparent 65%);
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
}

.ap-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(73, 215, 255, 0.12) 0%, transparent 65%);
    bottom: -15%;
    right: 0;
}

.ap-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.1) 0%, transparent 65%);
    bottom: -10%;
    left: -5%;
}

/* subtle grid */
.ap-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 100, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 100, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent);
}

.ap-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-pri);
    margin-bottom: 2.5rem;
    opacity: 0;
}

.ap-eyebrow-dash {
    width: 24px;
    height: 1px;
    background: var(--blue-pri);
}

/* Splitting headline */
.ap-headline {
    font-size: clamp(3.2rem, 7vw, 6.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 960px;
    margin: 0 auto 2.5rem;
}

/* Splitting creates .word spans wrapping .char spans */
.ap-headline .word {
    overflow: hidden;
    display: inline-block;
    margin-right: 0.22em;
    vertical-align: bottom;
}

.ap-headline .char {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}

.ap-headline .word-accent .char {
    background: linear-gradient(130deg, #0064FF 0%, #49D7FF 60%, #0064FF 120%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ap-grad-flow 4s linear infinite;
}

@keyframes ap-grad-flow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.ap-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 580px;
    line-height: 1.75;
    margin: 0 auto 3.5rem;
    opacity: 0;
    transform: translateY(24px);
}

/* scroll indicator */
.ap-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
}

.ap-scroll-hint span {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.ap-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 100, 255, 0.6), transparent);
    animation: ap-line-fall 1.8s ease-in-out infinite;
}

@keyframes ap-line-fall {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ── THIN GRADIENT RULE ── */
.ap-rule {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 100, 255, 0.35) 20%,
            rgba(73, 215, 255, 0.55) 50%,
            rgba(0, 100, 255, 0.35) 80%,
            transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
}

/* ── SPLIT PANEL: mockup + copy ── */
.ap-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    position: relative;
}

/* left = image pane */
.ap-img-pane {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 4rem;
    background: linear-gradient(135deg,
            rgba(0, 20, 60, 0.5) 0%,
            rgba(0, 10, 30, 0.8) 100%);
}

.ap-img-halo {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 55% 50%,
            rgba(0, 100, 255, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.ap-img-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 100, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 100, 255, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 65% 65% at 50% 50%, black, transparent);
}

/* floating data chips */
.ap-chip {
    position: absolute;
    background: rgba(8, 16, 36, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 100, 255, 0.28);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 0.99rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    z-index: 5;
    opacity: 0;
}

.ap-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ap-chip-1 {
    top: 12%;
    left: 6%;
}

.ap-chip-2 {
    top: 20%;
    right: 4%;
}

.ap-chip-3 {
    bottom: 26%;
    left: 5%;
}

.ap-chip-4 {
    bottom: 14%;
    right: 6%;
}

/* mockup image */
.ap-mockup-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 580px;
}

.ap-mockup {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow:
        0 60px 140px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 0 100px rgba(0, 100, 255, 0.18);
    opacity: 0;
    transform: translateY(50px) scale(0.96);
}

/* ── Apple-style Swiper carousel ── */
.ap-swiper-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 580px;
    perspective: 1200px;
    opacity: 0;
    transform: translateY(50px) scale(0.96);
}

.ap-swiper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 60px 140px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 0 100px rgba(0, 100, 255, 0.18);
}

.ap-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    background: #080e1e;
}

.ap-swiper .swiper-slide img {
    width: 100%;
    display: block;
    border-radius: 0;
}

/* Device label overlay */
.ap-slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(to top, rgba(8, 14, 30, 0.92) 0%, rgba(8, 14, 30, 0.6) 50%, transparent 100%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ap-slide-label-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ap-slide-label-text {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.ap-slide-label-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: white;
}

/* Swiper pagination dots */
.ap-swiper .swiper-pagination {
    position: absolute;
    bottom: 10px;
    right: 16px;
    left: auto !important;
    width: auto !important;
    display: flex;
    gap: 6px;
    z-index: 5;
}

.ap-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s;
}

.ap-swiper .swiper-pagination-bullet-active {
    background: var(--cyan);
    box-shadow: 0 0 8px rgba(73, 215, 255, 0.6);
    width: 22px;
    border-radius: 4px;
}

/* Subtle reflection under the swiper */
.ap-swiper-reflection {
    position: relative;
    z-index: 1;
    height: 60px;
    margin-top: -2px;
    background: linear-gradient(to bottom, rgba(0, 100, 255, 0.08), transparent);
    border-radius: 0 0 20px 20px;
    filter: blur(8px);
    opacity: 0.6;
}

/* right = copy pane */
.ap-copy-pane {
    padding: 5rem 5rem 5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* vertical accent line on left edge */
.ap-copy-pane::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent, rgba(0, 100, 255, 0.35) 30%,
            rgba(73, 215, 255, 0.5) 60%, transparent);
}

.ap-copy-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    transform: translateX(-20px);
}

.ap-copy-eyebrow-line {
    width: 20px;
    height: 1px;
    background: var(--cyan);
}

.ap-copy-h2 {
    font-size: clamp(2rem, 3vw, 2.85rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.4rem;
    opacity: 0;
    transform: translateY(22px);
}

.ap-copy-h2 strong {
    color: var(--cyan);
}

.ap-copy-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(16px);
}

/* feature list */
.ap-feat-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.75rem;
}

.ap-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateX(24px);
    transition: border-color 0.3s, background 0.3s;
}

.ap-feat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--blue-pri), var(--cyan));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0 2px 2px 0;
}

/* GSAP will handle the initial reveal; hover keeps the bar */
.ap-feat-item:hover {
    border-color: rgba(0, 100, 255, 0.28);
    background: rgba(0, 100, 255, 0.06);
}

.ap-feat-item:hover::before {
    transform: scaleY(1);
}

.ap-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.ap-feat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

.ap-feat-title {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.ap-feat-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.55;
}

/* CTA row */
.ap-cta-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(14px);
}

.ap-text-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s, gap 0.2s;
}

.ap-text-link:hover {
    color: var(--cyan);
    gap: 0.7rem;
}

/* ── 3 CAPABILITY CARDS ── */
.ap-cards-section {
    padding: 2rem 1rem 2rem;
    position: relative;
}

.ap-cards-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 15, 45, 0) 0%,
            rgba(0, 30, 80, 0.1) 50%,
            rgba(0, 15, 45, 0) 100%);
    pointer-events: none;
}

.ap-cards-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.ap-cards-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ap-cards-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-pri);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
}

.ap-cards-eyebrow::before,
.ap-cards-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--blue-pri);
}

.ap-cards-h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(20px);
}

.ap-cards-h3 em {
    font-style: normal;
    color: var(--cyan);
}

.ap-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ap-card {
    position: relative;
    border-radius: 22px;
    padding: 2.25rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateY(40px);
    transition: box-shadow 0.4s, border-color 0.3s;
}

/* animated gradient border */
.ap-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg, var(--blue-pri), var(--cyan), var(--blue-pri));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.ap-card:hover::before {
    opacity: 1;
    animation: gradientBorder 3s ease infinite;
}

.ap-card:hover {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(0, 100, 255, 0.1);
    border-color: transparent;
    transform: translateY(-6px) !important;
}

/* subtle glow inside card top */
.ap-card-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}

.ap-card-num {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.1);
}

.ap-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.ap-card-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
}

.ap-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.ap-card-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.ap-card-stat {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ap-stat-num {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(130deg, var(--blue-pri), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ap-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

/* section bottom rule */
.ap-section-end {
    height: 1px;
    background: linear-gradient(90deg,
            transparent, rgba(0, 100, 255, 0.2) 30%,
            rgba(73, 215, 255, 0.3) 50%,
            rgba(0, 100, 255, 0.2) 70%, transparent);
}

/* ── Responsive ── */
@media(max-width:960px) {
    .ap-intro {
        padding: 5rem 1.5rem 6rem;
    }

    .ap-headline {
        font-size: clamp(2.4rem, 9vw, 4rem);
    }

    .ap-split {
        grid-template-columns: 1fr;
    }

    .ap-img-pane {
        min-height: 400px;
        padding: 3rem 1.5rem;
        order: -1;
    }

    .ap-copy-pane {
        padding: 3rem 1.5rem;
    }

    .ap-copy-pane::before {
        display: none;
    }

    .ap-chip-1,
    .ap-chip-2,
    .ap-chip-3,
    .ap-chip-4 {
        display: none;
    }

    .ap-cards-section {
        padding: 4rem 1.5rem 5rem;
    }

    .ap-cards-grid {
        grid-template-columns: 1fr;
    }

    .ap-cards-header {
        margin-bottom: 2.5rem;
    }
}

/* ──────────── MAESTRO IA BLOCK (inside Apresentação) ──────────── */
.mia-block {
    position: relative;
    overflow: hidden;
}
.mia-block-rule {
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(0,100,255,0.3) 20%,
        rgba(73,215,255,0.5) 50%,
        rgba(0,100,255,0.3) 80%,
        transparent);
    margin: 0;
}
.mia-block-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2rem 3rem 7rem;
    position: relative;
    z-index: 2;
}
/* .mia-video-inner video {
    width: 100%;
    display: block;
    border-radius: 22px;
    min-height: 500px;  
    object-fit: cover;  
} */
/* ambient orbs */
.mia-block-orb-1 {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    opacity: 0.12;
    background: radial-gradient(circle, #0064FF 0%, transparent 65%);
    top: -20%; left: -10%;
}
.mia-block-orb-2 {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.09;
    background: radial-gradient(circle, #49D7FF 0%, transparent 65%);
    bottom: -15%; right: -8%;
}
/* header */
.mia-header {
    text-align: center;
    margin-bottom: 4rem;
}
.mia-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-pri);
    margin-bottom: 1.75rem;
}
.mia-eyebrow::before,
.mia-eyebrow::after {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--blue-pri);
}
.mia-title {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
}
.mia-title .mia-accent {
    background: linear-gradient(130deg, var(--blue-pri) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mia-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}
/* video */
.mia-video-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 60px 140px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.07),
        0 0 80px rgba(0,100,255,0.15);
}
.mia-video-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 23px;
    background: linear-gradient(135deg,
        rgba(0,100,255,0.35),
        rgba(73,215,255,0.2),
        rgba(0,100,255,0.35));
    background-size: 200% 200%;
    animation: gradientBorder 4s ease infinite;
    z-index: 0;
    pointer-events: none;
}
.mia-video-inner {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
}
.mia-video-inner video {
    width: 100%;
    display: block;
    border-radius: 22px;
}
.mia-reflection {
    position: absolute;
    bottom: -40px;
    left: 10%; right: 10%;
    height: 80px;
    background: radial-gradient(ellipse at center,
        rgba(0,100,255,0.2) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}
/* badges */
.mia-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.mia-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    background: rgba(0,100,255,0.1);
    border: 1px solid rgba(0,100,255,0.25);
    color: var(--cyan);
}
.mia-badge iconify-icon { font-size: 0.85rem; }

@media(max-width: 960px) {
    .mia-block-inner { padding: 4rem 1.5rem 5rem; }
    .mia-header { margin-bottom: 2.5rem; }
    .mia-title { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ── Progress Indicator (seção Apresentação) ── */
.ap-progress {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.ap-progress.visible {
    opacity: 1;
    pointer-events: auto;
}
.ap-progress-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-direction: row-reverse;
    cursor: pointer;
}
.ap-progress-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    color: var(--gray-400);
    transition: all 0.35s ease;
    flex-shrink: 0;
    background: rgba(13, 27, 53, 0.7);
    backdrop-filter: blur(6px);
}
.ap-progress-item.active .ap-progress-dot {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: scale(1.25);
    box-shadow: 0 0 12px rgba(73, 215, 255, 0.3);
}
.ap-progress-label {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s ease;
}
.ap-progress-item.active .ap-progress-label {
    opacity: 1;
    transform: translateX(0);
    color: var(--cyan);
}
@media (max-width: 960px) {
    .ap-progress { display: none !important; }
}

/* ──────────── LGPD CARD ──────────── */
.lgpd-card { margin-top:3rem; position:relative; overflow:hidden; border-radius:18px; background:rgba(0,73,178,0.07); border:1px solid rgba(0,100,255,0.18); padding:2.25rem 2.5rem; display:flex; align-items:center; gap:2.5rem; transition:border-color .35s,box-shadow .35s,transform .35s; text-decoration:none; color:inherit; }
.lgpd-card::before { content:''; position:absolute; top:0;left:0;right:0; height:2px; background:linear-gradient(90deg,var(--blue-pri),var(--cyan),var(--blue-pri)); background-size:200% auto; opacity:0; transition:opacity .35s; animation:none; }
.lgpd-card::after { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(0,100,255,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,100,255,0.04) 1px,transparent 1px); background-size:40px 40px; mask-image:radial-gradient(ellipse 80% 80% at 100% 50%,black,transparent); pointer-events:none; }
.lgpd-card:hover { border-color:rgba(0,100,255,0.38); box-shadow:0 20px 60px rgba(0,0,0,0.35),0 0 40px rgba(0,100,255,0.1); transform:translateY(-3px); }
.lgpd-card:hover::before { opacity:1; animation:gradShiftLGPD 2.5s linear infinite; }
@keyframes gradShiftLGPD { 0%{background-position:0% center;} 100%{background-position:200% center;} }
.lgpd-icon-wrap { flex-shrink:0; width:64px; height:64px; border-radius:16px; background:linear-gradient(135deg,rgba(0,100,255,0.25),rgba(0,73,178,0.4)); display:flex; align-items:center; justify-content:center; font-size:1.8rem; position:relative; z-index:1; box-shadow:inset 0 1px 0 rgba(255,255,255,0.1); }
.lgpd-icon-wrap::after { content:''; position:absolute; inset:0; border-radius:16px; background:linear-gradient(135deg,rgba(255,255,255,0.12) 0%,transparent 60%); }
.lgpd-body { flex:1; min-width:0; position:relative; z-index:1; }
.lgpd-badge { display:inline-flex; align-items:center; gap:.4rem; font-family:'DM Mono',monospace; font-size:.62rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:#4ADE80; background:rgba(74,222,128,0.1); border:1px solid rgba(74,222,128,0.22); border-radius:100px; padding:.22rem .7rem; margin-bottom:.85rem; }
.lgpd-badge-dot { width:5px; height:5px; border-radius:50%; background:#4ADE80; animation:pulse-ring 2s ease-in-out infinite; }
.lgpd-title { font-size:1.05rem; font-weight:700; color:white; margin-bottom:.4rem; line-height:1.3; }
.lgpd-desc { font-size:.90rem; color:rgba(255,255,255,0.52); line-height:1.65; max-width:560px; }
.lgpd-pillars { display:flex; gap:1.5rem; margin-top:1.1rem; flex-wrap:wrap; }
.lgpd-pillar { display:flex; align-items:center; gap:.4rem; font-size:.76rem; color:rgba(255,255,255,0.42); }
.lgpd-pillar iconify-icon { font-size:.88rem; color:var(--cyan); }
.lgpd-cta { flex-shrink:0; display:flex; align-items:center; gap:.5rem; font-size:.88rem; font-weight:600; color:var(--cyan); position:relative; z-index:1; white-space:nowrap; transition:gap .25s; }
.lgpd-card:hover .lgpd-cta { gap:.75rem; }
.lgpd-cta-arrow { display:flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:50%; background:rgba(73,215,255,0.12); border:1px solid rgba(73,215,255,0.2); font-size:.88rem; transition:background .25s,transform .25s; }
.lgpd-card:hover .lgpd-cta-arrow { background:rgba(73,215,255,0.22); transform:translateX(3px); }
@media(max-width:768px){ .lgpd-card{flex-direction:column;align-items:flex-start;gap:1.5rem;padding:1.75rem;} .lgpd-cta{align-self:stretch;justify-content:space-between;} .lgpd-pillars{gap:1rem;} }
@media(max-width:480px){ .lgpd-icon-wrap{width:52px;height:52px;font-size:1.5rem;} .lgpd-title{font-size:.96rem;} .lgpd-pillars{flex-direction:column;gap:.6rem;} }

/* ── IMPACT STRIP ── */
.ap-impact-strip {
    position: relative;
    padding: 3.5rem 3rem 4rem;
    background: linear-gradient(180deg,
        rgba(0,15,45,0) 0%,
        rgba(0,30,80,0.14) 40%,
        rgba(0,15,45,0) 100%);
    text-align: center;
    overflow: hidden;
}
.ap-impact-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent, rgba(0,100,255,0.3) 30%,
        rgba(73,215,255,0.5) 50%,
        rgba(0,100,255,0.3) 70%, transparent);
}
.ap-impact-headline {
    margin-bottom: 1rem;
}
.ap-impact-question {
    font-size: clamp(0.8rem, 3.5vw, 3rem);
    font-weight: 200;
    letter-spacing: -0.03em;
    line-height: 0.8;
    color: white;
    max-width: 1624px;
    margin: 0 auto 1.0rem;
}
.ap-impact-pause {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 100;
    color: rgba(255,255,255,0.38);
    font-style: italic;
    letter-spacing: -0.01em;
}
.ap-impact-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.ap-impact-num-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 3.5rem;
}
.ap-impact-num-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom,
        transparent, rgba(0,100,255,0.35) 30%,
        rgba(73,215,255,0.4) 70%, transparent);
}
.ap-impact-num {
    font-size: clamp(1.8rem, 2vw, 4.5rem);
    font-weight: 200;
    letter-spacing: -0.05em;
    background: linear-gradient(130deg, var(--blue-pri), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}
.ap-impact-num-label {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.4);
    max-width: 180px;
    line-height: 1.4;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ap-impact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.ap-impact-relief {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 760px;
}
.ap-impact-relief-accent {
    color: var(--cyan);
    font-weight: 600;
}
.ap-impact-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.ap-impact-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s, gap 0.2s;
}
.ap-impact-link:hover { color: var(--cyan); gap: 0.7rem; }

@media(max-width: 960px) {
    .ap-impact-strip { padding: 2.5rem 1.5rem 3rem; }
    .ap-impact-num-item { padding: 0 2rem; }
    .ap-impact-question { font-size: clamp(1.5rem, 6vw, 2.2rem); }
}
@media(max-width: 600px) {
    .ap-impact-numbers { flex-direction: column; gap: 2rem; }
    .ap-impact-num-divider { display: none; }
    .ap-impact-num-item { padding: 0; }
}

/* ── MIA SPLIT LAYOUT ── */
.mia-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 1rem;
}
.mia-copy {
    display: flex;
    flex-direction: column;
}
.mia-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}
.mia-channel-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.025);
    transition: border-color 0.3s, background 0.3s;
    cursor: default;
}
.mia-channel-item:hover {
    border-color: rgba(0,100,255,0.25);
    background: rgba(0,100,255,0.05);
}
.mia-channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mia-channel-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}
.mia-channel-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}
.mia-screenshot-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mia-screenshot-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at 50% 50%,
        rgba(73,215,255,0.18) 0%,
        rgba(0,100,255,0.12) 40%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.mia-screenshot {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 340px;
    border-radius: 24px;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.08),
        0 0 60px rgba(73,215,255,0.12);
    transform: rotate(2.5deg);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    display: block;
}
.mia-screenshot-wrap:hover .mia-screenshot {
    transform: rotate(0deg) scale(1.02);
}
@media(max-width: 960px) {
    .mia-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .mia-screenshot {
        max-width: 280px;
        margin: 0 auto;
        transform: rotate(0deg);
    }
    .mia-badges {
        justify-content: center !important;
    }
}

/* ── MIA CONTENT SPLIT ── */
.mia-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3.5rem;
}
.mia-right-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Botão play */
/* .mia-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.75rem;
    border-radius: 12px;
    background: rgba(0,100,255,0.12);
    border: 1px solid rgba(0,100,255,0.3);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    width: fit-content;
} */

.mia-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.6rem 1.2rem;  /* ← menor */
    border-radius: 12px;
    background: rgba(0,100,255,0.12);
    border: 1px solid rgba(0,100,255,0.3);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;  /* ← menor */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    width: fit-content;
    margin-top: 1rem;  /* ← espaço acima */
}

.mia-play-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,100,255,0.2), rgba(73,215,255,0.1));
    opacity: 0;
    transition: opacity 0.3s;
}
.mia-play-btn:hover {
    border-color: rgba(73,215,255,0.5);
    box-shadow: 0 8px 32px rgba(0,100,255,0.25);
    transform: translateY(-2px);
}
.mia-play-btn:hover::before { opacity: 1; }
.mia-play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-pri), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,100,255,0.4);
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}
.mia-play-btn:hover .mia-play-icon { transform: scale(1.12); }
.mia-play-text { position: relative; z-index: 1; }
.mia-play-arrow {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    color: var(--cyan);
    transition: transform 0.3s;
}
.mia-play-btn:hover .mia-play-arrow { transform: translateX(3px); }

/* ── MIA MODAL ── */
.mia-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mia-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.mia-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5,10,25,0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
}
.mia-modal-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    background: rgba(13,27,53,0.95);
    border: 1px solid rgba(0,100,255,0.2);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow:
        0 60px 140px rgba(0,0,0,0.7),
        0 0 80px rgba(0,100,255,0.12);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mia-modal.open .mia-modal-box {
    transform: translateY(0) scale(1);
}
.mia-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13,27,53,0.95);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    z-index: 2;
}
.mia-modal-close:hover {
    background: rgba(0,100,255,0.2);
    border-color: var(--cyan);
    color: white;
}
.mia-modal-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    line-height: 0;
}
.mia-modal-caption {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}

/* MIA Content Responsive */
@media(max-width: 960px) {
    .mia-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .mia-content .mia-screenshot {
        max-width: 260px;
        margin: 0 auto;
        transform: rotate(0deg);
    }
    .mia-play-btn { width: 100%; justify-content: center; }
    .mia-modal-box { padding: 1rem; }
}

/* ══════════════════════════════════
   WIZARD MODAL
══════════════════════════════════ */
.wiz-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.wiz-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.wiz-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5,10,25,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}
.wiz-drawer {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    height: 100%;
    background: rgba(10,18,38,0.98);
    border-left: 1px solid rgba(0,100,255,0.2);
    padding: 2.5rem 2rem 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
    box-shadow: -40px 0 120px rgba(0,0,0,0.5);
}
.wiz-overlay.open .wiz-drawer {
    transform: translateX(0);
}
.wiz-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    flex-shrink: 0;
}
.wiz-close:hover {
    background: rgba(0,100,255,0.2);
    border-color: var(--cyan);
    color: white;
}
.wiz-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-pri);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.wiz-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--blue-pri);
}
.wiz-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: white;
}
.wiz-accent {
    background: linear-gradient(130deg, var(--blue-pri), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wiz-subtitle {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* Steps indicator */
.wiz-steps {
    display: flex;
    align-items: center;
    gap: 0;
}
.wiz-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
}
.wiz-step-dot::after {
    content: attr(data-step);
}
.wiz-step-dot.active {
    border-color: var(--cyan);
    background: rgba(73,215,255,0.12);
    color: var(--cyan);
    box-shadow: 0 0 12px rgba(73,215,255,0.25);
}
.wiz-step-dot.done {
    border-color: #4ADE80;
    background: rgba(74,222,128,0.12);
    color: #4ADE80;
}
.wiz-step-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
    transition: background 0.3s;
}
.wiz-step-line.done {
    background: rgba(74,222,128,0.4);
}

/* Panels */
.wiz-panel {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}
.wiz-panel.active {
    display: flex;
}
.wiz-question {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    line-height: 1.45;
}
.wiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.wiz-opt {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.025);
    color: white;
    cursor: pointer;
    transition: all 0.25s;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
}
.wiz-opt iconify-icon {
    font-size: 1.4rem;
    color: var(--cyan);
    flex-shrink: 0;
}
.wiz-opt-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.wiz-opt-desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
}
.wiz-opt:hover {
    border-color: rgba(0,100,255,0.35);
    background: rgba(0,100,255,0.07);
    transform: translateX(4px);
}
.wiz-opt.selected {
    border-color: var(--cyan);
    background: rgba(73,215,255,0.08);
    box-shadow: 0 0 20px rgba(73,215,255,0.1);
}

/* Form */
.wiz-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.wiz-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.wiz-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.wiz-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.25s;
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
}
.wiz-input:focus {
    border-color: var(--blue-pri);
    box-shadow: 0 0 0 3px rgba(0,100,255,0.15);
    background: rgba(255,255,255,0.07);
}
.wiz-input::placeholder { color: rgba(255,255,255,0.25); }
.wiz-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    padding: 0.95rem 1.5rem;
}
.wiz-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    justify-content: center;
}

/* Mobile bottom sheet */
@media(max-width: 640px) {
    .wiz-overlay {
        align-items: flex-end;
        justify-content: stretch;
    }
    .wiz-drawer {
        max-width: 100%;
        height: 92vh;
        border-left: none;
        border-top: 1px solid rgba(0,100,255,0.2);
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
    }
    .wiz-overlay.open .wiz-drawer {
        transform: translateY(0);
    }
}

/* ══════════════════════════════════
   PROVA SOCIAL
══════════════════════════════════ */
.ps-section {
    background: linear-gradient(135deg, rgba(0,73,178,0.08) 0%, rgba(0,100,255,0.03) 100%);
    position: relative;
    overflow: hidden;
}

.ps-section::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    opacity: 0.1;
    background: radial-gradient(circle, #0064FF 0%, transparent 65%);
    top: -20%; right: -10%;
}

.ps-header { margin-bottom: 3rem; }

.ps-swiper-wrap {
    position: relative;
    padding: 0 3.5rem 3.5rem;
}

.ps-btn-prev,
.ps-btn-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s;
}
.ps-btn-prev { left: 0; }
.ps-btn-next { right: 0; }
.ps-btn-prev:hover,
.ps-btn-next:hover {
    background: rgba(0,100,255,0.2);
    border-color: var(--cyan);
    color: white;
    box-shadow: 0 0 20px rgba(73,215,255,0.2);
}

.ps-swiper { overflow: hidden; border-radius: 4px; }
.ps-swiper .swiper-slide { height: auto; }

.ps-card {
    position: relative;
    background: rgba(0,73,178,0.08);
    border: 1px solid rgba(0,100,255,0.15);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.ps-card-top-border {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-pri), var(--cyan));
    opacity: 0;
    transition: opacity 0.3s;
}
.ps-card:hover .ps-card-top-border { opacity: 1; }
.ps-card:hover {
    border-color: rgba(0,100,255,0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(0,100,255,0.08);
}

.ps-card-shimmer {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    pointer-events: none;
    z-index: 3;
    transition: none;
}
.ps-card:hover .ps-card-shimmer {
    animation: shimmer 1s ease-in-out forwards;
}

.ps-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #050a18;
    flex-shrink: 0;
}
/* .ps-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    opacity: 0.9;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0,20,60,0.95) 0%, rgba(0,10,30,0.98) 100%);
    transition: opacity 0.3s, transform 0.5s;
} */
.ps-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    opacity: 0.9;
    padding: 2.5rem;
    background: #ffffff;
    transition: opacity 0.3s, transform 0.5s;
}
.ps-card:hover .ps-video-thumb {
    opacity: 1;
    transform: scale(1.04);
}

.ps-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(5,10,30,0.75) 0%,
        rgba(5,10,30,0.15) 50%,
        rgba(5,10,30,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}
.ps-card:hover .ps-video-overlay {
    background: linear-gradient(to top,
        rgba(5,10,30,0.65) 0%,
        rgba(0,100,255,0.06) 50%,
        transparent 100%);
}

.ps-play-btn {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(to bottom, var(--blue-pri), var(--blue-dark));
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0,100,255,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse-ring 2.5s ease-in-out infinite;
}
.ps-card:hover .ps-play-btn {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(0,100,255,0.55);
    animation: none;
}

.ps-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}
.ps-city-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.2rem;
}
.ps-city-badge iconify-icon { font-size: 0.75rem; }
.ps-name {
    font-size: 0.99rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}
.ps-role {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

.ps-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    align-items: center;
    z-index: 5;
}
.ps-pagination .swiper-pagination-bullet {
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s;
    cursor: pointer;
}
.ps-pagination .swiper-pagination-bullet-active {
    background: var(--cyan);
    width: 20px;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(73,215,255,0.5);
}

.ps-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.ps-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.ps-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5,10,25,0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
}
.ps-modal-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    background: rgba(13,27,53,0.97);
    border: 1px solid rgba(0,100,255,0.2);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow:
        0 60px 140px rgba(0,0,0,0.7),
        0 0 80px rgba(0,100,255,0.1);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.ps-modal.open .ps-modal-box {
    transform: translateY(0) scale(1);
}
.ps-modal-close {
    position: absolute;
    top: -14px; right: -14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(13,27,53,0.95);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    z-index: 2;
}
.ps-modal-close:hover {
    background: rgba(0,100,255,0.2);
    border-color: var(--cyan);
    color: white;
}
.ps-modal-video-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    line-height: 0;
}
.ps-modal-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ps-modal-info-city {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.25rem;
}
.ps-modal-info-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}
.ps-modal-info-role {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

@media(max-width: 960px) {
    .ps-swiper-wrap { padding: 0 0 3rem; }
    .ps-btn-prev,
    .ps-btn-next { display: none; }
}

