/* ═══════════════════════════════════════════════════
   VANO-STYLE STUDIO — Design System
   ═══════════════════════════════════════════════════ */

:root {
    /* Core Palette */
    --bg: #030305;
    --surface: rgba(12, 12, 18, 0.7);
    --surface-2: #111111;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    /* Text */
    --text-primary: #f5f5f5;
    --text-secondary: rgba(255, 255, 255, 0.5);
    --text-tertiary: rgba(255, 255, 255, 0.3);

    /* Aurora Tech Colors */
    --aurora-purple: #bf00ff;
    --aurora-blue: #00e5ff;
    --aurora-purple-glow: rgba(191, 0, 255, 0.15);
    --aurora-blue-glow: rgba(0, 229, 255, 0.12);

    /* Accent — Neon Blue/Purple */
    --neon: #7c5cfc;
    --neon-light: #a78bfa;
    --neon-glow: rgba(124, 92, 252, 0.4);
    --neon-glow-subtle: rgba(124, 92, 252, 0.08);
    --neon-blue: #5b8def;
    --gradient-neon: linear-gradient(135deg, #7c5cfc 0%, #5b8def 100%);

    /* Problem/Solution */
    --problem: #ff4d4d;
    --problem-bg: rgba(255, 77, 77, 0.06);
    --solution: #34d399;
    --solution-bg: rgba(52, 211, 153, 0.06);

    /* Spacing */
    --section-gap: 160px;
    --container-max: 1100px;
    --container-pad: 24px;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════ RESET & BASE ═══════════ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, var(--aurora-purple-glow) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, var(--aurora-blue-glow) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(124, 92, 252, 0.08) 0%, transparent 50%);
    z-index: -2;
    animation: auroraMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes auroraMove {
    0%, 100% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    33% {
        opacity: 0.8;
        transform: scale(1.05) translate(-2%, 1%);
    }
    66% {
        opacity: 0.9;
        transform: scale(0.98) translate(1%, -1%);
    }
}

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

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

::selection {
    background: var(--neon);
    color: #fff;
}

/* ═══════════ CURSOR GLOW ═══════════ */

.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-glow-subtle) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    will-change: transform;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ═══════════ PARTICLES ═══════════ */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Não bloqueia cliques nos botões */
    opacity: 0.6;
    filter: blur(0.5px);
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* ═══════════ GRID LINES ═══════════ */

.grid-lines {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.grid-line {
    width: 1px;
    height: 100%;
    background: var(--border);
}

/* ═══════════ NAVIGATION ═══════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    padding: 16px 0;
    background: rgba(3, 3, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-ricardo {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.4rem;
    height: 42px;
    transition: transform 0.4s var(--ease-spring);
}

.logo-ricardo:hover {
    transform: scale(1.03);
}

.nome-ricardo {
    font-weight: 400;
    letter-spacing: -0.01em;
}

.nome-pereira {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-code-icon {
    display: flex;
    align-items: center;
    margin-left: 10px;
    font-size: 24px;
    background: linear-gradient(135deg, #BF00FF, #00E5FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
    transition: all 0.4s;
    font-weight: 700;
}

.logo-ricardo:hover .logo-code-icon {
    filter: drop-shadow(0 0 15px rgba(191, 0, 255, 0.7));
    transform: scale(1.15) rotate(-5deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    color: var(--neon-light);
    font-weight: 500;
}

.nav-link-cta::after {
    display: none;
}

/* ═══════════ REVEAL ANIMATIONS ═══════════ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ═══════════ HERO ═══════════ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px var(--container-pad) 80px;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Garante que o rain não sai da hero */
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, var(--aurora-purple-glow) 0%, var(--aurora-blue-glow) 40%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: heroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
    z-index: 0;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: rgba(15, 15, 20, 0.6);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 48px;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--solution);
    position: relative;
    flex-shrink: 0;
}

.badge-pulse::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--solution);
    opacity: 0.4;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(2); opacity: 0; }
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: var(--text-primary);
    position: relative;
    z-index: 2; /* Garante legibilidade sobre o canvas */
}

.hero-title-glow {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title-glow::after {
    content: 'Criamos sistemas';
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(30px);
    opacity: 0.5;
    z-index: -1;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
}

/* ═══════════ BUTTONS ═══════════ */

.btn-neon {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
    cursor: pointer;
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--neon-glow);
}

.btn-neon:active {
    transform: translateY(0) scale(0.98);
}

.btn-neon-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-neon);
    border-radius: 12px;
    z-index: 0;
}

.btn-neon-glow::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--gradient-neon);
    border-radius: 11px;
    z-index: 1;
}

.btn-neon-text {
    position: relative;
    z-index: 2;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.btn-neon-lg {
    padding: 20px 44px;
}

.btn-neon-lg .btn-neon-text {
    font-size: 17px;
}

.btn-ghost {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(15, 15, 20, 0.4);
    transition: all 0.3s var(--ease-out);
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(20, 20, 30, 0.6);
}

.btn-ghost i {
    transition: transform 0.3s var(--ease-out);
}

.btn-ghost:hover i {
    transform: translateY(3px);
}

/* ═══════════ STATS ═══════════ */

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: inline;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-light);
}

.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-tertiary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

/* ═══════════ SECTION COMMON ═══════════ */

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--border-hover);
}

.label-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--neon-light);
}

.section-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 72px;
}

.text-gradient {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════ SERVICES / SOLUTION CARDS ═══════════ */

.services {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-gap) var(--container-pad);
    position: relative;
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

/* Swiper Custom Styles */
.servicos-swiper {
    padding: 60px 20px 80px !important;
    margin: 0 -20px;
    overflow: visible !important;
}

.servicos-swiper .swiper-slide {
    height: auto;
    width: 380px;
    opacity: 0.4;
    transition: opacity 0.4s, transform 0.4s;
    transform: scale(0.9);
}

.servicos-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

/* Custom Swiper Buttons */
.servicos-swiper .swiper-button-next,
.servicos-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.servicos-swiper .swiper-button-next::after,
.servicos-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.servicos-swiper .swiper-button-next:hover,
.servicos-swiper .swiper-button-prev:hover {
    background: var(--neon-glow);
    border-color: var(--neon);
    box-shadow: 0 0 20px var(--neon-glow);
    color: #fff;
}

.servicos-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.servicos-swiper .swiper-pagination-bullet-active {
    background: var(--neon);
    box-shadow: 0 0 10px var(--neon-glow);
    width: 24px;
    border-radius: 4px;
}

.btn-neon-card-cyan {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00E5FF;
    color: #0b0b0f;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    border: none;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
    transition: all 0.3s var(--ease-spring);
    cursor: pointer;
    text-decoration: none;
}

.btn-neon-card-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.8);
    background: #00BBDC;
}

.btn-neon-card-cyan i {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-neon-card-cyan:hover i {
    transform: translateX(4px);
}

.solution-card.neon-card-landing {
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.02);
    box-shadow: 0 10px 30px -10px rgba(0, 229, 255, 0.1);
    animation: cardBreathing 4.5s ease-in-out infinite;
}

.neon-card-landing:hover {
    box-shadow: 0 20px 50px -10px rgba(0, 229, 255, 0.2);
    border-color: #00E5FF;
}

.btn-neon-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #BF00FF;
    color: #FFFFFF;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    border: none;
    box-shadow: 0 0 15px rgba(191, 0, 255, 0.7);
    transition: all 0.3s var(--ease-spring);
    cursor: pointer;
    text-decoration: none;
}

.btn-neon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(191, 0, 255, 1);
    background: #D400FF;
}

.btn-neon-card i {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-neon-card:hover i {
    transform: translateX(4px);
}

.solution-card.neon-card-agendamento {
    border-color: var(--neon-glow);
    background: rgba(124, 92, 252, 0.03);
    box-shadow: 0 10px 30px -10px rgba(124, 92, 252, 0.1);
    animation: cardBreathing 4s ease-in-out infinite;
}

.neon-card-agendamento:hover {
    box-shadow: 0 20px 50px -10px rgba(124, 92, 252, 0.2);
    border-color: var(--neon);
}

.card-mockup {
    position: relative;
    width: 100%;
    height: 320px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.mockup-img {
    width: 240px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(124, 92, 252, 0.3));
    transition: transform 0.5s var(--ease-spring), filter 0.5s;
    z-index: 2;
}

.neon-card-agendamento:hover .mockup-img {
    transform: rotateY(-10deg) rotateX(10deg) scale(1.05);
    filter: drop-shadow(0 0 35px rgba(124, 92, 252, 0.5));
}

.mockup-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--neon-glow) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.5s;
}

.neon-card-agendamento:hover .mockup-glow {
    opacity: 0.8;
}

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

/* Enova Card Style */
.solution-card.enova-card {
    background: #FFFFFF;
    border: none;
    border-radius: 24px;
    padding: 40px 24px;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
    color: #0b0b0f;
    margin: 10px;
}

.enova-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.enova-card .card-mockup {
    height: 240px;
    margin-bottom: 20px;
}

.enova-card .mockup-img {
    width: 100%;
    max-width: 280px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

.enova-card .card-number {
    position: static;
    font-size: 0.9em;
    color: #888;
    margin-bottom: 12px;
    opacity: 0.5;
}

.enova-card .card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.enova-card .card-copy-problem {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.enova-card .card-copy-solution {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.enova-card .btn-neon-card, 
.enova-card .btn-neon-card-cyan,
.enova-card .btn-ghost {
    width: 100%;
    justify-content: center;
}

/* Enova Navigation Arrows */
.servicos-swiper .swiper-button-next,
.servicos-swiper .swiper-button-prev {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: none;
    opacity: 1;
}

.servicos-swiper .swiper-button-next:hover,
.servicos-swiper .swiper-button-prev:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.servicos-swiper .swiper-slide {
    width: 360px;
    opacity: 1;
    transform: none;
}

.servicos-swiper {
    padding: 40px 0 80px !important;
    overflow: hidden !important;
}

.servicos-swiper .swiper-slide-active {
    transform: none;
}

/* Reusable buttons in enova style */
.enova-card .btn-ghost {
    background: #f0f0f5;
    color: #1a1a1a;
    border: none;
}

.enova-card .btn-ghost:hover {
    background: #e0e0eb;
    transform: translateY(-2px);
}

/* Final Global Button */
.div-botao-final {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.botao-final-roxo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #BF00FF;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 24px 64px;
    border-radius: 100px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 30px rgba(191, 0, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.botao-final-roxo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(191, 0, 255, 0.7);
    background: #D000FF;
}

.solution-card::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, var(--aurora-purple-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.solution-card:nth-child(even)::before {
    background: radial-gradient(ellipse, var(--aurora-blue-glow) 0%, transparent 70%);
}

.solution-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

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

.card-glow {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.5s;
    filter: blur(1px);
}

.card-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: var(--neon-glow);
    filter: blur(40px);
}

.card-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    font-variant-numeric: tabular-nums;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 32px;
    margin-bottom: 32px;
}

.problem-tag,
.solution-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 6px;
}

.problem-tag {
    color: var(--problem);
    background: var(--problem-bg);
}

.solution-tag {
    color: var(--solution);
    background: var(--solution-bg);
}

.problem-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.solution-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
}

.card-arrow {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--text-tertiary);
    padding-top: 36px;
}

.arrow-line {
    width: 32px;
    height: 1px;
    background: var(--border-hover);
}

.card-arrow i {
    font-size: 16px;
}

.card-impact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(124, 92, 252, 0.08);
    border: 1px solid rgba(124, 92, 252, 0.1);
}

.impact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-icon i {
    font-size: 20px;
    color: #fff;
}

.impact-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.impact-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-light);
}

.impact-value {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
}

/* ═══════════ ABOUT ═══════════ */

.about {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-gap) var(--container-pad);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    margin: 0 auto;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    filter: grayscale(20%);
    transition: filter 0.5s;
}

.about-image-wrapper:hover .about-img {
    filter: grayscale(0%);
}

.about-img-border {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: var(--gradient-neon);
    z-index: 1;
    opacity: 0.3;
    transition: opacity 0.5s;
}

.about-image-wrapper:hover .about-img-border {
    opacity: 0.6;
}

.about-img-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80px;
    background: var(--neon-glow);
    filter: blur(50px);
    z-index: 0;
    opacity: 0.3;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 255, 0.08);
    color: #00E5FF;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(0, 229, 255, 0.2);
    margin-bottom: 8px;
}

.about-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #00E5FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #00E5FF;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.about-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.guarantee-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(15, 15, 20, 0.5);
    border: 1px solid var(--border);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.guarantee-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--solution-bg);
    border: 1px solid rgba(52, 211, 153, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 22px;
    color: var(--solution);
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guarantee-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.guarantee-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(15, 15, 20, 0.5);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.skill-tag:hover {
    border-color: var(--neon);
    color: var(--neon-light);
    background: var(--neon-glow-subtle);
}

/* ═══════════ CTA SECTION ═══════════ */

.cta-section {
    position: relative;
    padding: var(--section-gap) var(--container-pad) 120px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--aurora-blue-glow) 0%, var(--aurora-purple-glow) 50%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    animation: ctaGlow 10s ease-in-out infinite;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
    z-index: 0;
    pointer-events: none;
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.cta-glow-orb {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
}

.cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
}

/* ═══════════ FOOTER ═══════════ */

.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    position: relative;
    z-index: 1;
    background: rgba(3, 3, 5, 0.6);
    backdrop-filter: blur(10px);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 8px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-link i {
    font-size: 20px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-link:hover {
    border-color: var(--neon);
    background: var(--neon-glow-subtle);
}

.footer-link:hover i {
    color: var(--neon-light);
}

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 768px) {
    :root {
        --section-gap: 100px;
        --container-pad: 20px;
    }

    .grid-lines {
        display: none;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link:not(.nav-link-cta) {
        display: none;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hide-mobile {
        display: none;
    }

    /* Cards */
    .solution-card {
        padding: 32px 24px;
    }

    .card-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-arrow {
        padding-top: 0;
        justify-content: center;
    }

    .arrow-line {
        width: 0;
        height: 24px;
        width: 1px;
    }

    .card-arrow i {
        transform: rotate(90deg);
    }

    .problem-text,
    .solution-text {
        font-size: 16px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrapper {
        max-width: 280px;
    }

    .about-title {
        text-align: center;
    }

    .about-desc {
        text-align: center;
    }

    .about-skills {
        justify-content: center;
    }

    /* CTA */
    .cta-title {
        font-size: 32px;
    }

    .btn-neon-lg {
        padding: 18px 36px;
    }

    .btn-neon-lg .btn-neon-text {
        font-size: 15px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .section-title {
        font-size: 28px;
    }
}
/* --- ANIQUILAÇÃO TOTAL DE BOTÕES NOS CARDS (MOBILE) --- */
@media (max-width: 768px) {
  
  /* 1. Forçar fundo escuro nos cards (Já sabemos que este funciona) */
  .swiper-slide, .servico-card, .swiper-slide div {
    background: #030712 !important;
  }

  /* 2. REMOVER QUALQUER BOTÃO OU LINK DENTRO DO CARD */
  /* Usamos seletores genéricos para não falhar nada */
  .servico-card a, 
  .servico-card button, 
  .servico-card .btn,
  .servico-card [class*="btn"],
  .swiper-slide a,
  .swiper-slide button,
  .btn-agendar,
  .agendar-button {
    display: none !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
  }

  /* 3. MANTER APENAS O BOTÃO GRANDE ROXO NO FIM */
  .cta-final .botao-transformar,
  .cta-final button,
  #cta-final-button {
    display: flex !important;
    background: #BF00FF !important;
    width: 85% !important;
    max-width: 300px !important;
    padding: 15px 20px !important;
    border-radius: 50px !important;
    margin: 40px auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }
}
  }
}
  


