:root {
            /* Paleta Ultra Contemporânea 2025 */
            --primary-50: #f0f9ff;
            --primary-100: #e0f2fe;
            --primary-200: #bae6fd;
            --primary-300: #7dd3fc;
            --primary-400: #38bdf8;
            --primary-500: #0ea5e9;
            --primary-600: #0284c7;
            --primary-700: #0369a1;
            --primary-800: #075985;
            --primary-900: #0c4a6e;
            
            --accent-50: #fef7ff;
            --accent-100: #fdf4ff;
            --accent-200: #fae8ff;
            --accent-300: #f5d0fe;
            --accent-400: #e879f9;
            --accent-500: #d946ef;
            --accent-600: #c026d3;
            --accent-700: #a21caf;
            --accent-800: #86198f;
            --accent-900: #701a75;
            
            --neutral-0: #ffffff;
            --neutral-50: #fafafa;
            --neutral-100: #f5f5f5;
            --neutral-200: #e5e5e5;
            --neutral-300: #d4d4d4;
            --neutral-400: #a3a3a3;
            --neutral-500: #737373;
            --neutral-600: #525252;
            --neutral-700: #404040;
            --neutral-800: #262626;
            --neutral-900: #171717;
            
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            
            /* Gradientes Minimalistas */
            --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
            --gradient-subtle: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
            --gradient-mesh: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 70%),
                            radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.05) 0%, transparent 70%),
                            radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
            
            /* Tipografia */
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'DM Sans', sans-serif;
            
            /* Sombras Ultra Sutis */
            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.04), 0 4px 6px rgba(0, 0, 0, 0.02);
            --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.02);
            
            /* Transições Fluidas */
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
            --transition-fast: 0.2s var(--ease-out-expo);
            --transition-normal: 0.4s var(--ease-out-expo);
            --transition-slow: 0.6s var(--ease-out-expo);
            
            /* Espaçamentos Harmônicos */
            --space-1: 0.25rem;
            --space-2: 0.5rem;
            --space-3: 0.75rem;
            --space-4: 1rem;
            --space-5: 1.25rem;
            --space-6: 1.5rem;
            --space-8: 2rem;
            --space-10: 2.5rem;
            --space-12: 3rem;
            --space-16: 4rem;
            --space-20: 5rem;
            --space-24: 6rem;
            --space-32: 8rem;
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-primary);
            font-weight: 300;
            line-height: 1.7;
            color: var(--neutral-700);
            background: var(--neutral-0);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--space-6);
        }

        @media (min-width: 768px) {
            .container { padding: 0 var(--space-8); }
        }

        /* ===================
           HEADER FLUTUANTE MINIMALISTA
        =================== */
        .header {
            position: fixed;
            top: var(--space-6);
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: calc(100% - var(--space-12));
            max-width: 1200px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 100px;
            transition: var(--transition-normal);
            opacity: 0;
            animation: fadeInDown 1s var(--ease-out-expo) 0.2s forwards;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
            to { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-lg);
            transform: translateX(-50%) scale(0.95);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-4) var(--space-8);
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--neutral-900);
            text-decoration: none;
            letter-spacing: -0.02em;
            transition: var(--transition-fast);
        }

        .logo:hover {
            color: var(--primary-600);
            transform: scale(1.02);
        }

        .nav {
            display: flex;
            gap: var(--space-8);
            align-items: center;
        }

        .nav-link {
            color: var(--neutral-600);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.9rem;
            position: relative;
            transition: var(--transition-fast);
            padding: var(--space-2) 0;
        }

        .nav-link:hover {
            color: var(--neutral-900);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gradient-primary);
            transition: var(--transition-fast);
        }

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

        .header-cta {
            background: var(--gradient-primary);
            color: var(--neutral-0);
            padding: var(--space-3) var(--space-6);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition-fast);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .header-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .header-cta:hover::before {
            left: 100%;
        }

        .header-cta:hover {
            background: linear-gradient(135deg, var(--accent-500) 0%, var(--primary-600) 100%);
            color: var(--neutral-0);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(217, 70, 239, 0.3);
        }

        /* ===================
           HERO LAYOUT REVOLUCIONÁRIO
        =================== */
        .hero {
            min-height: 100vh;
            background: var(--gradient-mesh);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 120px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="1" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.02"/></svg>');
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            grid-template-rows: auto auto;
            gap: var(--space-16);
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            opacity: 0;
            animation: slideInLeft 1s var(--ease-out-expo) 0.5s forwards;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            background: var(--neutral-100);
            color: var(--neutral-600);
            padding: var(--space-2) var(--space-4);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: var(--space-8);
            border: 1px solid var(--neutral-200);
            transition: var(--transition-fast);
        }

        .hero-badge:hover {
            background: var(--neutral-0);
            border-color: var(--neutral-300);
            transform: translateY(-2px);
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 5vw, 5rem);
            font-weight: 200;
            line-height: 1.1;
            margin-bottom: var(--space-6);
            color: var(--neutral-900);
            letter-spacing: -0.04em;
        }

        .hero-highlight {
            font-weight: 600;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--neutral-500);
            margin-bottom: var(--space-10);
            line-height: 1.7;
            max-width: 90%;
        }

        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: var(--space-4);
            margin-bottom: var(--space-10);
        }

        .hero-guarantees {
            display: flex;
            flex-direction: row;
            gap: var(--space-6);
            justify-content: flex-start;
            flex-wrap: wrap;
            margin-top: var(--space-6);
        }

        .guarantee-item {
            display: flex;
            align-items: center;
            gap: var(--space-2);
            color: var(--neutral-500);
            font-size: 0.85rem;
            transition: var(--transition-fast);
            padding: var(--space-2) var(--space-4);
            background: var(--neutral-50);
            border-radius: 25px;
            border: 1px solid var(--neutral-200);
            white-space: nowrap;
        }

        .guarantee-item:hover {
            color: var(--neutral-700);
            background: var(--neutral-100);
            border-color: var(--neutral-300);
            transform: translateY(-1px);
        }

        .guarantee-icon {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--success);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        /* Card da Advogada - Layout Vertical Minimalista */
        .hero-visual {
            background: var(--neutral-0);
            border: 1px solid var(--neutral-200);
            border-radius: 32px;
            padding: var(--space-8);
            text-align: center;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
            transition: var(--transition-slow);
            opacity: 0;
            animation: slideInRight 1s var(--ease-out-expo) 0.7s forwards;
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transition: var(--transition-normal);
        }

        .hero-visual:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .hero-visual:hover::before {
            height: 8px;
        }

        .advogado-foto {
            width: 160px;
            height: 200px;
            border-radius: 24px;
            overflow: hidden;
            margin: 0 auto var(--space-6);
            position: relative;
            transition: var(--transition-normal);
        }

        .advogado-foto::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: var(--transition-normal);
            border-radius: 24px;
        }

        .hero-visual:hover .advogado-foto::before {
            opacity: 0.1;
        }

        .advogado-foto img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-normal);
        }

        .hero-visual:hover .advogado-foto img {
            transform: scale(1.05);
        }

        .visual-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: var(--space-2);
            color: var(--neutral-900);
        }

        .visual-subtitle {
            color: var(--neutral-500);
            font-size: 0.9rem;
            margin-bottom: var(--space-6);
        }

        /* ===================
           BOTÕES ULTRA MINIMALISTAS
        =================== */
        .btn-primary {
            background: transparent;
            color: var(--neutral-700);
            padding: var(--space-3) var(--space-5);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 400;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            transition: all 0.2s ease;
            border: 1px solid var(--neutral-200);
        }

        .btn-primary:hover {
            background: var(--neutral-50);
            color: var(--neutral-900);
            border-color: var(--neutral-300);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--neutral-400);
            padding: var(--space-3) var(--space-6);
            border-radius: 100px;
            text-decoration: none;
            font-weight: 300;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            border: 1px solid var(--neutral-100);
            transition: all 0.3s ease;
            opacity: 0.6;
        }

        .btn-secondary:hover {
            background: var(--success);
            color: var(--neutral-0);
            border-color: var(--success);
            transform: translateY(-2px);
            opacity: 1;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
        }

        /* ===================
           SEÇÕES COM LAYOUT GRID MODERNO
        =================== */
        .section {
            padding: var(--space-32) 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-20);
            opacity: 0;
            transform: translateY(40px);
            transition: var(--transition-slow);
        }

        .section-header.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 300;
            margin-bottom: var(--space-4);
            color: var(--neutral-900);
            letter-spacing: -0.03em;
        }

        .section-header .highlight {
            font-weight: 600;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--neutral-500);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ===================
           ESPECIALIDADES - LAYOUT MASONRY
        =================== */
        .especialidades {
            background: var(--neutral-50);
            position: relative;
        }

        .especialidades::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-mesh);
            opacity: 0.3;
        }

        .especialidades-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-8);
            position: relative;
            z-index: 2;
        }

        .especialidade-card {
            background: var(--neutral-0);
            border: 1px solid var(--neutral-200);
            padding: var(--space-8);
            border-radius: 24px;
            transition: var(--transition-normal);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
        }

        .especialidade-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .especialidade-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: var(--transition-normal);
        }

        .especialidade-card:hover::before {
            transform: scaleX(1);
        }

        .especialidade-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--neutral-300);
        }

        .especialidade-icon {
            width: 48px;
            height: 48px;
            background: var(--neutral-100);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-6);            
            transition: var(--transition-fast);
            color: var(--primary-600);
        }

        .especialidade-icon svg {
            width: 28px;
            height: 28px;
            stroke-width: 1.5;
        }

        .especialidade-card:hover .especialidade-icon {
            background: var(--gradient-primary);
            transform: scale(1.1);
        }

        .especialidade-card h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: var(--space-4);
            color: var(--neutral-900);
            transition: var(--transition-fast);
        }

        .especialidade-card:hover h3 {
            color: var(--primary-600);
        }

        .especialidade-card p {
            color: var(--neutral-500);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* ===================
           SEÇÃO IMPACTO - DESIGN REVOLUCIONÁRIO ✨
        =================== */
        .impacto {
            background: linear-gradient(135deg, var(--neutral-0) 0%, var(--neutral-50) 100%);
            position: relative;
            overflow: hidden;
        }

        .impacto::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.03) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(217, 70, 239, 0.03) 0%, transparent 60%);
            pointer-events: none;
        }

        .impacto-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--space-20) var(--space-6);
        }

        .impacto-header {
            text-align: center;
            margin-bottom: var(--space-16);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .impacto-header.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .impacto-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            background: var(--gradient-primary);
            color: var(--neutral-0);
            padding: var(--space-2) var(--space-4);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: var(--space-6);
            box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
        }

        .impacto-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 200;
            margin-bottom: var(--space-4);
            color: var(--neutral-900);
            letter-spacing: -0.03em;
            line-height: 1.2;
        }

        .impacto-subtitle {
            color: var(--neutral-500);
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Grid de Métricas Premium */
        .metricas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-8);
            margin-top: var(--space-16);
        }

        .metrica-card {
            background: var(--neutral-0);
            padding: var(--space-8);
            border-radius: 24px;
            border: 1px solid var(--neutral-200);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(40px);
        }

        .metrica-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .metrica-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            transition: left 0.6s ease;
        }

        .metrica-card:hover::before {
            left: 100%;
        }

        .metrica-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                0 10px 20px rgba(0, 0, 0, 0.05);
            border-color: var(--primary-200);
        }

        .metrica-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto var(--space-6);
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-0);
            font-size: 2rem;
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }

        .metrica-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent, rgba(255,255,255,0.3), transparent);
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .metrica-numero {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: var(--space-2);
            line-height: 1;
        }

        .metrica-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--neutral-900);
            margin-bottom: var(--space-3);
        }

        .metrica-desc {
            color: var(--neutral-500);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Elemento decorativo flutuante */
        .floating-element {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 1px solid var(--primary-200);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 15%;
            left: 8%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* ===================
           SOBRE - LAYOUT SPLIT SCREEN
        =================== */
        .sobre {
            background: var(--gradient-mesh);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .sobre-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-20);
            align-items: center;
        }

        .sobre-visual {
            position: relative;
            opacity: 0;
            transform: translateX(-40px);
            transition: var(--transition-slow);
        }

        .sobre-visual.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .sobre-foto {
            width: 100%;
            max-width: 400px;
            aspect-ratio: 3/4;
            border-radius: 32px;
            overflow: hidden;
            position: relative;
            margin: 0 auto;
            transition: var(--transition-slow);
        }

        .sobre-foto::before {
            content: '';
            position: absolute;
            inset: -4px;
            background: var(--gradient-primary);
            border-radius: 36px;
            z-index: -1;
            opacity: 0;
            transition: var(--transition-normal);
        }

        .sobre-visual:hover .sobre-foto::before {
            opacity: 1;
        }

        .sobre-visual:hover .sobre-foto {
            transform: scale(0.98);
        }

        .sobre-foto img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sobre-text {
            opacity: 0;
            transform: translateX(40px);
            transition: var(--transition-slow);
        }

        .sobre-text.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .sobre-text h3 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 300;
            margin-bottom: var(--space-8);
            color: var(--neutral-900);
            letter-spacing: -0.02em;
        }

        .sobre-text .highlight {
            font-weight: 600;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .sobre-text p {
            color: var(--neutral-500);
            line-height: 1.8;
            margin-bottom: var(--space-6);
            font-size: 1rem;
        }

        .sobre-badges {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-3);
            margin-top: var(--space-8);
        }

        .badge {
            background: var(--neutral-100);
            border: 1px solid var(--neutral-200);
            padding: var(--space-2) var(--space-4);
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--neutral-600);
            font-weight: 500;
            transition: var(--transition-fast);
        }

        .badge:hover {
            background: var(--neutral-0);
            border-color: var(--neutral-300);
            color: var(--neutral-700);
            transform: translateY(-1px);
        }

        /* ===================
           CONTATO - LAYOUT CENTRADO
        =================== */
        .contato {
            background: var(--neutral-900);
            color: var(--neutral-0);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contato::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .contato-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(40px);
            transition: var(--transition-slow);
        }

        .contato-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contato h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 300;
            margin-bottom: var(--space-6);
            letter-spacing: -0.03em;
        }

        .contato .highlight {
            font-weight: 600;
            color: var(--primary-400);
        }

        .contato p {
            font-size: 1.125rem;
            margin-bottom: var(--space-12);
            opacity: 0.8;
            line-height: 1.7;
        }

        .contato-info {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: var(--space-10);
            border-radius: 32px;
            margin: var(--space-12) auto;
            transition: var(--transition-normal);
        }

        .contato-info:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
        }

        .contato-info h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: var(--space-4);
        }

        .contato-info p {
            margin-bottom: var(--space-4);
            opacity: 0.9;
            font-size: 1rem;
        }

        /* ===================
           FOOTER ULTRA CLEAN
        =================== */
        footer.integrated-footer {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 0;
            margin-top: 80px;
        }

        footer.integrated-footer .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 24px;
        }

        footer.integrated-footer .footer-links {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }

        footer.integrated-footer .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        footer.integrated-footer .footer-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 107, 53, 0.1) 0%, 
                rgba(123, 97, 255, 0.1) 100%);
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        footer.integrated-footer .footer-links a:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }

        footer.integrated-footer .footer-links a:hover::before {
            opacity: 1;
        }

        footer.integrated-footer .footer-info {
            color: #9ca3af;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        footer.integrated-footer .footer-info p {
            margin: 8px 0;
        }

        /* ===================
           FLOATING WHATSAPP MINIMALISTA
        =================== */
        .floating-whatsapp {
            position: fixed;
            bottom: var(--space-8);
            right: var(--space-8);
            background: var(--success);
            color: var(--neutral-0);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow-lg);
            z-index: 1001;
            transition: var(--transition-fast);
            border: 3px solid var(--neutral-0);
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-xl);
            background: var(--neutral-900);
        }

        .floating-whatsapp svg {
            width: 24px;
            height: 24px;
        }

        /* ===================
           CURSOR PERSONALIZADO
        =================== */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: var(--primary-400);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: var(--transition-fast);
            opacity: 0;
        }

        .cursor.active {
            opacity: 1;
        }

        .cursor.hover {
            transform: scale(2);
            background: var(--accent-400);
        }

        /* ===================
           RESPONSIVIDADE AVANÇADA
        =================== */
        @media (max-width: 1024px) {
            .hero-grid {
                display: flex;
                flex-direction: column;
                text-align: center;
                gap: var(--space-12);
            }
            
            /* Inverter ordem no tablet também: card aparece antes do texto */
            .hero-text {
                order: 2; /* Texto vai para baixo */
            }
            
            .hero-visual-oab {
                order: 1; /* Card vai para cima */
                margin-bottom: var(--space-6);
            }
            
            .nav { display: none; }
            
            .hero-guarantees {
                justify-content: center;
                gap: var(--space-4);
            }
            
            .guarantee-item {
                font-size: 0.8rem;
                padding: var(--space-1) var(--space-3);
            }
            
            .diferenciais-container {
                grid-template-columns: 1fr;
                gap: var(--space-12);
                text-align: center;
            }
            
            /* Responsividade da nova seção IMPACTO */
            .metricas-grid {
                grid-template-columns: 1fr;
                gap: var(--space-6);
            }
            
            .metrica-card {
                padding: var(--space-6);
            }
            
            .metrica-icon {
                width: 60px;
                height: 60px;
            }
            
            .metrica-numero {
                font-size: 2.5rem;
            }
            
            .floating-element {
                display: none; /* Ocultar elementos decorativos em tablet */
            }
            
            .sobre-content {
                grid-template-columns: 1fr;
                gap: var(--space-12);
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .header {
                top: var(--space-1);
                width: calc(100% - var(--space-5));
            }
            
            .header-content {
                padding: var(--space-3) var(--space-6);
            }
            
            .hero {
                padding-top: 100px;
                min-height: 90vh;
            }
            
            /* Inverter ordem no mobile: card aparece antes do texto */
            .hero-grid {
                display: flex;
                flex-direction: column;
            }
            
            .hero-text {
                order: 2; /* Texto vai para baixo */
            }
            
            .hero-visual-oab {
                order: 1; /* Card vai para cima */
                margin-bottom: var(--space-8);
            }
            
            .section {
                padding: var(--space-20) 0;
            }
            
            .section-header {
                margin-bottom: var(--space-12);
            }
            
            .especialidades-grid {
                grid-template-columns: 1fr;
                gap: var(--space-6);
            }
            
            .hero-guarantees {
                display: none; /* Oculta completamente no mobile */
            }
            
            .floating-whatsapp {
                bottom: var(--space-6);
                right: var(--space-6);
                width: 48px;
                height: 48px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .btn-primary,
            .btn-secondary {
                padding: var(--space-3) var(--space-6);
                font-size: 0.9rem;
            }
            
            .sobre-foto {
                max-width: 280px;
            }
            
            /* Otimizações mobile para seção IMPACTO */
            .impacto-container {
                padding: var(--space-12) var(--space-4);
            }
            
            .impacto-title {
                font-size: 2.2rem;
            }
            
            .metricas-grid {
                gap: var(--space-4);
            }
            
            .metrica-card {
                padding: var(--space-5);
                border-radius: 16px;
            }
            
            .metrica-icon {
                width: 50px;
                height: 50px;
                border-radius: 12px;
            }
            
            .metrica-numero {
                font-size: 2rem;
            }
        }

        /* ===================
           ANIMAÇÕES DE MICRO-INTERAÇÃO
        =================== */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition-slow);
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: var(--transition-slow);
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: var(--transition-slow);
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: var(--transition-slow);
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ===================
           EFEITOS HOVER AVANÇADOS
        =================== */
        .interactive-element {
            transition: var(--transition-fast);
        }

        .interactive-element:hover {
            transform: translateY(-2px);
        }

        .magnetic-element {
            transition: var(--transition-fast);
        }

        /* ===================
           LOADING ANIMATION
        =================== */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--neutral-0);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: var(--transition-slow);
        }

        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 2px solid var(--neutral-200);
            border-top: 2px solid var(--primary-500);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ===================
           UTILITIES
        =================== */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .no-scroll {
            overflow: hidden;
        }

        /* ========== NOVO CARD OAB PREMIUM ========== */

        /* Container principal do novo card */
        .hero-visual-oab {
            background: white;
            border-radius: 20px;
            box-shadow: 
                0 10px 25px rgba(0, 0, 0, 0.08),
                0 4px 10px rgba(0, 0, 0, 0.04);
            padding: 0; /* Remove padding para controle preciso */
            text-align: center;
            position: relative;
            overflow: visible; /* Permite que a foto saia dos limites */
            max-width: 400px;
            margin: 0 auto;
            transition: all 0.3s ease;
        }

        /* Conteúdo interno do card */
        .card-content {
            padding: 80px 32px 40px 32px; /* Espaço superior para a foto sobreposta */
            position: relative;
            z-index: 2;
        }

        .hero-visual-oab:hover {
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.12),
                0 8px 15px rgba(0, 0, 0, 0.06);
        }

        /* Elementos decorativos */
        .decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .corner-accent {
            position: absolute;
            width: 25px;
            height: 25px;
            border: 1.5px solid rgba(220, 38, 38, 0.15);
        }

        .top-left {
            top: 12px;
            left: 12px;
            border-right: none;
            border-bottom: none;
        }

        .top-right {
            top: 12px;
            right: 12px;
            border-left: none;
            border-bottom: none;
        }

        .subtle-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
        }

        /* Container da foto premium - sobreposta ao card */
        .lawyer-photo-container {
            position: absolute;
            top: -70px; /* Foto fica para fora do card */
            left: 50%;
            transform: translateX(-50%);
            z-index: 10; /* Acima de tudo */
        }

        /* Brilho da foto */
        .photo-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.4s ease;
            animation: gentle-pulse 4s ease-in-out infinite;
        }

        @keyframes gentle-pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.6; }
        }

        /* Anel animado mais visível */
        .photo-ring-enhanced {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 165px;
            height: 165px;
            border: 2px solid transparent;
            border-top: 2px solid rgba(220, 38, 38, 0.6);
            border-right: 2px solid rgba(220, 38, 38, 0.3);
            border-radius: 50%;
            animation: smooth-orbit 6s linear infinite;
        }

        @keyframes smooth-orbit {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Wrapper da foto com hover */
        .photo-wrapper {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }

        /* Foto premium maior */
        .lawyer-photo-premium {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 
                0 12px 25px rgba(0, 0, 0, 0.15),
                0 5px 10px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .photo-wrapper:hover .lawyer-photo-premium {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.2),
                0 8px 15px rgba(0, 0, 0, 0.1);
        }

        /* Indicador online */
        .online-indicator {
            position: absolute;
            bottom: 8px;
            right: 8px;
            width: 18px;
            height: 18px;
            background: #10B981;
            border: 3px solid white;
            border-radius: 50%;
            z-index: 3;
            animation: online-pulse 2s ease-in-out infinite;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .online-indicator:hover {
            transform: scale(1.2);
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
        }

        @keyframes online-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
        }

        /* Card OAB flutuante */
        .floating-oab-card {
            position: absolute;
            top: 50%;
            right: -51px;
            transform: translateY(-50%);
            background: white;
            border-radius: 12px;
            padding: 8px;
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.15),
                0 4px 10px rgba(0, 0, 0, 0.08);
            border: 2px solid #F3F4F6;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 7;
            animation: gentle-float 3s ease-in-out infinite;
            transition: all 0.3s ease;
            width: 36px;
            height: 36px;
            cursor: pointer;
        }

        @keyframes gentle-float {
            0%, 100% { transform: translateY(-50%) rotate(0deg); }
            50% { transform: translateY(-54px) rotate(1deg); }
        }

        .floating-oab-card:hover {
            transform: translateY(-56px) scale(1.05);
            box-shadow: 
                0 15px 30px rgba(0, 0, 0, 0.2),
                0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .floating-oab-logo {
            width: 18px;
            height: 18px;
            object-fit: contain;
        }

        /* Nome */
        .lawyer-name {
            color: #1F2937;
            font-size: 1.7rem;
            font-weight: 700;
            margin: 0 0 12px 0;
            line-height: 1.3;
            position: relative;
            z-index: 5;
        }

        /* Chip premium com logo */
        .oab-registration-chip-premium {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
            color: #92400E;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 25px;
            border: 1px solid rgba(146, 64, 14, 0.2);
            box-shadow: 0 3px 8px rgba(146, 64, 14, 0.15);
            transition: all 0.3s ease;
        }

        .oab-registration-chip-premium:hover {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(146, 64, 14, 0.2);
        }

        .chip-oab-logo {
            width: 16px;
            height: 16px;
            object-fit: contain;
            opacity: 0.8;
        }

        /* Bio */
        .lawyer-bio {
            color: #4B5563;
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0 30px 35px 30px;
            text-align: center;
            position: relative;
            z-index: 5;
        }

        /* Botão premium */
        .contact-btn-premium {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #1F2937;
            color: white;
            padding: 16px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 5;
            border: 1px solid transparent;
        }

        /* Brilho do botão */
        .btn-glow {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #3B82F6, #8B5CF6, #06B6D4);
            border-radius: 32px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .contact-btn-premium:hover .btn-glow {
            opacity: 0.7;
        }

        /* Efeito de brilho passando */
        .btn-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .contact-btn-premium:hover .btn-shine {
            left: 100%;
        }

        .contact-btn-premium:hover {
            transform: translateY(-3px) scale(1.02);
            background: #374151;
            box-shadow: 0 12px 30px rgba(31, 41, 55, 0.25);
        }

        /* Ícone do botão */
        .btn-icon {
            transition: all 0.3s ease;
        }

        .contact-btn-premium:hover .btn-icon {
            transform: scale(1.15) rotate(5deg);
        }

        /* Elementos de fundo */
        .watermark-elements {
            position: absolute;
            bottom: 15px;
            left: 20px;
            right: 20px;
            pointer-events: none;
            z-index: 1;
        }

        .watermark-line {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(220, 38, 38, 0.15) 50%, transparent 100%);
            margin-bottom: 3px;
        }

        .line-1 {
            width: 65%;
        }

        .line-2 {
            width: 45%;
            margin-left: auto;
        }

        /* Easter Eggs - Efeitos da foto */
        .photo-bounce { animation: bounce-effect 0.6s ease-out; }
        .photo-shake { animation: shake-effect 0.8s ease-out; }
        .photo-spin { animation: spin-effect 1s ease-out; }
        .photo-pulse { animation: pulse-effect 0.8s ease-out; }
        .photo-wobble { animation: wobble-effect 1s ease-out; }
        .photo-flip { animation: flip-effect 1.2s ease-out; }
        .photo-escaping { animation: photo-escape-animation 3s ease-in-out forwards; z-index: 1000 !important; }
        .photo-hidden { opacity: 0; transform: scale(0); }
        .photo-returning { animation: photo-return-animation 4s ease-out forwards; }

        /* Easter Eggs - Bolinha verde */
        .indicator-escaping { animation: escape-animation 2s ease-in-out forwards; z-index: 1000 !important; }
        .indicator-scared { animation: scared-shake 0.5s ease-in-out; }
        .indicator-hidden { opacity: 0; transform: scale(0); }
        .indicator-returning { animation: return-animation 3s ease-out forwards; }

        @keyframes bounce-effect {
            0% { transform: scale(1); }
            30% { transform: scale(1.3) translateY(-20px); }
            50% { transform: scale(1.1) translateY(-10px); }
            70% { transform: scale(1.2) translateY(-15px); }
            100% { transform: scale(1); }
        }

        @keyframes shake-effect {
            0%, 100% { transform: translateX(0); }
            10% { transform: translateX(-10px) rotate(-2deg); }
            20% { transform: translateX(10px) rotate(2deg); }
            30% { transform: translateX(-8px) rotate(-1deg); }
            40% { transform: translateX(8px) rotate(1deg); }
            50% { transform: translateX(-6px) rotate(-0.5deg); }
            60% { transform: translateX(6px) rotate(0.5deg); }
            70% { transform: translateX(-4px); }
            80% { transform: translateX(4px); }
            90% { transform: translateX(-2px); }
        }

        @keyframes spin-effect {
            0% { transform: rotate(0deg) scale(1); }
            25% { transform: rotate(90deg) scale(1.1); }
            50% { transform: rotate(180deg) scale(1.2); }
            75% { transform: rotate(270deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        @keyframes pulse-effect {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
            25% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(59, 130, 246, 0.5); }
            50% { transform: scale(1.3); box-shadow: 0 0 0 20px rgba(59, 130, 246, 0.3); }
            75% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(59, 130, 246, 0.1); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
        }

        @keyframes wobble-effect {
            0% { transform: rotate(0deg); }
            15% { transform: rotate(-15deg); }
            30% { transform: rotate(10deg); }
            45% { transform: rotate(-10deg); }
            60% { transform: rotate(6deg); }
            75% { transform: rotate(-4deg); }
            90% { transform: rotate(2deg); }
            100% { transform: rotate(0deg); }
        }

        @keyframes flip-effect {
            0% { transform: rotateY(0deg) scale(1); }
            25% { transform: rotateY(90deg) scale(1.1); }
            50% { transform: rotateY(180deg) scale(1.2); }
            75% { transform: rotateY(270deg) scale(1.1); }
            100% { transform: rotateY(360deg) scale(1); }
        }

        /* Animações de Escape dos Easter Eggs */
        @keyframes photo-escape-animation {
            0% { 
                transform: translateX(0) translateY(0) rotate(0deg) scale(1);
                opacity: 1;
            }
            20% { 
                transform: translateX(50px) translateY(-30px) rotate(15deg) scale(1.1);
                opacity: 0.9;
            }
            40% { 
                transform: translateX(150px) translateY(-80px) rotate(45deg) scale(1.3);
                opacity: 0.7;
            }
            60% { 
                transform: translateX(300px) translateY(-150px) rotate(90deg) scale(1.5);
                opacity: 0.5;
            }
            80% { 
                transform: translateX(500px) translateY(-250px) rotate(180deg) scale(1.8);
                opacity: 0.3;
            }
            100% { 
                transform: translateX(800px) translateY(-400px) rotate(360deg) scale(2);
                opacity: 0;
            }
        }

        @keyframes photo-return-animation {
            0% { 
                transform: translateX(800px) translateY(-400px) rotate(360deg) scale(2);
                opacity: 0;
            }
            20% { 
                transform: translateX(500px) translateY(-250px) rotate(270deg) scale(1.8);
                opacity: 0.3;
            }
            40% { 
                transform: translateX(300px) translateY(-150px) rotate(180deg) scale(1.5);
                opacity: 0.5;
            }
            60% { 
                transform: translateX(150px) translateY(-80px) rotate(90deg) scale(1.3);
                opacity: 0.7;
            }
            80% { 
                transform: translateX(50px) translateY(-30px) rotate(45deg) scale(1.1);
                opacity: 0.9;
            }
            100% { 
                transform: translateX(0) translateY(0) rotate(0deg) scale(1);
                opacity: 1;
            }
        }

        @keyframes escape-animation {
            0% { transform: translate(0, 0) scale(1); }
            20% { transform: translate(10px, -15px) scale(1.1); }
            100% { transform: translate(500px, -300px) scale(2); opacity: 0; }
        }

        @keyframes scared-shake {
            0%, 100% { transform: translate(0, 0); }
            10%, 30%, 50%, 70%, 90% { transform: translate(-2px, 2px); }
            20%, 40%, 60%, 80% { transform: translate(2px, -2px); }
        }

        @keyframes return-animation {
            0% { transform: translate(500px, -300px) scale(2); opacity: 0; }
            50% { transform: translate(250px, -150px) scale(1.5); opacity: 0.7; }
            100% { transform: translate(0, 0) scale(1); opacity: 1; }
        }

        /* ==========================================================================
           CTA PREMIUM SECTION - Sistema de CTA Espetacular com Partículas
           ========================================================================== */

        .cta-premium-section {
            position: relative;
            background: linear-gradient(135deg, 
                #0f1419 0%,
                #1a1f2e 20%,
                #2d1b3d 40%,
                #1a1f2e 60%,
                #0f1419 100%);
            color: #ffffff;
            padding: 120px 0 80px;
            overflow: hidden;
            min-height: 100vh;
        }

        .cta-premium-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(123, 97, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
            animation: backgroundPulse 10s ease-in-out infinite;
        }

        .cta-premium-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                #FF6B35 20%, 
                #7B61FF 40%, 
                #00D4AA 60%, 
                #FF6B35 80%, 
                transparent 100%);
            animation: topBorder 3s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        @keyframes topBorder {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        /* Particles Container */
        .particles-container-cta {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-elements-cta {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-particle {
            position: absolute;
            border-radius: 50%;
            animation: floatingParticles 8s linear infinite;
        }

        .particle-1 {
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #FF6B35, #FF3366);
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            filter: blur(0.5px);
        }

        .particle-2 {
            width: 4px;
            height: 4px;
            background: linear-gradient(135deg, #7B61FF, #2E86F1);
            top: 40%;
            right: 15%;
            animation-delay: 2s;
        }

        .particle-3 {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #00D4AA, #06B6D4);
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
            filter: blur(1px);
        }

        .particle-4 {
            width: 3px;
            height: 3px;
            background: linear-gradient(135deg, #F59E0B, #FF6B35);
            top: 60%;
            right: 25%;
            animation-delay: 1s;
        }

        .particle-5 {
            width: 5px;
            height: 5px;
            background: linear-gradient(135deg, #FF3366, #7B61FF);
            bottom: 60%;
            right: 10%;
            animation-delay: 3s;
        }

        .particle-6 {
            width: 7px;
            height: 7px;
            background: linear-gradient(135deg, #2E86F1, #00D4AA);
            top: 80%;
            left: 50%;
            animation-delay: 5s;
            filter: blur(0.8px);
        }

        @keyframes floatingParticles {
            0% {
                transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            25% {
                transform: translateY(-20px) translateX(10px) scale(1.2) rotate(90deg);
            }
            50% {
                transform: translateY(-40px) translateX(-15px) scale(0.8) rotate(180deg);
                opacity: 0.8;
            }
            75% {
                transform: translateY(-60px) translateX(25px) scale(1.5) rotate(270deg);
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) translateX(0px) scale(0.5) rotate(360deg);
                opacity: 0;
            }
        }

        /* CTA Content */
        .cta-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 60px;
            position: relative;
            z-index: 10;
        }

        .cta-text {
            max-width: 800px;
        }

        .cta-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #e5e7eb 30%, 
                #ffffff 60%, 
                #f3f4f6 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
        }

        .cta-highlight {
            background: linear-gradient(135deg, 
                #FF6B35 0%, 
                #FF3366 25%, 
                #7B61FF 50%, 
                #00D4AA 75%, 
                #FF6B35 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300% 300%;
            animation: gradientShift 4s ease-in-out infinite;
            filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
        }

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

        .cta-description {
            font-size: 1.3rem;
            line-height: 1.6;
            color: #d1d5db;
            font-weight: 400;
        }

        /* Professional Card */
        .professional-card {
            position: relative;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            max-width: 600px;
            width: 100%;
        }

        .professional-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, 
                rgba(255, 107, 53, 0.3) 0%, 
                rgba(123, 97, 255, 0.3) 25%, 
                rgba(0, 212, 170, 0.3) 50%, 
                rgba(255, 107, 53, 0.3) 75%, 
                rgba(123, 97, 255, 0.3) 100%);
            background-size: 300% 300%;
            animation: gradientShift 6s ease-in-out infinite;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: xor;
            -webkit-mask-composite: xor;
        }

        .card-glow {
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: radial-gradient(circle, 
                rgba(255, 107, 53, 0.1) 0%, 
                transparent 70%);
            border-radius: 30px;
            z-index: -1;
            animation: cardGlow 3s ease-in-out infinite;
        }

        @keyframes cardGlow {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.05); }
        }

        .professional-name {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #ffffff;
            text-align: center;
        }

        .professional-details {
            display: grid;
            gap: 16px;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
        }

        .detail-icon {
            font-size: 1.2rem;
            width: 28px;
            text-align: center;
        }

        .detail-item span {
            color: #e5e7eb;
            font-size: 1.1rem;
        }

        .detail-item strong {
            color: #ffffff;
            font-weight: 600;
        }

        /* MEGA CTA BUTTON */
        .mega-cta-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        /* Shimmer Effects */
        .shimmer-effect {
            position: absolute;
            width: 4px;
            height: 200px;
            background: linear-gradient(0deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.8) 50%, 
                transparent 100%);
            border-radius: 2px;
            animation: shimmerMove 3s ease-in-out infinite;
        }

        .shimmer-1 {
            left: 20%;
            animation-delay: 0s;
        }

        .shimmer-2 {
            right: 20%;
            animation-delay: 1s;
        }

        .shimmer-3 {
            left: 50%;
            animation-delay: 2s;
        }

        @keyframes shimmerMove {
            0%, 100% {
                transform: translateY(-50px) scaleY(0);
                opacity: 0;
            }
            50% {
                transform: translateY(0) scaleY(1);
                opacity: 1;
            }
        }

        /* Main CTA Button */
        .mega-cta-button {
            position: relative;
            display: flex;
            align-items: center;
            gap: 16px;
            background: linear-gradient(135deg, 
                #25D366 0%, 
                #128C7E 50%, 
                #25D366 100%);
            background-size: 300% 300%;
            color: #ffffff;
            padding: 24px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 700;
            min-width: 320px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: gradientShift 4s ease-in-out infinite;
            box-shadow: 
                0 10px 30px rgba(37, 211, 102, 0.3),
                0 20px 60px rgba(37, 211, 102, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            z-index: 5;
        }

        .button-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                transparent 50%, 
                rgba(255, 255, 255, 0.1) 100%);
            border-radius: 50px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .button-shine {
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            height: 50%;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.3) 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                transparent 100%);
            border-radius: 50px 50px 100px 100px;
        }

        .button-content {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            z-index: 2;
        }

        .button-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .button-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .button-main-text {
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1;
        }

        .button-sub-text {
            font-size: 0.9rem;
            font-weight: 400;
            opacity: 0.9;
            margin-top: 2px;
        }

        .mega-cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 15px 40px rgba(37, 211, 102, 0.4),
                0 25px 80px rgba(37, 211, 102, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .mega-cta-button:hover .button-bg {
            opacity: 1;
        }

        .mega-cta-button:hover .button-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .mega-cta-button:active {
            transform: translateY(-2px) scale(1.02);
        }

        /* Integrated Footer */
        .integrated-footer {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 0;
            margin-top: 80px;
        }

        .integrated-footer .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 24px;
        }

        .integrated-footer .footer-links {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .integrated-footer .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .integrated-footer .footer-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 107, 53, 0.1) 0%, 
                rgba(123, 97, 255, 0.1) 100%);
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .integrated-footer .footer-links a:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }

        .integrated-footer .footer-links a:hover::before {
            opacity: 1;
        }

        .integrated-footer .footer-info {
            color: #9ca3af;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .integrated-footer .footer-info p {
            margin: 8px 0;
        }

        /* Developer Signature Styles */
        .developer-signature {
            margin-top: 40px;
            padding: 24px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .developer-signature::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 107, 53, 0.1) 50%, 
                transparent 100%);
            animation: signatureShimmer 4s ease-in-out infinite;
        }

        @keyframes signatureShimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .signature-text {
            font-size: 0.9rem;
            color: #d1d5db;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 6px;
            font-weight: 400;
            position: relative;
            z-index: 2;
        }

        .heart {
            color: #FF3366;
            animation: heartbeat 2s ease-in-out infinite;
            display: inline-block;
            font-size: 1rem;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .developer-link {
            color: #ffffff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 12px;
            border-radius: 20px;
            background: linear-gradient(135deg, 
                rgba(255, 107, 53, 0.1) 0%, 
                rgba(123, 97, 255, 0.1) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .developer-link:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, 
                rgba(255, 107, 53, 0.2) 0%, 
                rgba(123, 97, 255, 0.2) 100%);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
        }

        .dev-brand {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
        }

        .brand-icon {
            font-family: 'JetBrains Mono', monospace;
            font-weight: 600;
            color: #FF6B35;
            font-size: 0.9rem;
            animation: codeGlow 3s ease-in-out infinite;
        }

        @keyframes codeGlow {
            0%, 100% { 
                text-shadow: 0 0 5px rgba(255, 107, 53, 0.5); 
                color: #FF6B35;
            }
            50% { 
                text-shadow: 0 0 15px rgba(255, 107, 53, 0.8); 
                color: #FF3366;
            }
        }

        .webdesigner {
            font-size: 0.8rem;
            opacity: 0.9;
            font-style: italic;
        }

        .powered-by {
            color: #9ca3af;
            font-size: 0.85rem;
            margin-left: 8px;
        }

        .ai-name {
            background: linear-gradient(135deg, 
                #00D4AA 0%, 
                #7B61FF 50%, 
                #FF6B35 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: gradientShift 3s ease-in-out infinite;
            font-weight: 600;
        }

        /* ==========================================================================
           RESPONSIVIDADE CTA PREMIUM SECTION
           ========================================================================== */
        @media (max-width: 1024px) {
            .cta-premium-section {
                padding: 100px 0 60px;
            }

            .cta-title {
                font-size: 3rem;
            }

            .mega-cta-button {
                min-width: 280px;
                padding: 20px 32px;
            }
        }

        @media (max-width: 768px) {
            .cta-premium-section {
                padding: 80px 0 40px;
                min-height: auto;
            }

            .cta-title {
                font-size: 2.5rem;
            }

            .cta-description {
                font-size: 1.1rem;
            }

            .professional-card {
                padding: 30px 24px;
                margin: 0 16px;
            }

            .mega-cta-button {
                flex-direction: column;
                text-align: center;
                min-width: 260px;
                padding: 20px 24px;
                gap: 12px;
            }

            .button-text {
                align-items: center;
            }

            .button-main-text {
                font-size: 1.1rem;
            }

            .button-sub-text {
                font-size: 0.8rem;
            }

            .integrated-footer .footer-links {
                gap: 16px;
            }

            .integrated-footer .footer-links a {
                padding: 6px 12px;
                font-size: 0.9rem;
            }

            .floating-particle {
                opacity: 0.7;
            }

            .particle-1, .particle-3, .particle-6 {
                display: none;
            }

            /* Responsive adjustments for signature */
            .developer-signature {
                margin-top: 30px;
                padding: 20px 16px;
            }

            .signature-text {
                font-size: 0.85rem;
                text-align: center;
                line-height: 1.6;
            }

            .developer-link {
                padding: 6px 10px;
                margin: 4px 2px;
            }

            .powered-by {
                margin-left: 4px;
                margin-top: 4px;
            }
        }

        @media (max-width: 480px) {
            .cta-premium-section {
                padding: 60px 0 30px;
            }

            .cta-title {
                font-size: 2rem;
            }

            .professional-card {
                margin: 0 12px;
                padding: 24px 20px;
            }

            .detail-item {
                font-size: 0.95rem;
            }

            .mega-cta-container {
                padding: 20px;
            }

            .mega-cta-button {
                min-width: 240px;
                padding: 16px 20px;
            }

            .shimmer-effect {
                display: none;
            }

            .developer-signature {
                margin-top: 24px;
                padding: 16px 12px;
            }

            .signature-text {
                font-size: 0.8rem;
                flex-direction: column;
                gap: 8px;
            }

            .developer-link {
                margin: 0;
            }

            .powered-by {
                margin: 0;
            }
        }