<!DOCTYPE html>
<html lang="pt-BR">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Conta Suspensa - Nuvem Hospedagem</title>
    <meta name="description" content="Site temporariamente suspenso. Entre em contato com a Nuvem Hospedagem.">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #ffffff;
            color: #0a0a0a;
            overflow-x: hidden;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes float-delayed {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(-5deg); }
        }

        @keyframes float-slow {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Container */
        .container {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            overflow: hidden;
        }

        /* Floating shapes */
        .floating-shape {
            position: absolute;
            background: rgba(45, 201, 212, 0.1);
            border-radius: 20%;
            z-index: 1;
        }

        .shape-1 {
            width: 120px;
            height: 120px;
            top: 2.5rem;
            left: 2.5rem;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape-2 {
            width: 80px;
            height: 80px;
            top: 10rem;
            right: 5rem;
            animation: float-delayed 7s ease-in-out infinite;
            animation-delay: 1s;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            bottom: 5rem;
            left: 5rem;
            border-radius: 50%;
            animation: float-slow 8s ease-in-out infinite;
            animation-delay: 2s;
        }

        .shape-4 {
            width: 90px;
            height: 90px;
            bottom: 10rem;
            right: 8rem;
            animation: float 6s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        /* Main content */
        .content-wrapper {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .left-content {
            animation: fade-in-up 0.8s ease-out;
        }

        /* Alert badge */
        .alert-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .alert-icon {
            width: 1.25rem;
            height: 1.25rem;
        }

        /* Heading */
        h1 {
            font-size: 3rem;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #0a0a0a;
        }

        .highlight {
            color: #2dc9d4;
        }

        /* Description */
        .description {
            font-size: 1.125rem;
            color: #525252;
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        /* Right side illustrations */
        .illustrations {
            display: none;
            position: relative;
            justify-content: center;
            align-items: center;
            height: 500px;
        }

        .server-img {
            position: absolute;
            width: 400px;
            height: auto;
            filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
            animation: float-slow 8s ease-in-out infinite;
        }

        .rocket-img {
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
            animation: float-delayed 7s ease-in-out infinite;
            animation-delay: 1s;
        }

        .glow-circle {
            position: absolute;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(45, 201, 212, 0.1) 0%, rgba(45, 201, 212, 0.05) 50%, transparent 100%);
            filter: blur(60px);
            z-index: -1;
        }

        /* Responsive */
        @media (min-width: 768px) {
            h1 {
                font-size: 3.75rem;
            }

            .description {
                font-size: 1.25rem;
            }
        }

        @media (min-width: 1024px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .illustrations {
                display: flex;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <!-- Floating shapes -->
        <div class="floating-shape shape-1"></div>
        <div class="floating-shape shape-2"></div>
        <div class="floating-shape shape-3"></div>
        <div class="floating-shape shape-4"></div>

        <!-- Main content -->
        <div class="content-wrapper">
            <div class="grid">
                <!-- Left side - Message -->
                <div class="left-content">
                    <!-- Alert Badge -->
                    <div class="alert-badge">
                        <svg class="alert-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
                        </svg>
                        <span>Site Temporariamente Suspenso</span>
                    </div>

                    <!-- Main Heading -->
                    <h1>
                        Oops! <br>
                        <span class="highlight">Algo deu errado</span>
                    </h1>

                    <!-- Description -->
                    <p class="description">
                        Este site está temporariamente suspenso. Por favor, entre em contato 
                        com o responsável pela hospedagem para resolver esta situação.
                    </p>
                </div>

                <!-- Right side - Illustrations -->
                <div class="illustrations">
                    <!-- Server illustration -->
<img src="https://www.nuvemhospedagem.com.br/paginas-servidores-padrao/servidores.png" alt="Servidores" class="server-img">


                    <!-- Rocket illustration -->
<img src="https://www.nuvemhospedagem.com.br/paginas-servidores-padrao/foguete.png" alt="Foguete" class="rocket-img">


                    <!-- Decorative glow circle -->
                    <div class="glow-circle"></div>
                </div>
            </div>
        </div>
    </div>
</body>
</html>
