 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
:root {
            --orange-primary: #FF6B00;
            --orange-secondary: #FF9E4F;
            --orange-light: #FFD6B1;
            --white: #FFFFFF;
            --off-white: #F8F8F8;
            --dark-gray: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--white);
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        
        section {
            min-height: 100vh;
            padding: 100px 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        /* NAV STYLING */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--orange-primary);
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            margin-right: 10px;
            font-size: 32px;
            animation: pulse 2s infinite;
        }
        
        .menu {
            display: flex;
            gap: 30px;
        }
        
        .menu a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 600;
            font-size: 16px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .menu a:hover {
            color: var(--orange-primary);
        }
        
        .menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background-color: var(--orange-primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .menu a:hover::after {
            width: 100%;
        }
        
        /* HERO SECTION */
        #hero {
    background: none;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    
}

/* Partículas tecnológicas pulsantes */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    animation: pulse 8s infinite alternate;
}

/* Grade tecnológica */
#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 30px 30px;
    z-index: 1;
    animation: grid-move 15s linear infinite;
}

/* Círculos luminosos flutuantes */
.tech-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 194, 114, 0.8) 0%, rgb(219, 99, 0) 70%);
    filter: blur(1px);
    z-index: 1;
    animation: float 10s infinite ease-in-out;
}

.tech-circle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    
}

.tech-circle:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 80%;
    animation-delay: 2s;
}

.tech-circle:nth-child(3) {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

.tech-circle:nth-child(4) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 70%;
    animation-delay: 6s;
}

/* Linhas conectadas pulsantes */
.tech-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(224, 118, 5), transparent);
    z-index: 1;
    transform-origin: left center;
    animation: line-pulse 4s infinite ease-in-out;
    opacity: 1;
}

.tech-line:nth-child(5) {
    width: 30%;
    top: 25%;
    left: 10%;
    transform: rotate(30deg);
    animation-delay: 0s;
}

.tech-line:nth-child(6) {
    width: 40%;
    top: 60%;
    left: 30%;
    transform: rotate(-15deg);
    animation-delay: 1s;
}

.tech-line:nth-child(7) {
    width: 25%;
    top: 40%;
    left: 60%;
    transform: rotate(60deg);
    animation-delay: 2s;
}

/* Animação principal para os círculos */
@keyframes orbitAndPulse {
    0% {
        transform: 
            translateX(0) translateY(0) 
            scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    40% {
        transform: 
            translateX(50px) translateY(-30px) 
            scale(1.1);
        opacity: 0.8;
    }
    60% {
        transform: 
            translateX(80px) translateY(20px) 
            scale(1);
    }
    80% {
        transform: 
            translateX(30px) translateY(40px) 
            scale(0.7);
        opacity: 0.5;
    }
    100% {
        transform: 
            translateX(0) translateY(0) 
            scale(0.8);
        opacity: 0;
    }
}


/* Animação pulsante */
@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

/* Animação para as linhas */
@keyframes line-pulse {
    0% {
        opacity: 0.1;
        transform: scaleX(0.85) translateY(0px);
    }
    50% {
        opacity: 0.5;
        transform: scaleX(1) translateY(3px);
    }
    100% {
        opacity: 0.1;
        transform: scaleX(0.85) translateY(0px);
    }
}

/* Animação para os círculos */
@keyframes float {
    0% {
        opacity: 0.1;
        transform: translateY(0px) scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-40px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(0.9);
    }
}

/* Animação para a grade */
@keyframes grid-move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--dark-gray);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.3s;
        }
        
        h1 span {
            color: var(--orange-primary);
            position: relative;
            display: inline-block;
        }
        
        h1 span::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 8px;
            background-color: var(--orange-light);
            bottom: 5px;
            left: 0;
            z-index: -1;
        }
        
        .subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            color: var(--dark-gray);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.6s;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            color: var(--white);
            background-color: var(--orange-primary);
            border-radius: 50px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.9s;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
        }
        
        .icon {
            position: absolute;
            font-size: 24px;
            color: var(--orange-light);
            opacity: 0.6;
            animation: float 15s infinite linear;
        }


/* New Animations */
.fade-slide.animated {
    animation: fadeSlide 1s forwards;
}

.zoom-in.animated {
    animation: zoomIn 1s forwards;
}

.glow-pulse.animated {
    animation: glowPulse 1.5s infinite alternate;
}

/* Keyframes */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowPulse {
    0% {
      
        transform: translateY(40px);
        box-shadow: 0 0 0 rgba(255, 102, 0, 0);
    }
    100% {
         
        
        box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
    }
}

@keyframes iconPop {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}
        
        /* SERVICES SECTION */
        #services {
            background-color: var(--off-white);
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 60px;
            color: var(--dark-gray);
            text-align: center;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .section-title.animated {
            animation: fadeUp 1s forwards;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 5px;
            background-color: var(--orange-primary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .service-card.animated {
            animation: fadeUp 0.6s forwards;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--orange-primary);
            display: inline-block;
        }
        
        .spin {
            animation: spin 20s linear infinite;
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        .bounce {
            animation: bounce 2s infinite;
        }
        
        h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-gray);
        }
        
        .service-card p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--dark-gray);
        }
        
        /* ABOUT SECTION */
        #about {
            background: linear-gradient(135deg, var(--orange-light) 0%, var(--white) 100%);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
            opacity: 0;
            transform: translateX(-30px);
        }
        
        .about-text.animated {
            animation: fadeRight 1s forwards;
        }
        
        .about-text p {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            opacity: 0;
            transform: translateX(30px);
        }
        
        .about-image.animated {
            animation: fadeLeft 1s forwards;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
           
        }
        
        .stats-container {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }
        
        .stat {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .stat.animated {
            animation: fadeUp 0.6s forwards;
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--orange-primary);
            margin-bottom: 5px;
        }
        
        .stat-text {
            font-size: 16px;
            color: var(--dark-gray);
        }
        
        /* PORTFOLIO SECTION */
        #portfolio {
            background-color: var(--white);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            opacity: 0;
            transform: scale(0.9);
        }
        
        .portfolio-item.animated {
            animation: scaleIn 0.6s forwards;
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit:contain;
            transition: transform 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 107, 0, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover img {
            transform: scale(1.1);
        }
        
        .portfolio-title {
            color: var(--white);
            font-size: 20px;
            margin-bottom: 10px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease 0.1s;
        }
        
        .portfolio-category {
            color: var(--white);
            font-size: 16px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease 0.2s;
        }
        
        .portfolio-item:hover .portfolio-title,
        .portfolio-item:hover .portfolio-category {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* CONTACT SECTION */
        #contact {
            background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
            color: var(--white);
        }
        
        .contact-content {
            display: flex;
            gap: 50px;
            margin-top: 40px;
        }
        
        .contact-info {
            flex: 1;
            opacity: 0;
            transform: translateX(-30px);
        }
        
        .contact-info.animated {
            animation: fadeRight 1s forwards;
        }
        
        .contact-info h3 {
            color: var(--white);
            margin-bottom: 30px;
            font-size: 24px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            font-size: 24px;
            margin-right: 15px;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .contact-text {
            font-size: 16px;
            line-height: 1.6;
        }
        
        .contact-form {
            flex: 1;
            opacity: 0;
            transform: translateX(30px);
        }
        
        .contact-form.animated {
            animation: fadeLeft 1s forwards;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .form-control:focus {
            background-color: rgba(255, 255, 255, 0.3);
            outline: none;
        }
        
        textarea.form-control {
            resize: none;
            height: 150px;
        }
        
        .submit-btn {
            padding: 15px 30px;
            background-color: var(--white);
            color: var(--orange-primary);
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* FOOTER */
        footer {
            background-color: var(--dark-gray);
            padding: 30px 10%;
            text-align: center;
            color: var(--white);
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--orange-primary);
            margin-bottom: 20px;
        }
        
        .footer-menu {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .footer-menu a {
            text-decoration: none;
            color: var(--white);
            transition: color 0.3s ease;
        }
        
        .footer-menu a:hover {
            color: var(--orange-primary);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--orange-primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* ANIMATIONS */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        /* RESPONSIVE */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .contact-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 80px 5%;
            }
            
            nav {
                padding: 15px 5%;
            }
            
            h1 {
                font-size: 36px;
            }
            
            .menu {
                display: none;
            }
            
            .stats-container {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .stat {
                flex: 0 0 calc(50% - 10px);
            }
        }

         .tech-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }

        .tech-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(255, 158, 79, 0.1) 70%);
            filter: blur(2px);
            animation: float 12s infinite ease-in-out;
        }

        .tech-circle:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .tech-circle:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-delay: 3s;
        }

        .tech-circle:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 35%;
            right: 25%;
            animation-delay: 6s;
        }

        .tech-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--orange-secondary), transparent);
            animation: line-pulse 6s infinite ease-in-out;
            opacity: 0.3;
        }

        .tech-line:nth-child(4) {
            width: 35%;
            top: 25%;
            left: 15%;
            transform: rotate(25deg);
            animation-delay: 1s;
        }

        .tech-line:nth-child(5) {
            width: 30%;
            top: 70%;
            left: 30%;
            transform: rotate(-20deg);
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                opacity: 0.2;
                transform: translateY(0px) scale(0.9);
            }
            50% {
                opacity: 0.6;
                transform: translateY(-30px) scale(1.1);
            }
        }

        @keyframes line-pulse {
            0%, 100% {
                opacity: 0.1;
                transform: scaleX(0.8);
            }
            50% {
                opacity: 0.4;
                transform: scaleX(1.2);
            }
        }

        .section-title {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--dark-gray);
            text-align: center;
            position: relative;
            z-index: 2;
            font-weight: 700;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.3s;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 6px;
            background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }

        .promo-subtitle {
            text-align: center;
            font-size: 20px;
            color: var(--dark-gray);
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.6s;
        }

        .custom-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }

        .custom-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            border: 2px solid transparent;
        }

        .custom-card:nth-child(1) { animation: cardEntrance 1s forwards 0.8s; }
        .custom-card:nth-child(2) { animation: cardEntrance 1s forwards 1.1s; }
        .custom-card:nth-child(3) { animation: cardEntrance 1s forwards 1.4s; }

        @keyframes cardEntrance {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .custom-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--orange-primary), var(--orange-secondary), var(--orange-light), var(--orange-primary));
            border-radius: 18px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
            animation: gradient-rotate 3s linear infinite;
        }

        @keyframes gradient-rotate {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .custom-card:hover {
            transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
            box-shadow: 0 25px 50px rgba(255, 107, 0, 0.2);
            border-color: var(--orange-primary);
        }

        .custom-card:hover::before {
            opacity: 1;
        }

        .urgency-badge {
            position: absolute;
            top: -12px;
            right: -12px;
            background: linear-gradient(135deg, var(--orange-primary), #ff4757);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            animation: urgencyPulse 2s ease-in-out infinite;
            z-index: 3;
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
        }

        @keyframes urgencyPulse {
            0%, 100% { 
                transform: scale(1); 
                box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
            }
            50% { 
                transform: scale(1.1); 
                box-shadow: 0 6px 25px rgba(255, 107, 0, 0.6);
            }
        }

        .card-icon {
            font-size: 60px;
            margin-bottom: 25px;
            color: var(--orange-primary);
            display: inline-block;
            animation: iconBounce 3s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) scale(1); }
            40% { transform: translateY(-10px) scale(1.1); }
            60% { transform: translateY(-5px) scale(1.05); }
        }

        .custom-card:hover .card-icon {
            animation: iconSpin 0.8s ease-in-out;
            color: var(--orange-secondary);
        }

        @keyframes iconSpin {
            0% { transform: rotateY(0deg) scale(1); }
            50% { transform: rotateY(180deg) scale(1.2); }
            100% { transform: rotateY(360deg) scale(1); }
        }

        .custom-card h3 {
            color: var(--dark-gray);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }

        .custom-card p {
            color: var(--dark-gray);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .card-price {
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
            color: var(--white);
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 20px;
            font-weight: 700;
            margin: 20px 0;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
            animation: priceFloat 4s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .card-price::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s;
        }

        .custom-card:hover .card-price::before {
            left: 100%;
        }

        @keyframes priceFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            color: var(--white);
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-top: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Efeitos especiais para diferentes cards */
        .custom-card:nth-child(1) {
            border-top: 4px solid var(--orange-primary);
        }

        .custom-card:nth-child(2) {
            border-top: 4px solid var(--orange-secondary);
        }

        .custom-card:nth-child(3) {
            border-top: 4px solid var(--orange-light);
        }

        /* Contador de visitantes */
        .visitor-counter {
            text-align: center;
            margin-top: 40px;
            font-size: 18px;
            color: var(--dark-gray);
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: fadeUp 1s forwards 2s;
        }

        .counter-number {
            font-weight: 700;
            color: var(--orange-primary);
            font-size: 24px;
        }

        /* Animações principais */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsividade */
        @media (max-width: 992px) {
            #custom-solutions {
                padding: 80px 5%;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .custom-cards-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }
            
            .custom-cards-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .custom-card {
                padding: 30px 20px;
            }
            
            .card-icon {
                font-size: 48px;
            }
        }

         /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        /* Modal Container */
        .modal-container {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(50px);
            transition: transform 0.3s ease;
            position: relative;
        }

        .modal-overlay.active .modal-container {
            transform: translateY(0);
        }

        /* Modal Header */
        .modal-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 20px 20px 0 0;
            text-align: center;
            position: relative;
        }

        .modal-header h2 {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .modal-header p {
            opacity: 0.9;
            font-size: 14px;
        }

        .service-name {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            display: inline-block;
            margin-top: 10px;
            font-weight: 500;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Modal Body */
        .modal-body {
            padding: 40px 30px;
        }

        /* Form Styles */
        .form-group2 {
            margin-bottom: 25px;
        }

        .form-control2 {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            font-family: inherit;
        }

        .form-control2:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-control2::placeholder {
            color: #6c757d;
        }

        textarea.form-control2 {
            resize: vertical;
            min-height: 120px;
        }

        /* Submit Button */
        .submit-btn2 {
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn2:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .submit-btn2:active {
            transform: translateY(0);
        }

        .submit-btn2:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        /* Loading Animation */
        .loading {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .loading::after {
            content: '';
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .submit-btn.loading .btn-text {
            opacity: 0;
        }

        .submit-btn.loading .loading {
            display: block;
        }

        /* Success Message */
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
            display: none;
        }

        /* Error Message */
        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #f5c6cb;
            display: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .modal-container {
                width: 95%;
                margin: 20px;
            }
            
            .modal-header, .modal-body {
                padding: 25px 20px;
            }
            
            .modal-header h2 {
                font-size: 20px;
            }
        }
