       /* ===== VARIÁVEIS CSS ===== */
        :root {
            --primary: #5969cf;
            --primary-dark: #4654c5;
            --secondary: #7b4cff;
            --accent: #00d4aa;
            --accent-2: #ff6b9d;
            --dark: #1a1a2e;
            --dark-light: #2d2d44;
            --light: #f8f9fa;
            --gray: #6c757d;
            --gray-light: #e9ecef;
            --success: #00b894;
            --warning: #fdcb6e;
            --danger: #ff4757;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-hard: 0 20px 60px rgba(0, 0, 0, 0.2);
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(89, 105, 207, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(123, 76, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
            z-index: -2;
        }
        
        /* Partículas */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }
        
        /* ===== LAYOUT ===== */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 100px 0;
            position: relative;
        }
        
        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .header.scrolled {
            padding: 15px 0;
            background: rgba(26, 26, 46, 0.98);
            box-shadow: var(--shadow);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* ===== NAVEGAÇÃO ===== */
        .nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            transition: var(--transition);
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: white;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .cta-header {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(89, 105, 207, 0.3);
        }
        
        .cta-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(89, 105, 207, 0.4);
        }
        
    /* ===== CORREÇÃO COMPLETA DO MENU MOBILE ===== */

/* Menu Mobile - Correção principal */
.mobile-menu-btn {
    display: none !important;
    background: linear-gradient(45deg, #5969cf, #7b4cff) !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 10px !important;
    color: white !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(89, 105, 207, 0.3) !important;
}

.mobile-menu-btn:hover {
    transform: scale(1.05) !important;
}

/* Menu de navegação mobile */
.nav {
    display: flex !important;
    align-items: center !important;
    gap: 40px !important;
}

/* Quando a tela for menor que 992px, mostra o botão mobile */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        background: rgba(26, 26, 46, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding-top: 100px !important;
        padding-left: 40px !important;
        gap: 0 !important;
        transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0) !important;
        z-index: 1000 !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3) !important;
    }
    
    .nav.active {
        right: 0 !important;
    }
    
    .nav-link {
        width: 100% !important;
        padding: 20px 0 !important;
        font-size: 1.2rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        transition: all 0.3s ease !important;
        text-align: left !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: white !important;
        padding-left: 10px !important;
        background: rgba(89, 105, 207, 0.1) !important;
        border-left: 4px solid #5969cf !important;
    }
    
    .nav-link::after {
        display: none !important;
    }
    
    .cta-header {
        margin-top: 30px !important;
        width: calc(100% - 40px) !important;
        text-align: center !important;
        background: linear-gradient(45deg, #00d4aa, #00b894) !important;
        padding: 16px !important;
        font-size: 1.1rem !important;
    }
}

/* Para telas muito pequenas (até 480px) */
@media (max-width: 480px) {
    .nav {
        width: 100% !important;
        right: -100% !important;
        padding-left: 30px !important;
    }
    
    .nav.active {
        right: 0 !important;
    }
    
    .nav-link {
        font-size: 1.1rem !important;
        padding: 18px 0 !important;
    }
    
    .mobile-menu-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
    }
}

/* Overlay para quando o menu estiver aberto */
.nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 999 !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.nav-overlay.active {
    display: block !important;
    opacity: 1 !important;
}
        
        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.2;
            color: white;
            margin-bottom: 25px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gradient-text {
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        
        .gradient-text::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
            border-radius: 3px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
        }
        
        .hero-cta {
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s forwards;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(89, 105, 207, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(89, 105, 207, 0.4);
        }
        
        .btn-primary i {
            font-size: 1.3rem;
        }
        
        /* Elementos flutuantes */
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .floating-1 {
            top: 20%;
            left: 10%;
            background: linear-gradient(45deg, rgba(89, 105, 207, 0.2), rgba(123, 76, 255, 0.2));
        }
        
        .floating-2 {
            top: 60%;
            right: 10%;
            background: linear-gradient(45deg, rgba(0, 212, 170, 0.2), rgba(89, 105, 207, 0.2));
            animation-delay: -2s;
        }
        
        .floating-3 {
            bottom: 20%;
            left: 15%;
            background: linear-gradient(45deg, rgba(255, 107, 157, 0.2), rgba(123, 76, 255, 0.2));
            animation-delay: -4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        /* ===== SEÇÕES GERAIS ===== */
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            text-align: center;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .section-title.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
        }
        
        .section-subtitle.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===== SOBRE ===== */
        #sobre {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(45, 45, 68, 0.8));
            backdrop-filter: blur(10px);
            border-radius: 30px;
            margin: 50px auto;
            max-width: 1400px;
            position: relative;
            overflow: hidden;
        }
        
        #sobre::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(89, 105, 207, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-content > div:first-child p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .stat {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
        }
        
        .stat:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        .stat-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        /* ===== SERVIÇOS ===== */
        #servicos {
            background: transparent;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(45, 45, 68, 0.8));
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 40px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .service-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(89, 105, 207, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .service-card:hover::before {
            transform: translateX(100%);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(89, 105, 207, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: white;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }
        
        .service-desc {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* ===== DIFERENCIAIS ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 40px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .feature-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.5rem;
            color: white;
        }
        
        /* ===== CONTATO ===== */
        #contato {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(45, 45, 68, 0.9));
            backdrop-filter: blur(10px);
            border-radius: 30px;
            margin: 50px auto;
            max-width: 1400px;
            position: relative;
            overflow: hidden;
        }
        
        #contato::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(89, 105, 207, 0.2) 0%, transparent 70%);
            z-index: -1;
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 10px;
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 3px rgba(89, 105, 207, 0.2);
        }
        
        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        
        .info-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
            flex-shrink: 0;
        }
        
        .info-content h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .info-content p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* ===== FOOTER ===== */
        .footer {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .footer-column-title {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 25px;
        }
        
        .footer-link {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 15px;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        
        .footer-link:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* ===== WHATSAPP ===== */
        .whatsapp-minimal {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            text-decoration: none;
            box-shadow: var(--shadow-hard);
            z-index: 999;
            transition: var(--transition);
            animation: pulse-green 2s infinite;
        }
        
        @keyframes pulse-green {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% { 
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% { 
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        .whatsapp-minimal:hover {
            transform: scale(1.1) rotate(15deg);
            background: #128C7E;
        }
        
        .whatsapp-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--accent-2);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            font-size: 0.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: badge-pulse 1.5s infinite;
        }
        
        @keyframes badge-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        /* ===== ANIMAÇÕES ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(26, 26, 46, 0.98);
                backdrop-filter: blur(10px);
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                z-index: 999;
            }
            
            .nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .floating-element {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .btn-primary {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .service-card,
            .feature-card,
            .contact-form,
            .info-item {
                padding: 30px;
            }
            
            .stat {
                padding: 25px;
            }
        }
        
        /* ===== MENSAGENS DE FORMULÁRIO ===== */
        .field-error {
            color: var(--danger);
            font-size: 0.85rem;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: shake 0.3s ease;
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }
        
        .form-input.success,
        .form-select.success,
        .form-textarea.success {
            border-color: var(--success);
            background: rgba(0, 184, 148, 0.05);
        }
        
        .form-input.error,
        .form-select.error,
        .form-textarea.error {
            border-color: var(--danger);
            background: rgba(255, 71, 87, 0.05);
        }
        /* ===== SISTEMA DE NOTIFICAÇÕES MODERNAS ===== */

/* Overlay do Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(15px);
    }
}

/* Container Principal do Modal */
.modal-container {
    width: 90%;
    max-width: 500px;
    background: linear-gradient(145deg, 
        rgba(26, 26, 46, 0.95) 0%, 
        rgba(45, 45, 68, 0.92) 100%);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Efeito de brilho no topo */
.modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(89, 105, 207, 0.5), 
        transparent);
}

/* Efeito de partículas no fundo */
.modal-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(89, 105, 207, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 76, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Ícone do Modal */
.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.modal-icon.success {
    background: linear-gradient(135deg, 
        rgba(0, 212, 170, 0.15), 
        rgba(0, 212, 170, 0.05));
    border: 2px solid rgba(0, 212, 170, 0.3);
    color: #00d4aa;
    box-shadow: 
        0 10px 30px rgba(0, 212, 170, 0.2),
        inset 0 0 20px rgba(0, 212, 170, 0.1);
}

.modal-icon.error {
    background: linear-gradient(135deg, 
        rgba(255, 71, 87, 0.15), 
        rgba(255, 71, 87, 0.05));
    border: 2px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
    box-shadow: 
        0 10px 30px rgba(255, 71, 87, 0.2),
        inset 0 0 20px rgba(255, 71, 87, 0.1);
}

.modal-icon.warning {
    background: linear-gradient(135deg, 
        rgba(253, 203, 110, 0.15), 
        rgba(253, 203, 110, 0.05));
    border: 2px solid rgba(253, 203, 110, 0.3);
    color: #fdcb6e;
    box-shadow: 
        0 10px 30px rgba(253, 203, 110, 0.2),
        inset 0 0 20px rgba(253, 203, 110, 0.1);
}

/* Título do Modal */
.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, white, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mensagem do Modal */
.modal-message {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 35px;
    padding: 0 10px;
}

/* Botão do Modal */
.modal-button {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, #5969cf, #7b4cff);
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(89, 105, 207, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

.modal-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(89, 105, 207, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.modal-button:hover::before {
    left: 100%;
}

.modal-button:active {
    transform: translateY(-1px);
}

/* Modal de Erro com Lista */
.modal-error-list {
    text-align: left;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 71, 87, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 71, 87, 0.1);
}

.modal-error-list strong {
    display: block;
    color: #ff4757;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.modal-error-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-error-list li {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
}

.modal-error-list li::before {
    content: '•';
    color: #ff4757;
    position: absolute;
    left: 10px;
    font-size: 1.2rem;
}

/* Modal de Carregamento */
.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(89, 105, 207, 0.1);
    border-top-color: #5969cf;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 25px;
}

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

.modal-loading-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Botão de Fechar */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

/* Efeito de confete no modal de sucesso */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #5969cf, #7b4cff, #00d4aa);
    opacity: 0.7;
    border-radius: 2px;
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-container {
        padding: 30px 25px;
        margin: 20px;
        width: calc(100% - 40px);
        max-width: none;
    }
    
    .modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-message {
        font-size: 1rem;
        padding: 0;
    }
    
    .modal-button {
        padding: 16px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
}

/* ===== SISTEMA DE MODAL INTEGRADO ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    animation: modalAppear 0.4s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.modal-container {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(45, 45, 68, 0.95));
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.modal-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #5969cf, #7b4cff);
    color: white;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(45deg, white, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-message {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-button {
    display: block;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(45deg, #5969cf, #7b4cff);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(89, 105, 207, 0.3);
}

.modal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(89, 105, 207, 0.4);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(90deg);
}

/* Efeito de confete */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #5969cf, #7b4cff, #00d4aa);
    opacity: 0.7;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .modal-container {
        padding: 30px 25px;
    }
    
    .modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
}

/* ===== CORREÇÃO: CENTRALIZAR CARDS NA RESPONSIVIDADE ===== */

/* Para telas menores que 768px (mobile) */
@media (max-width: 768px) {
    /* Centraliza os cards de serviços */
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
    }

    /* Centraliza os cards de diferenciais */
    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
    }

    /* Ajusta a largura dos cards para ficarem bem centralizados */
    .service-card, .feature-card {
        width: 100% !important;
        max-width: 350px !important; /* Largura máxima para não ficarem muito largos */
        margin: 0 auto !important; /* Centraliza horizontalmente */
        text-align: center !important;
    }
}

/* Para telas entre 769px e 1024px (tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Para tablets, podemos usar grid com centralização */
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        justify-items: center !important; /* Centraliza os itens do grid */
        gap: 25px !important;
    }

    .features-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        justify-items: center !important; /* Centraliza os itens do grid */
        gap: 25px !important;
    }

    .service-card, .feature-card {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
    }
}

/* Ajuste extra para telas muito pequenas (até 480px) */
@media (max-width: 480px) {
    .service-card, .feature-card {
        max-width: 100% !important;
        padding: 25px !important;
    }
}
/* ===== SOLUÇÃO ALTERNATIVA - CENTRALIZAÇÃO FORÇADA ===== */

/* Para todas as telas menores que desktop */
@media (max-width: 1200px) {
    .services-grid, .features-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 25px !important;
        padding: 0 20px !important;
    }
    
    .service-card, .feature-card {
        flex: 0 0 auto !important;
        width: 300px !important;
        max-width: 100% !important;
        margin: 10px !important;
    }
}

/* Ajuste fino para mobile */
@media (max-width: 480px) {
    .services-grid, .features-grid {
        padding: 0 10px !important;
    }
    
    .service-card, .feature-card {
        width: 100% !important;
        margin: 10px 0 !important;
    }
}
/* ===== CORREÇÃO DO SELECT (SERVIÇO DE INTERESSE) ===== */

/* Estilização principal do select */
.form-select {
    background-color: rgba(255, 255, 255, 0.08) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235969cf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 16px !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    padding: 15px 45px 15px 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

/* Remove o fundo branco padrão do select */
.form-select::-ms-expand {
    display: none !important;
}

/* Estilo quando o select está em foco */
.form-select:focus {
    outline: none !important;
    border-color: #5969cf !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 0 0 3px rgba(89, 105, 207, 0.2) !important;
}

/* Estilo para as opções do select */
.form-select option {
    background-color: #1a1a2e !important;
    color: white !important;
    padding: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
}

/* Estilo para option selecionado */
.form-select option:checked,
.form-select option:selected {
    background-color: #5969cf !important;
    color: white !important;
}

/* Placeholder do select (opção vazia) */
.form-select option[value=""] {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Hover nas opções (funciona melhor em alguns navegadores) */
.form-select option:hover {
    background-color: #7b4cff !important;
}

/* Estilo quando o select está inválido */
.form-select:invalid {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Para navegadores Webkit (Chrome, Safari, Edge) */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .form-select {
        padding-right: 45px !important;
    }
    
    .form-select option {
        background-color: #1a1a2e !important;
        color: white !important;
        padding: 10px 15px !important;
    }
}

/* Para Firefox */
@-moz-document url-prefix() {
    .form-select {
        text-indent: 0.01px !important;
        text-overflow: '' !important;
        padding-right: 45px !important;
    }
    
    .form-select option {
        background-color: #1a1a2e !important;
        color: white !important;
    }
}

/* Para Internet Explorer (se necessário) */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-select {
        padding-right: 45px !important;
        background-color: rgba(255, 255, 255, 0.08) !important;
    }
    
    .form-select::-ms-value {
        background-color: transparent !important;
        color: white !important;
    }
    
    .form-select::-ms-expand {
        display: none !important;
    }
}
