/* ════════════════════════════════════════════════
   ZÊNITE SOFTWARE — Styles
   Inspirado em: Steam Homebrew (steambrew.app)
   Paleta: Azul Zênite em fundo escuro atmosférico
   ════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────── */
:root {
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Backgrounds */
    --bg:         #080c14;
    --bg-surface: #0c1220;
    --bg-card:    rgba(255, 255, 255, 0.03);
    --bg-card-hov:rgba(255, 255, 255, 0.06);

    /* Borders */
    --border:     rgba(255, 255, 255, 0.07);
    --border-hov: rgba(43, 127, 255, 0.4);

    /* Text */
    --text:       #e2e8f2;
    --text-muted: #64748b;
    --text-dim:   #475569;

    /* Accent (brand blue) */
    --accent:       #2b7fff;
    --accent-light: #60a5fa;
    --accent-glow:  rgba(43, 127, 255, 0.25);
    --accent-dim:   rgba(43, 127, 255, 0.1);

    /* UI */
    --radius-sm: 8px;
    --radius:    12px;
    --radius-lg: 20px;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container: 1180px;
    --header-h:  68px;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
    overflow-x: hidden;
    scroll-behavior: auto;
}
html::-webkit-scrollbar {
    display: none; /* Hide scrollbar for cleaner look */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── CONTAINER ──────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* ── TYPOGRAPHY HELPERS ─────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-val { color: var(--accent-light); }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(43, 127, 255, 0.3);
}

.btn-primary:hover {
    background: #3d8fff;
    box-shadow: 0 0 30px rgba(43, 127, 255, 0.5);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 13px 26px;
    font-size: 15px;
}

.btn-full { width: 100%; justify-content: center; }

/* ── SECTION LAYOUT ─────────────────────────────── */
.section {
    padding: 90px 0 70px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    transition: background var(--transition-slow), border-color var(--transition-slow), backdrop-filter var(--transition-slow);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo-img {
    height: 34px;
    width: auto;
    opacity: 0.9;
    transition: opacity var(--transition);
}

.logo-img:hover { opacity: 1; }

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-item:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}

.nav-mobile-actions {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.header.nav-active .mobile-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header.nav-active .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}
.header.nav-active .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 32px 80px;
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #080c14; /* Static sky color */
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0;
    /* Mask out the top part of the image (the sky) so only the mountains are solid */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 20%, black 50%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 20%, black 50%, black 100%);
    animation: hero-bg-in 3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes hero-bg-in {
    0% {
        opacity: 0;
        transform: translateY(150px) scale(1.05);
    }
    100% {
        opacity: 0.55;
        transform: translateY(0) scale(1);
    }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(43, 127, 255, 0.12) 0%, transparent 70%),
        linear-gradient(to bottom,
            rgba(8, 12, 20, 0.3) 0%,
            rgba(8, 12, 20, 0.1) 40%,
            rgba(8, 12, 20, 0.8) 85%,
            rgba(8, 12, 20, 1) 100%
        );
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(43, 127, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(43, 127, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 80%);
}

#hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    opacity: 0;
    animation: hero-content-in 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

@keyframes hero-content-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: dot-pulse 2.5s ease infinite;
}

@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 4px var(--accent); }
    50%       { box-shadow: 0 0 12px var(--accent), 0 0 20px rgba(43,127,255,0.4); }
}

.hero-title {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 620px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    margin-top: 8px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 6px 0;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    animation: scroll-down 1.8s ease infinite;
}

@keyframes scroll-down {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ══════════════════════════════════════════════════
   SOBRE (PILLARS)
   ══════════════════════════════════════════════════ */
.sobre-section {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(43, 127, 255, 0.06) 0%, transparent 60%);
    text-align: center;
}

.sobre-section .section-eyebrow {
    justify-content: center;
}

.sobre-section .section-eyebrow::before { display: none; }

.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.pillar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: left;
    transition: all var(--transition-slow);
}

.pillar:hover {
    background: var(--bg-card-hov);
    border-color: var(--border-hov);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(43,127,255,0.08);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.pillar:hover .pillar-icon {
    background: rgba(43, 127, 255, 0.2);
    box-shadow: 0 0 20px rgba(43,127,255,0.2);
}

.pillar h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.pillar p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   ORBIT INTRO
   ══════════════════════════════════════════════════ */
.orbit-intro-section {
    background: linear-gradient(
        180deg,
        rgba(43, 127, 255, 0.03) 0%,
        transparent 100%
    );
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.orbit-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.orbit-intro-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.orbit-intro-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
}

.orbit-platform-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.platform-badge svg { flex-shrink: 0; }

.accent-badge {
    background: var(--accent-dim);
    border-color: rgba(43,127,255,0.3);
    color: var(--accent-light);
}

.orbit-intro-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Orbit visual card */
.orbit-intro-visual {
    display: flex;
    justify-content: center;
}

.orbit-visual-card {
    position: relative;
    background: linear-gradient(135deg, rgba(12, 18, 32, 0.8) 0%, rgba(8, 12, 20, 0.95) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 36px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    transition: all var(--transition-slow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.orbit-visual-card:hover {
    border-color: rgba(43, 127, 255, 0.35);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.4), 
        0 0 40px rgba(43,127,255,0.15);
    transform: translateY(-2px);
}

.orbit-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(43,127,255,0.3) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 3s ease infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50%       { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

.orbit-wordmark-img {
    width: 230px;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 0 16px rgba(43,127,255,0.45));
    transition: filter var(--transition-slow), transform var(--transition-slow);
}

.orbit-visual-card:hover .orbit-wordmark-img {
    filter: drop-shadow(0 0 24px rgba(43,127,255,0.65));
    transform: translateY(-2px) scale(1.02);
}

.orbit-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.status-dot-anim {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: dot-pulse-green 2.5s ease infinite;
}

@keyframes dot-pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.orbit-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.orbit-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-align: left;
}

.orbit-meta-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(43, 127, 255, 0.25);
    transform: translateY(-1px);
}

.orbit-meta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--accent-dim);
    color: var(--accent-light);
    flex-shrink: 0;
    transition: all var(--transition);
}

.orbit-meta-item:hover .orbit-meta-icon {
    background: rgba(43, 127, 255, 0.2);
    color: #fff;
    box-shadow: 0 0 10px rgba(43, 127, 255, 0.25);
}

.orbit-meta-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.meta-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.meta-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

/* ══════════════════════════════════════════════════
   AUDIENCES
   ══════════════════════════════════════════════════ */
.audiences-section {
    background: rgba(0,0,0,0.2);
}

.audiences-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all var(--transition-slow);
}

.audience-card-right {
    margin-top: 40px;
}

.audience-card:hover {
    background: var(--bg-card-hov);
    border-color: var(--border-hov);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 30px rgba(43,127,255,0.07);
}

.audience-card-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.audience-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.audience-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.audience-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.audience-highlights li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.audience-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ══════════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════════ */
.features-section {
    border-top: 1px solid var(--border);
}

.features-section .section-title,
.features-section .section-eyebrow {
    max-width: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 0;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 500ms ease, transform 500ms ease, background var(--transition-slow),
                border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hov);
    border-color: var(--border-hov);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(43,127,255,0.08);
}

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

.feature-card-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
}

.feature-card-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    transition: all var(--transition);
}

.feature-card:hover .feature-card-icon {
    background: rgba(43,127,255,0.2);
}

.feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
.services-section {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(43,127,255,0.05) 0%, transparent 60%);
    border-top: 1px solid var(--border);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition-slow);
    position: relative;
}

.service-card:hover {
    background: var(--bg-card-hov);
    border-color: var(--border-hov);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(43,127,255,0.08);
}

.service-card-featured {
    border-color: rgba(43,127,255,0.3);
    background: rgba(43,127,255,0.04);
}

.service-card-featured:hover {
    border-color: rgba(43,127,255,0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(43,127,255,0.15);
}

.service-featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
}

.service-card-featured .service-icon {
    background: rgba(43,127,255,0.15);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.service-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.service-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-cta:hover {
    color: var(--accent);
    gap: 8px;
}

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.contact-section {
    border-top: 1px solid var(--border);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.contact-info-item svg { color: var(--accent-light); flex-shrink: 0; }

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(43,127,255,0.5);
    box-shadow: 0 0 0 3px rgba(43,127,255,0.1);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    padding: 14px 16px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: #86efac;
}

.hidden { display: none !important; }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,0.3);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 32px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    align-self: flex-start;
    opacity: 0.7;
    filter: brightness(0.8);
    transition: opacity var(--transition);
}

.footer-logo:hover { opacity: 1; filter: none; }

.footer-brand p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 300px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-dim);
    opacity: 0.6;
    margin-top: 4px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-dim);
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-dim);
}

/* ── SECTION ADJUSTMENTS ────────────────────────── */
.sobre-section .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}



/* ── SLIDE NAVIGATION (DOTS) ────────────────────── */
.slide-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 8px;
    background: rgba(8, 12, 20, 0.4);
    border: 1px solid var(--border);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity var(--transition), visibility var(--transition);
}

.slide-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dim);
    cursor: pointer;
    transition: all var(--transition);
}

.slide-dot:hover {
    background: var(--text);
    transform: scale(1.2);
}

.slide-dot.active {
    background: var(--accent-light);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--accent-light), 0 0 20px rgba(96, 165, 250, 0.4);
}

/* Tooltips */
.slide-dot::after {
    content: attr(data-title);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(12, 18, 32, 0.95);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition);
}

.slide-dot:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Hide slide nav on smaller screens/mobile */
@media (max-width: 900px) {
    .slide-nav {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* ══════════════════════════════════════════════════
   RESPONSIVIDADE
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .pillars          { grid-template-columns: repeat(2, 1fr); }
    .features-grid    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .section { padding: 70px 0; }

    .header-actions { display: none !important; }
    .mobile-menu-btn { display: flex; margin-left: auto; }

    .nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(8, 12, 20, 0.98);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px 32px 32px;
        gap: 8px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-slow);
        z-index: 98;
    }
    
    .header.nav-active {
        background: rgba(8, 12, 20, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom-color: transparent !important;
    }
    
    .header.nav-active .nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        font-size: 16px;
        padding: 12px 16px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }
    
    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
        width: 100%;
    }

    .orbit-intro-inner  { grid-template-columns: 1fr; gap: 48px; }
    .orbit-intro-visual { display: none; }
    .audiences-grid     { grid-template-columns: 1fr; }
    .audience-card-right { margin-top: 0; }
    .services-grid      { grid-template-columns: 1fr; }
    .contact-inner      { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid        { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .hero { padding: 100px 20px 80px; }
    .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
    .stat-divider { width: 40px; height: 1px; }

    .pillars          { grid-template-columns: 1fr; }
    .features-grid    { grid-template-columns: repeat(2, 1fr); }
    .form-row         { grid-template-columns: 1fr; }
    .footer-grid      { grid-template-columns: 1fr; }
    .footer-bottom    { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-btns     { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════
   SCROLL SNAP ANIMATIONS (STAGGERED)
   ══════════════════════════════════════════════════ */
.anim-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-visible .anim-hidden {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for children to create a stagger effect when section is visible */
.is-visible .anim-d-1 { transition-delay: 0.1s; }
.is-visible .anim-d-2 { transition-delay: 0.2s; }
.is-visible .anim-d-3 { transition-delay: 0.3s; }
.is-visible .anim-d-4 { transition-delay: 0.4s; }
.is-visible .anim-d-5 { transition-delay: 0.5s; }
.is-visible .anim-d-6 { transition-delay: 0.6s; }
.is-visible .anim-d-7 { transition-delay: 0.7s; }
.is-visible .anim-d-8 { transition-delay: 0.8s; }
.is-visible .anim-d-9 { transition-delay: 0.9s; }
.is-visible .anim-d-10 { transition-delay: 1.0s; }
