 /* ========================================
           RESET & VARIÁVEIS
        ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Cores */
            --primary-blue: #0A2E5C;
            --primary-green: #2ECC71;
            --accent-orange: #F39C12;
            --white: #FFFFFF;
            --gray-50: #F8F9FA;
            --gray-200: #E9ECEF;
            --gray-600: #6C757D;
            --gray-900: #212529;
            
            /* Tipografia */
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            /* Espaçamento */
            --section-padding: 80px 20px;
            --container-max: 1200px;
            
            /* Sombras */
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
            --shadow-3d: 0 20px 40px rgba(0,0,0,0.2);
        }

        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--gray-900);
            overflow-x: hidden;
        }

        /* ========================================
           SCROLL PROGRESS BAR
        ======================================== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
            z-index: 9999;
            transition: width 0.1s ease-out;
        }

        /* ========================================
           UTILITÁRIOS
        ======================================== */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: var(--accent-orange);
            color: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            background: #E67E22;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-blue);
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 16px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-600);
            text-align: center;
            max-width: 600px;
            margin: 0 auto 48px;
        }

        /* ========================================
           HEADER & NAVEGAÇÃO
        ======================================== */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
            transition: transform 0.3s;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo span {
            color: var(--primary-green);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray-900);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary-blue);
            transition: 0.3s;
        }

        /* ========================================
           HERO SECTION - DASHBOARD STYLE
        ======================================== */
        .hero {
            background: linear-gradient(135deg, #0A2E5C 0%, #0F4C81 50%, #1565A8 100%);
            color: var(--white);
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
            min-height: 650px;
        }

        /* Grid de fundo */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Efeito de luz */
        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.2); opacity: 0.5; }
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero-tag {
            display: inline-block;
            background: rgba(46, 204, 113, 0.2);
            backdrop-filter: blur(10px);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(46, 204, 113, 0.3);
            animation: fadeInUp 0.8s ease-out;
            align-self: center;
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease-out 0.1s backwards;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 32px;
            opacity: 0.9;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-stats-mini {
            display: flex;
            gap: 32px;
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease-out 0.3s backwards;
        }

        .stat-mini {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stat-mini-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .stat-mini-text h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0;
            color: var(--primary-green);
        }

        .stat-mini-text p {
            font-size: 0.75rem;
            margin: 0;
            opacity: 0.8;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        /* Dashboard Visual */
        .hero-visual {
            position: relative;
            height: 500px;
        }

        .dashboard-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.2);
            animation: float 6s ease-in-out infinite;
        }

        .dashboard-card.card-1 {
            top: 0;
            left: 0;
            width: 280px;
            animation-delay: 0s;
        }

        .dashboard-card.card-2 {
            top: 120px;
            right: 0;
            width: 240px;
            animation-delay: 1s;
        }

        .dashboard-card.card-3 {
            bottom: 40px;
            left: 40px;
            width: 260px;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .card-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600);
        }

        .card-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary-green), #27AE60);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
        }

        .card-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .card-change {
            font-size: 0.875rem;
            color: var(--primary-green);
            font-weight: 600;
        }

        .card-change.negative {
            color: #E74C3C;
        }

        /* Mini gráfico */
        .mini-chart {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 60px;
            margin-top: 12px;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(180deg, var(--primary-green), #27AE60);
            border-radius: 4px 4px 0 0;
            animation: barGrow 1.5s ease-out backwards;
        }

        @keyframes barGrow {
            from { height: 0; }
        }

        .chart-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
        .chart-bar:nth-child(2) { height: 65%; animation-delay: 0.2s; }
        .chart-bar:nth-child(3) { height: 50%; animation-delay: 0.3s; }
        .chart-bar:nth-child(4) { height: 80%; animation-delay: 0.4s; }
        .chart-bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
        .chart-bar:nth-child(6) { height: 90%; animation-delay: 0.6s; }
        .chart-bar:nth-child(7) { height: 100%; animation-delay: 0.7s; }

        /* Progress Circle */
        .progress-circle {
            position: relative;
            width: 80px;
            height: 80px;
            margin-top: 12px;
        }

        .progress-circle svg {
            transform: rotate(-90deg);
        }

        .progress-circle circle {
            fill: none;
            stroke-width: 8;
        }

        .progress-bg {
            stroke: var(--gray-200);
        }

        .progress-bar {
            stroke: var(--primary-green);
            stroke-linecap: round;
            stroke-dasharray: 251.2;
            stroke-dashoffset: 62.8;
            animation: progressFill 2s ease-out forwards;
        }

        @keyframes progressFill {
            from { stroke-dashoffset: 251.2; }
            to { stroke-dashoffset: 62.8; }
        }

        .progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        /* ========================================
           NÚMEROS / ESTATÍSTICAS
        ======================================== */
        .stats {
            background: var(--gray-50);
            padding: 60px 20px;
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            text-align: center;
        }

        .stat-item {
            padding: 24px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .stat-item h3 {
            font-family: var(--font-heading);
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .stat-item p {
            color: var(--gray-600);
            font-weight: 500;
        }

        /* ========================================
           SERVIÇOS (CARDS 3D HOVER)
        ======================================== */
        .services {
            padding: var(--section-padding);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 48px;
            perspective: 1000px;
        }

        .service-card {
            background: var(--white);
            padding: 40px 32px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: all 0.5s ease;
            border-top: 4px solid var(--primary-green);
            transform-style: preserve-3d;
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(46, 204, 113, 0.1));
            opacity: 0;
            transition: opacity 0.5s;
            border-radius: 12px;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-12px) rotateX(5deg);
            box-shadow: var(--shadow-3d);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary-green), #27AE60);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 24px;
            transition: all 0.3s;
            color: var(--white);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ========================================
           SOBRE (GLASSMORPHISM)
        ======================================== */
        .about {
            background: var(--primary-blue);
            color: var(--white);
            padding: var(--section-padding);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(46, 204, 113, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: pulse 8s ease-in-out infinite;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about h2 {
            color: var(--white);
            text-align: left;
        }

        .about-text p {
            margin-bottom: 20px;
            opacity: 0.95;
            font-size: 1.125rem;
        }

        .about-features {
            display: grid;
            gap: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 16px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }

        .feature-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateX(8px);
        }

        .feature-icon {
            font-size: 1.5rem;
        }

        /* ========================================
           DEPOIMENTOS (SLIDER INTERATIVO)
        ======================================== */
        .testimonials {
            padding: var(--section-padding);
            background: var(--gray-50);
        }

        .testimonials-wrapper {
            position: relative;
            margin-top: 48px;
        }

        .testimonials-slider {
            display: flex;
            gap: 32px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding-bottom: 20px;
            scrollbar-width: none;
        }

        .testimonials-slider::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            min-width: 350px;
            background: var(--white);
            padding: 32px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            scroll-snap-align: start;
            transition: all 0.3s;
            border-left: 4px solid var(--primary-green);
        }

        .testimonial-card:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--gray-600);
            margin-bottom: 24px;
            line-height: 1.7;
            position: relative;
            padding-left: 20px;
        }

        .testimonial-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--primary-green);
            opacity: 0.3;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-green), #27AE60);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
            box-shadow: var(--shadow-sm);
        }

        .author-info h4 {
            font-weight: 600;
            color: var(--primary-blue);
        }

        .author-info p {
            color: var(--gray-600);
            font-size: 0.9rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 24px;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary-green);
            background: var(--white);
            color: var(--primary-green);
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .slider-btn:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: scale(1.1);
        }

        /* ========================================
           CTA FINAL (GRADIENT ANIMADO)
        ======================================== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, #27AE60 100%);
            color: var(--white);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: backgroundScroll 20s linear infinite;
        }

        @keyframes backgroundScroll {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 32px;
            opacity: 0.95;
            position: relative;
            z-index: 2;
        }

        /* ========================================
           CONTATO
        ======================================== */
        .contact {
            padding: var(--section-padding);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            margin-top: 48px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            padding: 20px;
            background: var(--gray-50);
            border-radius: 12px;
            transition: all 0.3s;
        }

        .contact-item:hover {
            background: var(--white);
            box-shadow: var(--shadow-md);
            transform: translateX(8px);
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-green), #27AE60);
            color: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .contact-item h4 {
            color: var(--primary-blue);
            margin-bottom: 4px;
        }

        .contact-item p {
            color: var(--gray-600);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            background: var(--gray-50);
            padding: 40px;
            border-radius: 12px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-weight: 600;
            color: var(--primary-blue);
        }

        .form-group input,
        .form-group textarea {
            padding: 14px 16px;
            border: 2px solid var(--gray-200);
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all 0.3s;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* ========================================
           FLOATING WHATSAPP BUTTON
        ======================================== */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s;
            animation: bounce 2s infinite;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* ========================================
           FOOTER
        ======================================== */
        footer {
            background: var(--primary-blue);
            color: var(--white);
            padding: 60px 20px 24px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-family: var(--font-heading);
            margin-bottom: 16px;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: all 0.3s;
        }

        .footer-section a:hover {
            color: var(--primary-green);
            transform: translateX(4px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }

        /* ========================================
           RESPONSIVIDADE
        ======================================== */
        @media (max-width: 968px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-visual {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-content {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow-md);
                transform: translateY(-100%);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s ease;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content,
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-card {
                min-width: 300px;
            }

            .whatsapp-float {
                width: 56px;
                height: 56px;
                font-size: 28px;
            }

            
        }

        /* ========================================
           ANIMAÇÕES
        ======================================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
    
        /* ========================================
           MEDIA QUERY PARA TELAS PEQUENAS (< 480px)
           Tudo centralizado e em coluna (exceto depoimentos)
        ======================================== */
        @media (max-width: 480px) {
            /* ========== CONFIGURAÇÕES GERAIS ========== */
            body {
                font-size: 14px;
            }

            /* CONTAINER GERAL */
            .container {
                padding: 0 15px;
                max-width: 100%;
            }

            /* CENTRALIZAR TODAS AS SEÇÕES (exceto testimonials) */
            section:not(.testimonials) {
                text-align: center;
            }

            section:not(.testimonials) * {
                text-align: center;
            }

            /* ========== HERO SECTION ========== */
            .hero {
                padding: 60px 15px;
                min-height: 500px;
                text-align: center;
            }

            .hero .container {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 1.75rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .hero-stats-mini {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }

            .stat-mini {
                width: 100%;
                max-width: 280px;
                
            }

            .hero-ctas {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }

            .hero-ctas .btn {
                width: 100%;
                max-width: 280px;
            }

            /* ========== STATS SECTION ========== */
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .stat-item {
                padding: 24px 16px;
            }

            .stat-item h3 {
                font-size: 2rem;
            }

            .stat-item p {
                font-size: 0.9rem;
            }

            /* ========== SERVICES SECTION ========== */
            .services {
                padding: 60px 15px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .service-card {
                padding: 24px 16px;
            }

            .service-card h3 {
                font-size: 1.25rem;
            }

            .service-card p {
                font-size: 0.9rem;
            }

            /* ========== ABOUT SECTION ========== */
            .about {
                padding: 60px 15px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .about-features {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .feature-item {
                flex-direction: column;
                align-items: center;
                gap: 8px;
                padding: 16px;
            }

            /* ========== CTA SECTION ========== */
            .cta-section {
                padding: 60px 15px;
            }

            .cta-section h2 {
                font-size: 1.75rem;
            }

            .cta-section .btn {
                width: 100%;
                max-width: 280px;
            }

            /* ========== CONTACT SECTION ========== */
            .contact {
                padding: 60px 15px;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .contact-info {
                gap: 16px;
            }

            .contact-item {
                padding: 16px 12px;
                gap: 12px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .contact-item p {
                font-size: 0.875rem;
                word-break: break-word;
                overflow-wrap: break-word;
                max-width: 100%;
            }

            .contact-item h4 {
                font-size: 1rem;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .contact-form {
                padding: 24px 16px;
            }

            .contact-form input,
            .contact-form textarea {
                font-size: 0.9rem;
            }

            /* ========== FOOTER ========== */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 8px;
            }

            /* ========== ELEMENTOS GERAIS ========== */
            .section-title {
                font-size: 1.75rem;
                text-align: center;
            }

            .section-subtitle {
                font-size: 0.95rem;
                text-align: center;
            }

            .btn {
                padding: 14px 24px;
                font-size: 0.9rem;
            }

            /* ========== DASHBOARD CARDS (HERO VISUAL) ========== */
            .dashboard-card {
                padding: 16px;
            }

            .dashboard-card h4 {
                font-size: 0.875rem;
            }

            /* ========== NAVEGAÇÃO MOBILE ========== */
            .nav-links {
                text-align: left;
            }

            .nav-links a {
                text-align: left;
            }
        }

        /* ========================================
           MEDIA QUERY EXTRA PARA TELAS MUITO PEQUENAS (< 320px)
           Redução agressiva de espaçamentos e fontes
        ======================================== */
        @media (max-width: 320px) {
            /* REDUZIR PADDINGS GLOBAIS */
            body {
                font-size: 13px;
            }

            .container {
                padding: 0 10px !important;  /* De 15px para 10px */
            }

            /* ========== HERO ========== */
            .hero {
                padding: 50px 10px !important;
            }

            .hero h1 {
                font-size: 1.5rem !important;
                word-break: break-word;
            }

            .hero p {
                font-size: 0.85rem !important;
            }

            /* ========== TODAS AS SEÇÕES ========== */
            section {
                padding: 50px 10px !important;
            }

            .section-title {
                font-size: 1.5rem !important;
                word-break: break-word;
            }

            .section-subtitle {
                font-size: 0.85rem !important;
            }

            /* ========== CONTACT - CORREÇÃO DEFINITIVA ========== */
            .contact {
                padding: 50px 10px !important;
            }

            .contact-item {
                padding: 12px 8px !important;  /* De 16px 12px para 12px 8px */
                gap: 10px !important;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .contact-item > div {
                width: 100%;
                max-width: 100%;
                overflow: hidden;
            }

            .contact-item h4 {
                font-size: 0.9rem !important;
                word-break: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
            }

            .contact-item p {
                font-size: 0.75rem !important;  /* De 0.875rem para 0.75rem */
                word-break: break-all !important;  /* Força quebra em qualquer lugar */
                overflow-wrap: anywhere !important;
                hyphens: auto;
                line-height: 1.4;
                max-width: 100%;
            }

            .contact-icon {
                width: 36px !important;  /* De 40px para 36px */
                height: 36px !important;
                font-size: 0.9rem !important;
                flex-shrink: 0;
            }

            .contact-form {
                padding: 20px 12px !important;
            }

            /* ========== STATS ========== */
            .stat-item {
                padding: 20px 12px !important;
            }

            .stat-item h3 {
                font-size: 1.75rem !important;
            }

            .stat-item p {
                font-size: 0.8rem !important;
            }

            /* ========== SERVICES ========== */
            .service-card {
                padding: 20px 12px !important;
            }

            .service-card h3 {
                font-size: 1.1rem !important;
            }

            .service-card p {
                font-size: 0.85rem !important;
            }

            /* ========== BOTÕES ========== */
            .btn {
                padding: 12px 20px !important;
                font-size: 0.85rem !important;
            }

            /* ========== ABOUT ========== */
            .feature-item {
                padding: 12px !important;
            }

            /* ========== FOOTER ========== */
            .footer-content {
                gap: 24px !important;
            }

            /* ========== FORÇAR BOX-SIZING EM TUDO ========== */
            * {
                box-sizing: border-box !important;
            }
        }
