:root {
            --primary-blue: #2c93d9;
            --primary-light: #4fa3e5;
            --secondary-color: #00b8d4;
            --accent-color: #ff6b6b;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --gemini-bg: #050505;
            --card-radius: 32px;
            --glass: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: #d1d5db;
            --text-muted: #9ca3af;
            --primary-blue: #2c93d9; /* Cor base do logo AJMDX */
            --gemini-glow: rgba(13, 110, 253, 0.5); /* Brilho Gemini mais sutil */
            --dark-bg: #000000;
            --light-bg: #f8f9fa;
        }

        /*body {
            font-family: 'Inter', sans-serif;
            background-color: var(--gemini-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            scroll-behavior: smooth;
            color: #333;
        }*/

        /* --- Melhorar Contraste de Textos Pequenos --- 
        .text-muted {
            color: var(--text-secondary) !important;
        }
        .small {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }*/

        /*.lead {
            color: var(--text-secondary) !important;
        }*/

        /* --- Navbar Minimalista --- 
        .navbar {
            background: rgba(10, 10, 10, 0.85) !important;
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar:hover {
            background: rgba(10, 10, 10, 0.95) !important;
            border-bottom-color: rgba(44, 147, 217, 0.3);
        }*/

        /*.navbar-brand img { 
            height: 45px; 
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(44, 147, 217, 0.2));
        }

        .navbar-brand:hover img { 
            transform: scale(1.08);
            filter: drop-shadow(0 4px 8px rgba(44, 147, 217, 0.4));
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-secondary) !important;
            margin: 0 12px;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 2px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-color));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
        }

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

        .btn-login {
            border: 2px solid var(--primary-blue);
            border-radius: 50px;
            padding: 8px 24px;
            color: var(--primary-blue) !important;
            font-weight: 600;
            transition: all 0.3s ease;
            background: transparent;
        }

        .btn-login:hover { 
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-color));
            color: #fff !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(44, 147, 217, 0.3);
        }*/

        /* Animação para rolar */
        .fade-in-section {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Fixed Hero Panel com Background Dinâmico --- */
        .hero-section {
            padding: 80px 0 10px;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(248, 249, 250, 0.25), rgba(215, 238, 240, 0.1));
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
            transition: background-image 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.7));
            z-index: 1;
        }

        .hero-section .container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 100%;
            position: relative;
            z-index: 2;
        }

        .card-stack {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 100%;
            min-height: 360px;
            max-height: 480px;
            z-index: 2;
        }

        .stack-card {
            border-radius: var(--card-radius);
            position: absolute;
            background-size: cover;
            background-position: center;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            display: none;
        }

        .card-main {
            width: 100%;
            max-width: 880px;
            min-height: 300px;
            padding: 40px 24px;
            z-index: 3;
            transform: translateX(0);
            display: flex !important;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            background: rgba(0, 0, 0, 0.26);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 24px;
            margin: 0 auto;
        }

        .card-main::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
            z-index: 1;
            display: none;
        }

        .card-side {
            display: none;
        }
        .card-left { display: none; }
        .card-right { display: none; }

        .hero-content { 
            position: relative; 
            z-index: 2; 
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 860px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .hero-carousel {
            position: relative;
            width: 100%;
            max-width: 1200px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            margin: 0 auto;
        }

        .carousel-item {
            width: 100%;
            position: relative;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            animation: none;
            padding: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 220px;
            box-sizing: border-box;
        }

        .carousel-item.active {
            opacity: 1;
            animation: fadeInUp 1s ease-out;
        }

        /* Efeito de "Iluminação" e desfoque no fundo */
        .carousel-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(2px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 20px;
        }
        
        /* O "holofote" do Gemini */
        .glowing-spotlight {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
            pointer-events: none;
            z-index: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeOutDown {
            from {
                opacity: 1;
                transform: translateY(0);
            }
            to {
                opacity: 0;
                transform: translateY(-30px);
            }
        }

        .carousel-item.prev {
            animation: fadeOutDown 1.2s ease-out forwards;
        }

        .hero-title { 
            font-size: 3.2rem; 
            font-weight: 800; 
            letter-spacing: -1px;
            color: var(--text-primary);
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            margin-bottom: 1rem;
            line-height: 1.2;
            word-break: break-word;
            max-width: calc(100% - 40px);
            margin-inline: auto;
        }

        .hero-content .lead {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 0.3px;
            margin-bottom: 2rem;
        }

        .carousel-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 30px;
            z-index: 10;
            position: relative;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .carousel-dot.active {
            background: var(--primary-blue);
            width: 30px;
            border-radius: 5px;
            border-color: var(--primary-light);
            box-shadow: 0 0 10px rgba(44, 147, 217, 0.5);
        }

        .carousel-dot:hover {
            background: rgba(44, 147, 217, 0.6);
            transform: scale(1.1);
        }

        /* --- Barra de Tecnologias Premium --- */
        #tech-bar {
            background-color: #0d0d0d;
            padding: 60px 0;
            margin-top: -5px; /* Evita frestas */
            color: white;
        }
        .tech-item {
            padding: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #fff;
            display: block;
            position: relative;
            overflow: hidden;
        }

        .tech-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: left 0.3s ease;
            z-index: 0;
        }

        .tech-item:hover::before {
            left: 100%;
        }

        .tech-item:hover { 
            filter: brightness(1.3); 
            transform: translateY(-2px);
            color: #fff;
        }
        
        .bg-php { background: #474a8a; }
        .bg-html { background: #e34c26; }
        .bg-css { background: #264de4; }
        .bg-js { background: #f7df1e; color: #000 !important; }
        .bg-jq { background: #0769ad; }
        .bg-bs { background: #7952b3; }

        /* --- Section Features (Cards) --- */
        .feature-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 24px;
            padding: 40px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(44, 147, 217, 0.15), transparent 70%);
            transition: all 0.4s ease;
            z-index: 0;
        }

        .feature-card:hover {
            border-color: var(--primary-blue);
            transform: translateY(-10px);
            background: linear-gradient(135deg, rgba(44, 147, 217, 0.1), rgba(0, 184, 212, 0.05));
            box-shadow: 0 10px 40px rgba(44, 147, 217, 0.15);
        }

        .feature-card:hover::before {
            top: -20%;
            right: -10%;
        }

        .feature-card > * {
            position: relative;
            z-index: 1;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
            display: inline-block;
        }

        /* --- Blog Preview --- 
        .blog-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover { 
            border-color: var(--primary-blue);
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(44, 147, 217, 0.15);
        }

        .blog-img { 
            height: 200px; 
            object-fit: cover; 
            width: 100%;
            transition: transform 0.4s ease;
        }

        .blog-card:hover .blog-img {
            transform: scale(1.05);
        }

        .badge-tech { 
            background: rgba(44, 147, 217, 0.25);
            color: var(--primary-light);
            border-radius: 50px; 
            padding: 6px 16px;
            font-weight: 600;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .badge-tech:hover {
            background: rgba(44, 147, 217, 0.4);
            transform: scale(1.05);
        }*/

        /* Animações */
        .fade-in-up { opacity: 0; transform: translateY(30px); transition: 0.8s all ease; }
        .visible { opacity: 1; transform: translateY(0); }

        /* --- Melhorias de Links e Hover Effects --- 
        a.text-secondary:hover {
            color: var(--primary-blue) !important;
            transition: 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-color));
            border-color: var(--primary-blue);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(44, 147, 217, 0.3);
        }

        .btn-outline-secondary {
            color: var(--text-secondary);
            border-color: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .btn-outline-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-blue);
            color: var(--primary-blue) !important;
        }

        .form-control {
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-blue) !important;
            box-shadow: 0 0 0 0.2rem rgba(44, 147, 217, 0.25);
            background-color: rgba(255, 255, 255, 0.08);
        }*/

        /* --- Badges Melhorados --- */
        .badge {
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
        }

        .badge:hover {
            transform: scale(1.1);
            background: var(--primary-blue) !important;
            color: white !important;
        }

        /* --- Cards e Seções com Cores Coerentes --- 
        section {
            position: relative;
        }

        section h2, section h3, section h4, section h5, section h6 {
            color: var(--text-primary);
        }*/

        /* --- Footer Styles --- */
        footer {
            position: relative;
        }

        footer a {
            transition: all 0.3s ease;
        }

        footer .btn-outline-secondary {
            font-weight: 600;
            transition: all 0.3s ease;
        }

        footer .btn-outline-secondary:hover i {
            animation: bounce 0.6s ease;
        }

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

        footer h6 {
            position: relative;
            padding-bottom: 10px;
        }

        footer h6::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), transparent);
            transition: width 0.3s ease;
        }

        footer .input-group {
            box-shadow: 0 4px 15px rgba(44, 147, 217, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        /*footer .form-control::placeholder {
            color: rgba(209, 213, 219, 0.5);
        }*/

        /* --- Responsividade --- */
        @media (max-width: 1200px) {
            .card-main {
                padding: 50px 30px;
            }
            .hero-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 50px;
            }
            .card-main {
                padding: 40px 20px;
                max-width: 100%;
            }
            .hero-title {
                font-size: 2rem;
                line-height: 1.3;
            }
            .hero-content .lead {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            .carousel-dots {
                margin-top: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 80px 0 40px;
                min-height: auto;
            }
            .card-main {
                padding: 30px 15px;
                width: 100%;
            }
            .hero-title {
                font-size: 1.5rem;
                line-height: 1.3;
                margin-bottom: 0.8rem;
            }
            .hero-content .lead {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }
            .btn.btn-primary.btn-lg {
                padding: 0.5rem 2rem !important;
                font-size: 0.9rem;
            }
            .carousel-item {
                padding: 15px;
                min-height: 200px;
            }
        }