        :root {
            --azul-claro: #46B3E6;
            --azul-escuro: #1A2B66;
            --amarelo: #FFC107;
            --vermelho: #E53935;
            --verde: #4CAF50;
            --laranja: #FF9800;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f0f8ff;
            color: var(--azul-escuro);
            line-height: 1.6;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
        }

        header {
            background: linear-gradient(135deg, var(--azul-escuro), var(--azul-claro));
            color: white;
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            position: relative;
        }

        .coming-soon-container {
            text-align: center;
            padding: 50px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .logo-container {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            background-color: white;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 3px solid var(--azul-claro);
            margin: 0 auto 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s ease;
        }

        .logo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .logo-container:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }

        .message-box {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 20px auto;
            border-top: 5px solid var(--azul-claro);
            animation: fadeIn 1.5s ease-in-out;
        }

        .coming-soon-title {
            font-size: 2.5rem;
            color: var(--azul-escuro);
            margin-bottom: 10px;
            font-weight: bold;
        }

        .coming-soon-subtitle {
            font-size: 2rem;
            color: var(--azul-escuro);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }

        .coming-soon-subtitle::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--azul-claro);
            border-radius: 2px;
        }

        .coming-soon-message {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }

        .social-links {
            margin: 30px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .social-icon:nth-child(1) {
            background: linear-gradient(45deg, #833AB4, #E1306C);
            box-shadow: 0 4px 10px rgba(225, 48, 108, 0.4);
        }

        .social-icon:nth-child(2) {
            background: linear-gradient(45deg, #3B5998, #2E4DA7);
            box-shadow: 0 4px 10px rgba(59, 89, 152, 0.4);
        }

        .social-icon:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .social-icon i {
            font-size: 1.2rem;
            margin-right: 2px;
        }

        button {
            background: linear-gradient(45deg, var(--azul-escuro), var(--azul-claro));
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(26, 43, 102, 0.4);
        }

        button::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--amarelo);
            transition: all 0.3s ease;
            z-index: -1;
        }

        button:hover {
            transform: translateY(-3px);
            color: var(--azul-escuro);
            box-shadow: 0 8px 20px rgba(26, 43, 102, 0.5);
        }

        button:hover::after {
            height: 100%;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            font-size: 1.1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateY(-2px);
        }

        .contact-icon {
            background-color: var(--azul-claro);
            color: white;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            box-shadow: 0 4px 8px rgba(70, 179, 230, 0.3);
        }

        footer {
            background: var(--azul-escuro);
            color: white;
            text-align: center;
            padding: 20px 0;
        }

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

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
            100% { transform: translateY(0px); }
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        @media (max-width: 768px) {
            .contact-info {
                font-size: 1rem;
            }
            
            .coming-soon-title {
                font-size: 2rem;
            }
            
            .coming-soon-subtitle {
                font-size: 1.5rem;
            }
        }