   * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #02545C, #4a6491);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            color: #fff;
        }
        
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1200px;
            text-align: center;
        }
        
        .logo-container {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px;
            margin-bottom: 40px;
        }
        
        .logo {
            max-width: 320px;
            width: 80%;
            height: auto;
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.02);
        }
        
        /* Conteúdo escondido visualmente, mas lido pelo Google */
        .seo-content {
            position: absolute;
            left: -9999px;
            visibility: hidden;
        }

        @media (max-width: 768px) {
            .logo { width: 95%; }
        }

        @media (max-width: 480px) {
            .logo { width: 100%; }
        }