* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            background: #ffffff;
            color: #1a1a1a;
            overflow-x: hidden;
            padding-top: 90px; /* Compensa a altura do header fixo */
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #4338ca;
            font-style: italic;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background: #f3f4f6;
            color: #1f2937;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding-top: 80px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-text h1::first-letter {
            color: #4338ca;
            font-style: italic;
            font-size: 4rem;
        }

        .hero-text .subtitle {
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 3rem 0;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #4338ca;
            display: block;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-button {
            background: linear-gradient(135deg, #4338ca, #6366f1);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 14px 0 rgba(67, 56, 202, 0.3);
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #3730a3, #4f46e5);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px 0 rgba(67, 56, 202, 0.4);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #4338ca, #6366f1);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: #d1d5db;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #eef2ff, #e0e7ff);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border: 1px solid #c7d2fe;
        }

        .service-icon i {
            font-size: 1.5rem;
            color: #4338ca;
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .service-description {
            color: #6b7280;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background: #f9fafb;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.125rem;
            color: #374151;
            line-height: 1.8;
        }

        .about-features {
            list-style: none;
            margin-top: 2rem;
        }

        .about-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: #374151;
        }

        .about-features i {
            color: #4338ca;
            font-size: 1.125rem;
        }

        .about-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 500px;
        }

        /* Carrossel de Imagens - About */
        .about-carousel {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .about-carousel .swiper-slide {
            position: relative;
            height: 500px;
        }

        .about-carousel .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-carousel .swiper-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(67, 56, 202, 0.1), transparent 50%);
        }

        .about-carousel .swiper-pagination {
            bottom: 20px;
        }

        .about-carousel .swiper-pagination-bullet {
            background: #ffffff;
            opacity: 0.7;
            width: 10px;
            height: 10px;
        }

        .about-carousel .swiper-pagination-bullet-active {
            background: #4338ca;
            opacity: 1;
        }

        .about-carousel .swiper-button-next,
        .about-carousel .swiper-button-prev {
            color: #ffffff;
            background: rgba(67, 56, 202, 0.8);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-top: -20px;
        }

        .about-carousel .swiper-button-next::after,
        .about-carousel .swiper-button-prev::after {
            font-size: 16px;
            font-weight: 700;
        }

        .about-carousel .swiper-button-next:hover,
        .about-carousel .swiper-button-prev:hover {
            background: rgba(67, 56, 202, 1);
        }

        /* Team Section */
        .team {
            padding: 6rem 0;
            background: #ffffff;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .team-card {
            text-align: center;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            background: #f3f4f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .team-avatar i {
            font-size: 2rem;
            color: #6b7280;
        }

        .team-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: #6b7280;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .team-description {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: #f9fafb;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #374151;
            box-shadow: 0 0 0 3px rgba(55, 65, 81, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #eef2ff, #e0e7ff);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid #c7d2fe;
        }

        .contact-icon i {
            color: #4338ca;
        }

        .contact-details h4 {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: #6b7280;
            font-size: 0.875rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #312e81, #4338ca);
            color: #e0e7ff;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section p {
            color: #c7d2fe;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(199, 210, 254, 0.3);
            padding-top: 1rem;
            text-align: center;
            color: #c7d2fe;
            font-size: 0.875rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-content,
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .container {
                padding: 0 1rem;
            }
        }
    /* Estilos para Menu Mobile */

/* Botão do menu hamburguer */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animação do hambúrguer quando ativo */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999; /* REDUZIDO de 1001 para 999 */
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex !important;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 30px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
        list-style: none;
        position: relative; /* ADICIONADO */
        z-index: 1002; /* ADICIONADO - Z-index maior para os links */
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-menu .nav-link {
        color: white !important;
        font-size: 28px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        padding: 20px 40px !important;
        border-radius: 12px !important;
        transition: all 0.3s ease !important;
        display: block !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        border: 2px solid transparent !important;
        min-width: 200px !important;
        margin: 10px 0 !important;
        position: relative !important; /* ADICIONADO */
        z-index: 1003 !important; /* ADICIONADO - Z-index ainda maior para garantir clique */
        cursor: pointer !important; /* ADICIONADO - Garante que o cursor mude */
        pointer-events: auto !important; /* ADICIONADO - Garante que aceite cliques */
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: translateY(-3px) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* ADICIONADO - Estado ativo para feedback visual */
    .nav-menu .nav-link:active {
        transform: scale(0.95) !important;
        background: rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Ajuste da navbar */
    .navbar {
        justify-content: space-between;
    }
}

/* Overlay para fechar o menu clicando fora */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998; /* REDUZIDO de 1000 para 998 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none; /* ADICIONADO - Não interfere quando invisível */
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* ADICIONADO - Permite cliques quando ativo */
}
.form-feedback {
        margin-top: 15px;
        padding: 12px;
        border-radius: 8px;
        display: none;
        font-weight: 500;
    }
    
    .form-feedback.success {
        background-color: #d4edda;
        border: 1px solid #c3e6cb;
        color: #155724;
    }
    
    .form-feedback.error {
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        color: #721c24;
    }
    
    .form-loading {
        opacity: 0.6;
        pointer-events: none;
    }