﻿/* Font Import */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Baloo+2:wght@700&display=swap');
        
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fff9fb;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Logo Styles */
        .logo-container {
            text-align: center;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out;
        }
        
        .logo {
            max-width: 200px;
            height: auto;
            margin: 0 auto;
        }
        
        /* Maintenance Section */
        .maintenance-hero {
            text-align: center;
            padding: 80px 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }
        
        /* Floating Tools Animation */
        .tools-container {
            position: relative;
            height: 120px;
            margin: 0 auto 40px;
            width: 100%;
            max-width: 400px;
        }
        
        .tool-icon {
            position: absolute;
            font-size: 2.5rem;
            color: #ff6b8b;
            animation-duration: 3s;
            animation-iteration-count: infinite;
            animation-timing-function: ease-in-out;
        }
        
        .tool-1 {
            left: 20%;
            top: 0;
            animation-name: floatTool1;
        }
        
        .tool-2 {
            right: 20%;
            top: 40px;
            animation-name: floatTool2;
            animation-delay: 0.5s;
        }
        
        .tool-3 {
            left: 30%;
            bottom: 0;
            animation-name: floatTool3;
            animation-delay: 1s;
        }
        
        @keyframes floatTool1 {
            0%, 100% { transform: translateY(0) rotate(-5deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        @keyframes floatTool2 {
            0%, 100% { transform: translateY(-10px) rotate(5deg); }
            50% { transform: translateY(10px) rotate(-5deg); }
        }
        
        @keyframes floatTool3 {
            0%, 100% { transform: translateY(5px) rotate(3deg); }
            50% { transform: translateY(-15px) rotate(-3deg); }
        }
        
        h1 {
            font-family: 'Baloo 2', cursive;
            font-size: 2.5rem;
            color: #d23369;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }
        
        p.maintenance-text {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: #555;
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        /* Social Media Section */
        .social-media-section {
            margin: 40px 0;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .social-title {
            font-size: 1.3rem;
            color: #d23369;
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: white;
            color: #d23369;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(210, 51, 105, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(210, 51, 105, 0.2);
        }
        
        .social-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transform: scale(0);
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .social-icon:hover::after {
            transform: scale(1.5);
            opacity: 0;
        }
        
        /* Platform-specific colors on hover */
        .social-icon.facebook:hover { background-color: #3b5998; color: white; }
        .social-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
        .social-icon.twitter:hover { background-color: #1DA1F2; color: white; }
        .social-icon.tiktok:hover { background-color: #000000; color: white; }
        .social-icon.youtube:hover { background-color: #FF0000; color: white; }
        .social-icon.linkedin:hover { background-color: #0077B5; color: white; }
        
        /* Animated Progress Bar */
        .progress-container {
            width: 100%;
            max-width: 500px;
            background-color: #f0f0f0;
            border-radius: 20px;
            margin: 0 auto 40px;
            height: 20px;
            overflow: hidden;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .progress-bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #ff9a9e, #fad0c4);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                            rgba(255,255,255,0) 0%, 
                            rgba(255,255,255,0.8) 50%, 
                            rgba(255,255,255,0) 100%);
            animation: progressShine 3s infinite;
        }
        
        @keyframes progressShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* Percentage Counter */
        .progress-info {
            display: flex;
            justify-content: space-between;
            max-width: 500px;
            margin: 0 auto 10px;
            font-weight: 600;
            color: #d23369;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .percentage {
            font-size: 1.1rem;
        }
        
        /* Contact Box with Pulse Animation */
        .contact-box {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(210, 51, 105, 0.1);
            animation: fadeInUp 1s ease-out 0.9s both, pulse 2s infinite 2s;
            transform-origin: center;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        .contact-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #d23369;
        }
        
        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #25D366;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            animation: fadeInUp 1s ease-out 1.2s both;
        }
        
        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4);
        }
        
        .whatsapp-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Footer with Wave Animation */
        footer {
            text-align: center;
            padding: 30px 20px 20px;
            background-color: #f8e1e7;
            color: #d23369;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: -15px;
            left: 0;
            right: 0;
            height: 30px;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23fff9fb'/%3E%3C/svg%3E") no-repeat center top;
            background-size: cover;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            p.maintenance-text {
                font-size: 1rem;
            }
            
            .tools-container {
                height: 100px;
            }
            
            .tool-icon {
                font-size: 2rem;
            }
            
            .contact-box {
                padding: 20px;
            }
            
            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.7rem;
            }
            
            .maintenance-hero {
                padding: 60px 0;
            }
            
            .progress-container {
                height: 15px;
            }
            
            .tools-container {
                height: 80px;
                margin-bottom: 30px;
            }
            
            .tool-icon {
                font-size: 1.8rem;
            }
            
            .social-icons {
                gap: 15px;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
        }

