
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        .nav-item {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-item::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: white;
            transition: width 0.3s ease;
        }
        
        .nav-item:hover::after {
            width: 100%;
        }
        
        .hero-text {
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }
        
        /* Efeito de hover nos cards de serviço */
        .service-card {
            transition: all 0.3s ease;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        /* Footer melhorado */
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            transition: all 0.2s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: #3b82f6;
            transform: translateX(5px);
        }
        
        /* Melhorias no formulário */
        .form-input {
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        
        .form-input:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }
        
        /* Estilos para o navbar */
        #navbar {
            transition: all 0.3s ease;
            background: transparent;
        }
        
        #navbar.scrolled {
            background: rgb(255, 255, 255);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        #navbar.scrolled .nav-link {
            color: #1e3a8a;
        }
        
        #navbar.scrolled .nav-link:hover {
            color: #2563eb;
        }
        
        #navbar.scrolled #mobile-menu-button {
            color: #1e3a8a;
        }
        
        /* Efeito nos depoimentos */
        .testimonial-card {
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: scale(1.02);
        }
        
        /* Adicionando novas animações */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes slideIn {
            from { transform: translateX(-100%); }
            to { transform: translateX(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .floating {
            animation: float 3s ease-in-out infinite;
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        .slide-in {
            animation: slideIn 1s ease-out;
        }
        
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        
        .rotate {
            animation: rotate 2s linear infinite;
        }
        
        /* Melhorando responsividade */
        @media (max-width: 768px) {
            .hero-text {
                font-size: 2.5rem;
                text-align: center;
            }
            
            .container {
                padding: 2rem 1rem;
            }
            
            .flex-col {
                gap: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-text {
                font-size: 2rem;
            }
            
            .text-lg {
                font-size: 1rem;
            }
        }

        /* Animações */
        @keyframes float {
            0% {
                transform: translateY(0) scale(1);
                opacity: 0;
            }
            50% {
                transform: translateY(-100px) scale(1.5);
                opacity: 0.5;
            }
            100% {
                transform: translateY(-200px) scale(1);
                opacity: 0;
            }
        }

        @keyframes slideInFromLeft {
            0% {
                transform: translateX(-100%);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInFromRight {
            0% {
                transform: translateX(100%);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Classes de animação */
        .animate-slide-left {
            animation: slideInFromLeft 0.5s ease-out forwards;
        }

        .animate-slide-right {
            animation: slideInFromRight 0.5s ease-out forwards;
        }

        .animate-fade-in {
            animation: fadeIn 0.5s ease-out forwards;
        }

        /* Hover effects */
        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: currentColor;
            transition: width 0.3s ease;
        }

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

        .service-card {
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .hero-text {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .service-card {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-text {
                font-size: 2rem;
                line-height: 1.2;
            }

            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        /* Efeitos de fundo */
        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Efeitos de hover para botões */
        .btn-primary {
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Efeitos de hover para cards */
        .hover-card {
            transition: all 0.3s ease;
        }

        .hover-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Efeitos de hover para links do footer */
        .footer-link {
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #3b82f6;
            transform: translateX(5px);
        }

        /* Efeitos de hover para ícones */
        .icon-hover {
            transition: all 0.3s ease;
        }

        .icon-hover:hover {
            transform: scale(1.2);
            color: #3b82f6;
        }

        /* Efeitos de scroll */
        .scroll-shadow {
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .scroll-shadow.scrolled {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Efeitos de loading */
        .loading {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                opacity: 1;
            }
        }

        /* Efeitos de hover para imagens */
        .img-hover {
            transition: all 0.3s ease;
        }

        .img-hover:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        /* Efeitos de hover para formulários */
        .form-input {
            transition: all 0.3s ease;
        }

        .form-input:focus {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Estilo para o dropdown */
        select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1.5em;
        }

        select option {
            background-color: #1e3a8a;
            color: white;
            padding: 0.5rem;
        }

        select:focus {
            background-color: #1e3a8a;
        }

        /* Animação do menu mobile */
        #mobile-menu.open {
            transform: translateX(0);
        }